generator-nitro
Version:
Yeoman generator for the nitro frontend framework
21 lines (20 loc) • 406 B
JSON
{
"$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"]
}