@adobe/jsonschema2md
Version:
Validate and document complex JSON Schemas the easy way.
25 lines (24 loc) • 482 B
JSON
{
"type": "object",
"title": "Properties",
"description": "Properties of Datepicker.",
"additionalProperties": false,
"properties": {
"format": {
"type": "string",
"title": "Format",
"description": "Formatting used to display the date."
},
"value": {
"type": "string",
"title": "Value",
"description": "Date to be displayed."
}
},
"examples": [
{
"format": "Coolness",
"value": "Maximum"
}
]
}