{ "$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" ] }