{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/prisma-cloud-mssp-api-operation-response-structure.json", "name": "OperationResponse", "description": "OperationResponse schema from Prisma Cloud: Managed Security Service Provider (MSSP)", "type": "object", "properties": { "requestId": { "type": "uuid" }, "msspId": { "type": "uuid" }, "operationType": { "type": "string", "enum": [ "MESSAGE_FAN_OUT", "ORCHESTRATOR_REQUEST" ] }, "operationName": { "type": "string", "enum": [ "PROVISION_TENANT", "UPDATE_TENANT", "DELETE_TENANT", "OFFBOARD_TENANT", "REPLICATE_ACTION", "CREATE_USER", "UPDATE_USER", "DELETE_USER", "POLICY_MAP", "POLICY_UNMAP", "SYNC_POLICIES" ] }, "operationDescription": { "type": "string" }, "status": { "type": "string", "enum": [ "IN_PROGRESS", "SUCCESS", "FAILURE" ] }, "tenantChanges": { "type": "array", "items": { "type": "object", "properties": { "tenantChangeId": { "type": "uuid" }, "externalTenantId": { "type": "string" }, "tenantPrismaId": { "type": "string" }, "status": { "type": "string", "enum": [ "IN_PROGRESS", "SUCCESS", "FAILURE" ] }, "updatedAt": { "type": "int64" } } } }, "startedBy": { "type": "string" }, "startedAt": { "type": "int64" }, "updatedAt": { "type": "int64" }, "isRetryable": { "type": "boolean" }, "retryOf": { "type": "uuid" }, "retriedBy": { "type": "uuid" } } }