Skip to content

Commit

Permalink
release-schema: Use anyOf for maximumLotsBidPerSupplier
Browse files Browse the repository at this point in the history
  • Loading branch information
duncandewhurst committed Oct 24, 2024
1 parent 1677615 commit 2432ddf
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@
"description": "Details of any criteria that apply to bidding on the lots in this tender.",
"type": "object",
"properties": {
"maximumLotsBidPerSupplier": {
"title": "Maximum lots per supplier",
"description": "The maximum number of lots that one supplier can bid on as part of this contracting process.",
"oneOf": [
{
"type": [
"integer",
"null"
]
},
{
"type": [
"number"
],
"enum": [
1e9999
]
}
]
},
"maximumLotsBidPerSupplier": {
"title": "Maximum lots per supplier",
"description": "The maximum number of lots that one supplier can bid on as part of this contracting process.",
"anyOf": [
{
"type": [
"integer",
"null"
]
},
{
"type": [
"number"
],
"enum": [
1e9999
]
}
]
},
"maximumLotsAwardedPerSupplier": {
"title": "Maximum lots per supplier",
"description": "The maximum number of lots that can be awarded to one supplier as part of this contracting process.",
Expand Down

0 comments on commit 2432ddf

Please sign in to comment.