Auth0 · Schema

IntegrationRelease

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string The id of the associated IntegrationRelease
trigger object
semver object
required_secrets array required_secrets declares all the necessary secrets for an integration to work.
required_configuration array required_configuration declares all the necessary configuration fields for an integration to work.
View JSON Schema on GitHub

JSON Schema

auth0-integrationrelease-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}