Auth0 · Schema

CreateExportUsersFields

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string Name of the field in the profile.
export_as string Title of the column in the exported CSV.
View JSON Schema on GitHub

JSON Schema

auth0-createexportusersfields-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateExportUsersFields",
  "title": "CreateExportUsersFields",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the field in the profile.",
      "maxLength": 100
    },
    "export_as": {
      "type": "string",
      "description": "Title of the column in the exported CSV.",
      "maxLength": 100
    }
  }
}