Skip to content

Commit c8f4532

Browse files
committed
add droppedAnnotations to output validation schema
1 parent 8ea42da commit c8f4532

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

output/schema.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
"type": "object",
3232
"additionalProperties": true
3333
},
34+
"droppedAnnotations": {
35+
"type": "object",
36+
"additionalProperties": true
37+
},
3438
"errors": {
3539
"type": "object",
3640
"additionalProperties": { "type": "string" }
@@ -40,7 +44,14 @@
4044
"allOf": [
4145
{
4246
"if": {
43-
"required": [ "errors" ]
47+
"anyOf": [
48+
{
49+
"required": [ "errors" ]
50+
},
51+
{
52+
"required": [ "droppedAnnotations" ]
53+
}
54+
]
4455
},
4556
"then": {
4657
"properties": {

0 commit comments

Comments
 (0)