{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Task", "title": "Task", "required": [ "attributes", "id" ], "type": "object", "properties": { "id": { "type": "string", "description": "ID of the task.", "example": "93912f11-6017-404b-bf14-5331890b1797" }, "attributes": { "$ref": "#/components/schemas/TaskAttributes" } }, "description": "List of tasks retrieved according to query parameters." }