Merge · Schema
AccountDetailsAndActionsIntegration
IntegrationsPlatformUnified APIAgent HandlerLLM Gateway
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| categories | array | |
| image | string | |
| square_image | string | |
| color | string | |
| slug | string | |
| passthrough_available | boolean | |
| available_model_operations | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountDetailsAndActionsIntegration",
"title": "AccountDetailsAndActionsIntegration",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"categories": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CategoriesEnum"
}
},
"image": {
"type": "string"
},
"square_image": {
"type": "string"
},
"color": {
"type": "string"
},
"slug": {
"type": "string"
},
"passthrough_available": {
"type": "boolean"
},
"available_model_operations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ModelOperation"
}
}
},
"required": [
"name",
"categories",
"color",
"slug",
"passthrough_available"
]
}