Skip to main content
Documentation for the Additional Page Settings component.

Properties

  • meta_title (string) - maxLength: 100
  • meta_description (string) - maxLength: 200
  • feature_image (object)
    • url (string) - format: uri
  • favicon (object)
    • url (string) - format: uri

Used in Categories

This component is used in the following categories:

Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Additional Page Settings",
  "type": "object",
  "properties": {
    "meta_title": {
      "type": "string",
      "maxLength": 100
    },
    "meta_description": {
      "type": "string",
      "maxLength": 200
    },
    "feature_image": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string",
          "format": "uri"
        }
      },
      "additionalProperties": false
    },
    "favicon": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string",
          "format": "uri"
        }
      },
      "additionalProperties": false
    }
  }
}