Auth0 · Schema

FlowsVaultConnectionHttpOauthClientCredentialsSetup

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
type object
client_id string
client_secret string
token_endpoint string
audience string
resource string
scope string
View JSON Schema on GitHub

JSON Schema

auth0-flowsvaultconnectionhttpoauthclientcredentialssetup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowsVaultConnectionHttpOauthClientCredentialsSetup",
  "title": "FlowsVaultConnectionHttpOauthClientCredentialsSetup",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "client_id",
    "client_secret",
    "token_endpoint"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum"
    },
    "client_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "client_secret": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "token_endpoint": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500,
      "format": "forms-url-https"
    },
    "audience": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "resource": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "scope": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1024
    }
  }
}