{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Task", "title": "Task", "type": "object", "properties": { "id": { "type": "integer", "format": "int64" }, "name": { "type": "string" }, "related_resource": { "type": "object", "properties": { "id": { "type": "integer" }, "type": { "type": "string" } } }, "assignee_id": { "type": "integer", "nullable": true }, "due_date": { "type": "integer", "nullable": true }, "reminder_date": { "type": "integer", "nullable": true }, "completed_date": { "type": "integer", "nullable": true }, "priority": { "type": "string", "enum": [ "None", "High" ] }, "status": { "type": "string", "enum": [ "Open", "Completed" ] }, "details": { "type": "string", "nullable": true }, "tags": { "type": "array", "items": { "type": "string" } }, "custom_fields": { "type": "array", "items": { "$ref": "#/components/schemas/CustomFieldValue" } } } }