Auth0 · Schema

FlowsVaultConnectionHttpApiKeySetup

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
type object
name string
value string
in object
View JSON Schema on GitHub

JSON Schema

auth0-flowsvaultconnectionhttpapikeysetup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowsVaultConnectionHttpApiKeySetup",
  "title": "FlowsVaultConnectionHttpApiKeySetup",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "name",
    "value",
    "in"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/FlowsVaultConnectionSetupTypeApiKeyEnum"
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 55
    },
    "value": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "in": {
      "$ref": "#/components/schemas/FlowsVaultConnectionHttpApiKeySetupInEnum"
    }
  }
}