@adobe/jsonschema2md
Version:
Validate and document complex JSON Schemas the easy way.
20 lines (19 loc) • 444 B
JSON
{
"type": "object",
"title": "Properties",
"description": "Properties of Button.",
"additionalProperties": false,
"properties": {
"value": {
"type": "string",
"title": "Value",
"description": "The value of the Button."
},
"type": {
"type": "string",
"enum": ["button", "submit", "reset"],
"title": "Type",
"description": "The type of the Button (not used for anchors)."
}
}
}