Auth0 · Schema

FormFieldCardsConfigOption

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
value string
label string
image_url string
View JSON Schema on GitHub

JSON Schema

auth0-formfieldcardsconfigoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldCardsConfigOption",
  "title": "FormFieldCardsConfigOption",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "value",
    "label",
    "image_url"
  ],
  "properties": {
    "value": {
      "type": "string",
      "minLength": 1
    },
    "label": {
      "type": "string",
      "minLength": 1
    },
    "image_url": {
      "type": "string",
      "format": "forms-url-https"
    }
  }
}