{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RelayTargetAssistant", "title": "RelayTargetAssistant", "type": "object", "properties": { "type": { "type": "string", "enum": [ "assistant" ], "description": "The type of relay target" }, "assistantId": { "type": "string", "description": "The unique identifier of the assistant" }, "assistantName": { "type": "string", "description": "The name of the assistant" } }, "required": [ "type" ] }