Skip to content

Commit

Permalink
release-schema: Add oneOf to lotDetails.maximumLotsPerSupplier
Browse files Browse the repository at this point in the history
  • Loading branch information
duncandewhurst committed Oct 24, 2024
1 parent 8d943c2 commit 7bc2da1
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,19 @@
"maximumLotsBidPerSupplier": {
"title": "Maximum lots per supplier",
"description": "The maximum number of lots that one supplier can bid on as part of this contracting process.",
"type": [
"integer",
"null"
"oneOf": [
{
"type": [
"integer",
"null"
]
},
{
"type": [
"number"
],
"const": 1e9999
}
]
},
"maximumLotsAwardedPerSupplier": {
Expand Down

0 comments on commit 7bc2da1

Please sign in to comment.