Auth0 · Schema

FlowsVaultConnectionHttpBasicAuthSetup

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
type object
username string
password string
View JSON Schema on GitHub

JSON Schema

auth0-flowsvaultconnectionhttpbasicauthsetup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowsVaultConnectionHttpBasicAuthSetup",
  "title": "FlowsVaultConnectionHttpBasicAuthSetup",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "username"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/FlowsVaultConnectionSetupTypeBasicAuthEnum"
    },
    "username": {
      "type": "string",
      "minLength": 1,
      "maxLength": 155
    },
    "password": {
      "type": "string",
      "minLength": 1,
      "maxLength": 155
    }
  }
}