Auth0 · Schema

UpdateFlowResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
name string
actions array
created_at string
updated_at string
executed_at string
View JSON Schema on GitHub

JSON Schema

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