{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-connector-definition-response-structure.json", "name": "ConnectorDefinitionResponse", "description": "Provides details of a single connector definition.", "type": "object", "properties": { "id": { "format": "UUID", "type": "string" }, "name": { "type": "string" }, "connectorDefinitionType": { "$ref": "#/components/schemas/ConnectorType" }, "version": { "type": "string" } }, "required": [ "id", "connectorDefinitionType", "name", "version" ] }