Skip to content

Commit

Permalink
Add Tender#numberOfTenderers and Tender#tenderers, closes #78, closes…
Browse files Browse the repository at this point in the history
… 141
  • Loading branch information
James McKinney committed Nov 28, 2014
1 parent 832852a commit 94f72cf
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 0 deletions.
12 changes: 12 additions & 0 deletions standard/schema/release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,18 @@
"description": "The date or period on which an award is anticipated to be made.",
"$ref": "#/definitions/Period"
},
"numberOfTenderers": {
"definition": "The number of entities who submit a tender.",
"type": ["integer", "null"],
"mergeStrategy": "ocdsVersion"
},
"tenderers": {
"description": "All entities who submit a tender.",
"type": "array",
"items": { "$ref": "#/definitions/Organization" },
"uniqueItems": true,
"mergeStrategy": "ocdsVersion"
},
"procuringEntity": {
"description": "The entity managing the procurement, which may be different from the buyer who is paying / using the items being procured.",
"$ref": "#/definitions/Organization"
Expand Down
98 changes: 98 additions & 0 deletions standard/schema/versioned-release-validation-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2819,6 +2819,30 @@
}
}
},
"numberOfTenderers": {
"items": {
"properties": {
"releaseDate": {
"type": "string",
"format": "date-time"
},
"releaseID": {
"type": "string"
},
"releaseTag": {
"type": "string"
},
"value": {
"definition": "The number of entities who submit a tender.",
"type": [
"integer",
"null"
]
}
}
},
"type": "array"
},
"value": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2873,6 +2897,31 @@
}
}
},
"tenderers": {
"items": {
"properties": {
"releaseDate": {
"type": "string",
"format": "date-time"
},
"releaseID": {
"type": "string"
},
"releaseTag": {
"type": "string"
},
"value": {
"uniqueItems": true,
"items": {
"$ref": "#/definitions/Organization"
},
"type": "array",
"description": "All entities who submit a tender."
}
}
},
"type": "array"
},
"id": {
"items": {
"properties": {
Expand Down Expand Up @@ -5373,6 +5422,30 @@
}
}
},
"numberOfTenderers": {
"items": {
"properties": {
"releaseDate": {
"type": "string",
"format": "date-time"
},
"releaseID": {
"type": "string"
},
"releaseTag": {
"type": "string"
},
"value": {
"definition": "The number of entities who submit a tender.",
"type": [
"integer",
"null"
]
}
}
},
"type": "array"
},
"value": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -5427,6 +5500,31 @@
}
}
},
"tenderers": {
"items": {
"properties": {
"releaseDate": {
"type": "string",
"format": "date-time"
},
"releaseID": {
"type": "string"
},
"releaseTag": {
"type": "string"
},
"value": {
"uniqueItems": true,
"items": {
"$ref": "#/definitions/Organization"
},
"type": "array",
"description": "All entities who submit a tender."
}
}
},
"type": "array"
},
"id": {
"items": {
"properties": {
Expand Down

0 comments on commit 94f72cf

Please sign in to comment.