Auth0 · Schema

CreateFlowsVaultConnectionHttpBearer

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string Flows Vault Connection name.
app_id object
setup object
View JSON Schema on GitHub

JSON Schema

auth0-createflowsvaultconnectionhttpbearer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateFlowsVaultConnectionHttpBearer",
  "title": "CreateFlowsVaultConnectionHttpBearer",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name",
    "app_id",
    "setup"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Flows Vault Connection name.",
      "minLength": 1,
      "maxLength": 150
    },
    "app_id": {
      "$ref": "#/components/schemas/FlowsVaultConnectionAppIdHttpEnum"
    },
    "setup": {
      "$ref": "#/components/schemas/FlowsVaultConnectioSetupHttpBearer"
    }
  }
}