{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateIntegrationResponse", "title": "CreateIntegrationResponse", "type": "object", "properties": { "data": { "type": "object", "properties": { "id": { "type": "string", "description": "ID of the created integration." }, "name": { "type": "string", "description": "Name of the integration." }, "enabled": { "type": "boolean", "description": "Whether the integration is enabled." }, "type": { "type": "string", "description": "Integration type." }, "apiKey": { "type": "string", "description": "API key for the integration." } } }, "took": { "type": "number", "description": "Time taken in seconds." }, "requestId": { "type": "string", "description": "Unique identifier for the request." } } }