Open
Description
Hi to everyone, test "string-literals-inline" field bar:
class MyObject {
...
bar: "ok" | "fail" | "abort" | string;
}
maps to schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bar": {
"type": "string"
}, ...
but should map to schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bar": {
"anyOf": [{
"custom": "string"
},
{
"enum": [
"ok",
"fail",
"abort"
],
"default": "string"
}
]
},...
Cheers,
Giuseppe