Auth0 · Schema

CreateFlowRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string
actions array
View JSON Schema on GitHub

JSON Schema

auth0-createflowrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateFlowRequestContent",
  "title": "CreateFlowRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name"
  ],
  "x-release-lifecycle": "GA",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 150
    },
    "actions": {
      "type": "array",
      "minItems": 0,
      "items": {
        "$ref": "#/components/schemas/FlowAction"
      }
    }
  }
}