typescript-json-schema
Version:
typescript-json-schema generates JSON Schema files from your Typescript sources
30 lines (29 loc) • 552 B
JSON
{
"type": "object",
"properties": {
"foo": {
"$ref": "#/definitions/Enum"
}
},
"required": [
"foo"
],
"definitions": {
"Enum": {
"type": [
"number",
"boolean",
"string",
"null"
],
"enum": [
0,
1,
null,
"str",
true
]
}
},
"$schema": "http://json-schema.org/draft-04/schema#"
}