Auth0 · Schema

FormFieldFileConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
multiple boolean
storage object
categories array
extensions array
maxSize integer
maxFiles integer
View JSON Schema on GitHub

JSON Schema

auth0-formfieldfileconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldFileConfig",
  "title": "FormFieldFileConfig",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "multiple": {
      "type": "boolean"
    },
    "storage": {
      "$ref": "#/components/schemas/FormFieldFileConfigStorage"
    },
    "categories": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FormFieldFileConfigCategoryEnum"
      }
    },
    "extensions": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 50,
        "format": "forms-file-extension"
      }
    },
    "maxSize": {
      "type": "integer",
      "minimum": 1024
    },
    "maxFiles": {
      "type": "integer",
      "minimum": 1
    }
  }
}