Unified.to · Schema
Integration
Informational object for supported integrations.
IntegrationsUnified API
Properties
| Name | Type | Description |
|---|---|---|
| type | string | |
| created_at | string | |
| updated_at | string | |
| name | string | |
| is_active | boolean | |
| categories | object | |
| api_docs_url | string | |
| logo_url | string | |
| in_progress | boolean | |
| is_hidden | boolean | |
| color | string | |
| text_color | string | |
| fa_icon | string | |
| token_names | object | |
| token_instructions | object | |
| web_url | string | |
| rate_limit_description | string | |
| beta | boolean | |
| support | object | |
| tested_at | string | |
| sandbox | object | |
| partnership | object | |
| saml | object | |
| description | string | |
| api | object | |
| featured | boolean | |
| popularity | number | |
| active_healthy_connections | number |
JSON Schema
{
"$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"
]
}