{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "IntegrationInstance", "description": "A configured instance of an integration in Cortex XSOAR.", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/cortex-xsoar-api-integration-instance-schema.json", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string", "description": "Unique name of this instance." }, "brand": { "type": "string", "description": "Integration brand name." }, "enabled": { "type": "string", "enum": [ "true", "false" ] }, "isIntegrationScript": { "type": "boolean" }, "incomingMapperId": { "type": "string" }, "mappingId": { "type": "string" }, "configuration": { "type": "object", "description": "Integration configuration parameters." } } }