{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListIntegrationsResponse", "title": "ListIntegrationsResponse", "type": "object", "properties": { "integrations": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "updateTime": { "type": "string", "format": "date-time" }, "active": { "type": "boolean" } } } }, "nextPageToken": { "type": "string" } } }