Auth0 · Schema

FormBlockImageConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
src string
position object
height number
View JSON Schema on GitHub

JSON Schema

auth0-formblockimageconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormBlockImageConfig",
  "title": "FormBlockImageConfig",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "src"
  ],
  "properties": {
    "src": {
      "type": "string",
      "maxLength": 500
    },
    "position": {
      "$ref": "#/components/schemas/FormBlockImageConfigPositionEnum"
    },
    "height": {
      "type": "number",
      "minimum": 1,
      "maximum": 500
    }
  }
}