Auth0 · Schema

FlowsVaultConnectioSetupOauthApp

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
type object
client_id string
client_secret string
domain string
audience string
View JSON Schema on GitHub

JSON Schema

auth0-flowsvaultconnectiosetupoauthapp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowsVaultConnectioSetupOauthApp",
  "title": "FlowsVaultConnectioSetupOauthApp",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "client_id",
    "client_secret",
    "domain"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/FlowsVaultConnectioSetupTypeOauthAppEnum"
    },
    "client_id": {
      "type": "string"
    },
    "client_secret": {
      "type": "string"
    },
    "domain": {
      "type": "string",
      "format": "hostname-rfc2181"
    },
    "audience": {
      "type": "string",
      "minLength": 1,
      "format": "forms-url-https"
    }
  }
}