typescript-json-schema
Version:
typescript-json-schema generates JSON Schema files from your Typescript sources
26 lines • 484 B
JSON
{
"type": "object",
"properties": {
"foo": {
"$ref": "#/definitions/result"
},
"bar": {
"type": "string"
}
},
"required": [
"foo",
"bar"
],
"definitions": {
"result": {
"type": "string",
"enum": [
"abort",
"fail",
"ok"
]
}
},
"$schema": "http://json-schema.org/draft-04/schema#"
}