typescript-json-schema
Version:
typescript-json-schema generates JSON Schema files from your Typescript sources
23 lines • 455 B
JSON
{
"type": "object",
"properties": {
"direction": {
"$ref": "#/definitions/Cardinal"
}
},
"required": [
"direction"
],
"definitions": {
"Cardinal": {
"enum": [
"east",
"north",
"south",
"west"
],
"type": "string"
}
},
"$schema": "http://json-schema.org/draft-04/schema#"
}