{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ScanIntegration", "description": "ScanIntegration schema from Palo Alto Networks Prisma Cloud Code Security API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-cloud-code-security-api-scan-integration-schema.json", "type": "object", "properties": { "id": { "type": "string", "description": "Unique integration identifier." }, "name": { "type": "string", "description": "Integration name." }, "type": { "type": "string", "description": "CI/CD platform type.", "enum": [ "jenkins", "github_actions", "gitlab_ci", "circleci", "azure_pipelines", "bitbucket_pipelines", "other" ] }, "repositoryId": { "type": "string", "description": "Repository this integration is associated with." }, "enabled": { "type": "boolean", "description": "Whether the integration is active." }, "createdAt": { "type": "string", "format": "date-time" } } }