{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateTaskResponse", "title": "CreateTaskResponse", "description": "Response body after successfully requesting a task creation.", "type": "object", "required": [ "meta", "data" ], "properties": { "meta": { "type": "object", "description": "Response metadata.", "required": [ "orgId" ], "properties": { "orgId": { "type": "string", "format": "uuid", "description": "UUID of the organization, inferred from the authorization token.", "example": "658d1102-8c11-4850-a809-d7a99cc1c22f" } } }, "data": { "type": "object", "description": "Response data.", "required": [ "id" ], "properties": { "id": { "type": "string", "format": "uuid", "description": "UUID of the created task. Use this ID to monitor and manage the task lifecycle via subsequent API calls.", "example": "768d1102-8c11-4850-a809-d7a99cc1c22e" } } } } }