Raw schema
{
"type": "object",
"properties": {
"task_type": {
"type": "string",
"enum": [
"real_world_verification",
"product_or_app_testing",
"human_judgment_and_feedback",
"data_collection",
"local_physical_task",
"ai_output_review",
"prompt_and_workflow_testing",
"simulation_and_automation_testing",
"accessibility_and_usability_check",
"custom_human_in_the_loop"
],
"description": "Service category — see get_human_services for descriptions"
},
"description": {
"type": "string",
"minLength": 10,
"maxLength": 5000,
"description": "What to do, where, and what success looks like. Specific, self-contained tasks are accepted faster."
},
"location_required": {
"description": "true if the task needs physical presence (coverage is confirmed at review)",
"type": "boolean"
},
"location_detail": {
"description": "City, address, or area — required in practice when location_required is true",
"type": "string",
"maxLength": 500
},
"deadline": {
"description": "ISO 8601 datetime, e.g. 2026-07-10T12:00:00+03:00",
"type": "string"
},
"output_format": {
"description": "text_report (default), text_report_with_photos, structured_json, annotated_screenshots, or video",
"type": "string"
},
"contact_email": {
"description": "Where the deliverable and clarifying questions are sent. Strongly recommended.",
"type": "string"
},
"requester": {
"description": "Your agent or system identifier, e.g. my-agent/1.0",
"type": "string",
"maxLength": 200
}
},
"required": [
"task_type",
"description"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}