Auth0 · Schema

UpdateFlowRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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