Skip to content

Commit

Permalink
JSON schema update
Browse files Browse the repository at this point in the history
Signed-off-by: Ulf Bjorkengren <[email protected]>
  • Loading branch information
UlfBj committed Jan 10, 2025
1 parent 19c1e1f commit 04b685f
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions server/vissv2server/vissv3.0-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,15 @@
},
"value": {
"description": "The value",
"type": "string"
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": { "type": "string" }
}
]
},
"authorization": {
"description": "The access token",
Expand Down Expand Up @@ -198,7 +206,13 @@
"type": "string"
},
"filter": {
"$ref": "/vissv2.0/filter.schema.json"
"anyOf": [
{ "$ref": "/vissv2.0/filter.schema.json" },
{
"type": "array",
"items": { "$ref": "/vissv2.0/filter.schema.json" }
}
]
},
"authorization": {
"description": "The access token",
Expand Down

0 comments on commit 04b685f

Please sign in to comment.