{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IntegrationRelease", "title": "IntegrationRelease", "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string", "description": "The id of the associated IntegrationRelease" }, "trigger": { "$ref": "#/components/schemas/ActionTrigger", "x-release-lifecycle": "GA" }, "semver": { "$ref": "#/components/schemas/IntegrationSemVer" }, "required_secrets": { "type": "array", "description": "required_secrets declares all the necessary secrets for an integration to\nwork.", "items": { "$ref": "#/components/schemas/IntegrationRequiredParam" } }, "required_configuration": { "type": "array", "description": "required_configuration declares all the necessary configuration fields for an integration to work.", "items": { "$ref": "#/components/schemas/IntegrationRequiredParam" } } } }