typescript-json-schema
typescript-json-schema copied to clipboard
Parameter `--title` adds `title` to `$ref` properties
When adding the --title parameter, I get a schema with the following content:
{
"definitions": {
"SomePropertyType": { ... }
},
"properties": {
"someProperty": {
"$ref": "#/definitions/SomePropertyType",
"title": "someProperty"
}
}
}