{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-integration-schema.json", "title": "Integration", "description": "Informational object for supported integrations.", "type": "object", "properties": { "type": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" }, "name": { "type": "string" }, "is_active": { "type": "boolean" }, "categories": { "$ref": "#/components/schemas/property_Integration_categories" }, "api_docs_url": { "type": "string" }, "logo_url": { "type": "string" }, "in_progress": { "type": "boolean" }, "is_hidden": { "type": "boolean" }, "color": { "type": "string" }, "text_color": { "type": "string" }, "fa_icon": { "type": "string" }, "token_names": { "$ref": "#/components/schemas/property_Integration_token_names" }, "token_instructions": { "$ref": "#/components/schemas/property_Integration_token_instructions" }, "web_url": { "type": "string" }, "rate_limit_description": { "type": "string" }, "beta": { "type": "boolean" }, "support": { "$ref": "#/components/schemas/property_Integration_support" }, "tested_at": { "type": "string", "format": "date-time" }, "sandbox": { "additionalProperties": true, "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } } ] }, "partnership": { "additionalProperties": true, "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } } ] }, "saml": { "additionalProperties": true, "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } } ] }, "description": { "type": "string" }, "api": { "additionalProperties": true, "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" } ] } } ] }, "featured": { "type": "boolean" }, "popularity": { "type": "number" }, "active_healthy_connections": { "type": "number" } }, "required": [ "type", "name", "categories" ] }