Skip to main content
Validate page title component schema

Properties

  • title (string) (required)
  • cardStyle (object - style component reference)

Used in Categories

This component is used in the following categories:

Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {},
  "title": "Page title component",
  "description": "Validate page title component schema",
  "type": "object",
  "required": [
    "title"
  ],
  "additionalProperties": false,
  "properties": {
    "title": {
      "type": "string"
    },
    "cardStyle": {
      "$ref": "style/card.json"
    }
  }
}