{
  "$id": "http://gov.uk/schema/v1.0.0/section",
  "_name": "section",
  "title": "Section",
  "description": "Group related content items as sections within a page",
  "type": "object",
  "category": [
    "grouping"
  ],
  "properties": {
    "_type": {
      "const": "section"
    },
    "heading": {
      "title": "Heading",
      "description": "Appears at the top of the section as the correct level H element",
      "type": "string"
    },
    "lede": {
      "title": "First paragraph",
      "description": "Introductory paragraph for the section",
      "type": "string"
    },
    "content": {
      "title": "Content",
      "description": "Display ‘flat’ content, such as text",
      "type": "string",
      "multiline": true
    }
  },
  "allOf": [
    {
      "$ref": "http://gov.uk/schema/v1.0.0/definition/component"
    },
    {
      "$ref": "http://gov.uk/schema/v1.0.0/definition/components"
    }
  ]
}
