Closed
Description
If change "orientation" field to "required", no changes detected by the tool. Here is new and old api:
#Old API
"Chart": {
"allOf": [
{
"$ref": "#/schemas/Visualization"
},
{
"properties": {
"orientation": {
"enum": [
"VERTICAL",
"HORIZONTAL"
],
"type": "string"
}
},
"type": "object"
}
],
"type": "object"
},
#New API
"Chart": {
"allOf": [
{
"$ref": "#/schemas/Visualization"
},
{
"properties": {
"orientation": {
"enum": [
"VERTICAL",
"HORIZONTAL"
],
"type": "string"
}
},
"type": "object"
}
],
"required": [
"orientation"
],
"type": "object"
},