Skip to main content
Section heading (h1-h4).
{
  "type": "object",
  "properties": {
    "type": {
      "const": "Heading",
      "default": "Heading",
      "type": "string"
    },
    "cssClass": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "CSS/Tailwind classes for styling"
    },
    "content": {
      "description": "Heading text",
      "type": "string"
    },
    "level": {
      "default": 1,
      "description": "Heading level (1=h1, 4=h4)",
      "enum": [
        1,
        2,
        3,
        4
      ],
      "type": "integer"
    }
  },
  "required": [
    "type",
    "content"
  ]
}