quicktype
quicktype copied to clipboard
`"unevaluatedProperties": false` not working
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"string": {
"type": "string"
}
},
"unevaluatedProperties": false
}
results in
export interface Object {
string?: string;
[property: string]: any;
}
while
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"string": {
"type": "string"
}
},
"additionalProperties": false
}
results correctly in
export interface Object {
string?: string;
}