{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JobStartResponse", "title": "JobStartResponse", "type": "object", "description": "Response returned when a job is successfully started.", "properties": { "taskId": { "type": "string", "description": "The ID of the task that was started.", "example": "500123" }, "taskType": { "type": "string", "description": "The type of the task.", "example": "example_value" }, "runId": { "type": "integer", "format": "int64", "description": "The unique run ID for this job execution. Use this ID to track job status.", "example": "500123" } } }