typescript-json-schema
Version:
typescript-json-schema generates JSON Schema files from your Typescript sources
21 lines • 515 B
JSON
{
"$ref": "#/definitions/MyObject",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"MyObject": {
"properties": {
"alias": {
"$ref": "#/definitions/MyObject"
},
"self": {
"$ref": "#/definitions/MyObject"
}
},
"required": [
"alias",
"self"
],
"type": "object"
}
}
}