{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"$id": "/atom/heading",
	"title": "heading",
	"description": "A heading atom",
	"type": "object",
	"properties": {
		"titleTag": {
			"description": "Heading level",
			"enum": ["h1", "h2", "h3"]
		},
		"titleText": {
			"type": "string"
		},
		"subTitle": {
			"type": "string"
		}
	},
	"required": ["titleTag", "titleText"]
}
