generator-nitro
Version:
Yeoman generator for the nitro frontend framework
17 lines (16 loc) • 408 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/atom/box",
"title": "box",
"description": "A box atom",
"type": "object",
"properties": {
"modifier": {
"description": "A pattern modifier",
"enum": ["", "dark"]
},
"children": { "type": "string" },
"content": { "type": "string" }
},
"anyOf": [{ "required": ["children"] }, { "required": ["content"] }]
}