@adobe/jsonschema2md
Version:
Validate and document complex JSON Schemas the easy way.
29 lines • 501 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "file://foo/mod.json",
"title": "MI",
"description": "Specification for input JSON",
"type": "object",
"properties": {
"columns": {
"title": "Columns",
"meta:enum": {
"[\"P\",\"M\"]": "Post Meridiem?"
},
"enum": [
[
"P",
"M"
],
[
"M",
"P"
]
],
"type": "array"
}
},
"required": [
"columns"
]
}