Example 1: Sexual Harassment Complaint Processing
Input:
{
"request_type": "complaint_intake",
"submission_date": "2024-04-18T14:30:00Z",
"complainant": {
"id": "STUDENT-12345",
"type": "student",
"demographic": {
"age": 20,
"gender": "female",
"academic_level": "undergraduate"
},
"contact_preferences": {
"method": "secure_portal",
"language": "english"
}
},
"complaint_details": {
"incident_type": "sexual_harassment",
"alleged_respondent": {
"id": "FACULTY-789",
"type": "faculty",
"department": "engineering"
},
"incident_date": "2024-04-10",
"incident_location": "campus_laboratory",
"description": "Inappropriate comments and unwanted physical contact during lab sessions",
"witnesses": ["STUDENT-67890"],
"prior_incidents": true,
"immediate_safety_concerns": false
},
"requested_remedies": ["stop_behavior", "formal_investigation", "no_retaliation"]
}
Output:
{
"case_id": "TIX-2024-0418-001",
"intake_assessment": {
"jurisdiction": "APPLICABLE",
"title_ix_coverage": true,
"initial_classification": "formal_complaint_eligible",
"severity_level": "MODERATE",
"urgent_response_required": false
},
"immediate_actions": {
"interim_measures": [
{
"measure": "no_contact_directive",
"parties": ["complainant", "respondent"],
"scope": "academic_interactions"
},
{
"measure": "alternative_lab_arrangement",
"description": "Schedule complainant in different lab section",
"effective_date": "2024-04-19"
}
],
"notifications_sent": [
{
"recipient": "title_ix_coordinator",
"timestamp": "2024-04-18T14:35:00Z"
},
{
"recipient": "department_head_engineering",
"timestamp": "2024-04-18T14:36:00Z"
}
]
},
"investigation_plan": {
"investigator_assigned": "INVESTIGATOR-001",
"timeline": {
"initial_interviews": "within_7_days",
"evidence_collection": "within_14_days",
"preliminary_report": "within_45_days",
"final_determination": "within_60_days"
},
"interview_schedule": [
{
"party": "complainant",
"scheduled_date": "2024-04-22",
"support_person_allowed": true
},
{
"party": "respondent",
"scheduled_date": "2024-04-24",
"advisor_allowed": true
}
]
},
"compliance_tracking": {
"regulatory_deadlines": [
"Initial response within 24 hours - COMPLETED",
"Formal investigation within 10 days - SCHEDULED",
"Resolution within 60-90 days - PENDING"
],
"documentation_requirements": [
"Signed complaint form",
"Interim measures documentation",
"Investigation notes and evidence log"
]
},
"support_resources": {
"complainant_resources": [
"Counseling and psychological services",
"Academic accommodations coordinator",
"Legal aid clinic referral"
],
"respondent_resources": [
"Employee assistance program",
"Faculty ombudsman",
"Legal consultation information"
]
}
}
Example 2: Athletic Program Equity Analysis
Input:
{
"request_type": "athletics_equity_assessment",
"assessment_period": "2023-2024_academic_year",
"institution": {
"name": "State University",
"division": "NCAA_Division_I",
"total_enrollment": 25000,
"undergraduate_enrollment": 20000
},
"student_demographics": {
"total_undergraduate": 20000,
"male": 10200,
"female": 9800,
"percentage_female": 49.0
},
"athletic_programs": {
"mens_sports": [
{"sport": "football", "roster_spots": 85, "scholarships": 22.5, "budget": 850000},
{"sport": "basketball", "roster_spots": 15, "scholarships": 13, "budget": 425000},
{"sport": "baseball", "roster_spots": 35, "scholarships": 11.7, "budget": 185000},
{"sport": "track_field", "roster_spots": 45, "scholarships": 12.6, "budget": 165000}
],
"womens_sports": [
{"sport": "basketball", "roster_spots": 15, "scholarships": 15, "budget": 380000},
{"sport": "volleyball", "roster_spots": 18, "scholarships": 12, "budget": 145000},
{"sport": "soccer", "roster_spots": 25, "scholarships": 14, "budget": 125000},
{"sport": "track_field", "roster_spots": 40, "scholarships": 18, "budget": 155000}
]
}
}
Output:
{
"assessment_id": "ATHLETICS-2024-001",
"participation_analysis": {
"total_athletes": {
"male": 180,
"female": 98,
"total": 278
},
"participation_percentages": {
"male": 64.7,
"female": 35.3
},
"proportionality_test": {
"student_body_female_percentage": 49.0,
"athlete_female_percentage": 35.3,
"gap": 13.7,
"status": "SUBSTANTIAL_DISPROPORTION",
"threshold_exceeded": true
}
},
"financial_equity_analysis": {
"total_budget": {
"mens_programs": 1625000,
"womens_programs": 805000,
"total": 2430000
},
"per_athlete_spending": {
"male_athlete": 9028,
"female_athlete": 8214,
"disparity": 814,
"disparity_percentage": 9.0
},
"scholarship_distribution": {
"mens_scholarships": 59.8,
"womens_scholarships": 59.0,
"status": "RELATIVELY_PROPORTIONAL"
}
},
"compliance_status": {
"three_prong_test": {
"prong_1_proportionality": "FAILED",
"prong_2_history_expansion": "UNDER_REVIEW",
"prong_3_interests_abilities": "REQUIRES_ASSESSMENT"
},
"overall_compliance": "NON_COMPLIANT",
"risk_level": "HIGH"
},
"recommended_actions": [
{
"priority": "HIGH",
"action": "add_womens_sport",
"description": "Add women's tennis program (20 roster spots, 8 scholarships)",
"timeline": "Next academic year",
"budget_impact": 180000
},
{
"priority": "MEDIUM",
"action": "increase_existing_roster",
"description": "Expand women's soccer roster by 10 spots",
"timeline": "Current year",
"budget_impact": 35000
},
{
"priority": "LOW",
"action": "eliminate_mens_sport",
"description": "Consider reducing men's baseball roster by 10 spots",
"timeline": "Future consideration",
"budget_savings": 25000
}
],
"monitoring_requirements": {
"next_assessment": "2024-09-01",
"quarterly_reviews": true,
"compliance_reporting": "Annual to OCR",
"stakeholder_communication": "Required within 30 days"
}
}