Skip to content

Commit

Permalink
Merge pull request #73 from UlfBj/master
Browse files Browse the repository at this point in the history
JSON schema update
  • Loading branch information
UlfBj authored Jan 10, 2025
2 parents 19c1e1f + 04b685f commit f882005
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 f882005

Please sign in to comment.