{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TaskOwner", "title": "TaskOwner", "required": [ "id", "name" ], "type": "object", "properties": { "id": { "type": "string", "description": "ID of the agent last assigned to this task.", "example": "e0c7611b-8035-443a-b7a8-dca9f8b8289b" }, "name": { "type": "string", "description": "Name of the agent last assigned to this task.", "example": "Joseph Lambert" } }, "description": "The owner of the task." }