Skip to content

Commit

Permalink
schema: add submissionTerms.electronicSubmissionPolicy to tender
Browse files Browse the repository at this point in the history
  • Loading branch information
odscjen committed Oct 20, 2023
1 parent 142d707 commit ad5f405
Show file tree
Hide file tree
Showing 4 changed files with 113 additions and 0 deletions.
4 changes: 4 additions & 0 deletions schema/codelists/permission.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Code,Title,Description
required,Required,The activity is required.
allowed,Allowed,The activity is allowed.
notAllowed,Not allowed,The activity is not allowed.
46 changes: 46 additions & 0 deletions schema/dereferenced-release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4629,6 +4629,29 @@
"null"
]
},
"submissionTerms": {
"title": "Submission terms",
"description": "Information about the submission terms to describe how, when and where the tenderers need to submit their bids for the procedure.",
"type": "object",
"properties": {
"electronicCataloguePolicy": {
"title": "Electronic catalog policy",
"description": "Whether tenderers are required, allowed or not allowed to submit bids as electronic catalogs. An electronic catalog is an electronic format (typically prescribed by the buyer) that participants in the contracting process need to follow when exchanging information about technical specifications, evaluation criteria, bids, lots, etc.",
"type": [
"string",
"null"
],
"codelist": "permission.csv",
"openCodelist": false,
"enum": [
"required",
"allowed",
"notAllowed",
null
]
}
}
},
"datePublished": {
"description": "The date on which the tender was published.",
"format": "date-time",
Expand Down Expand Up @@ -17843,6 +17866,29 @@
"null"
]
},
"submissionTerms": {
"title": "Submission terms",
"description": "Information about the submission terms to describe how, when and where the tenderers need to submit their bids for the procedure.",
"type": "object",
"properties": {
"electronicCataloguePolicy": {
"title": "Electronic catalog policy",
"description": "Whether tenderers are required, allowed or not allowed to submit bids as electronic catalogs. An electronic catalog is an electronic format (typically prescribed by the buyer) that participants in the contracting process need to follow when exchanging information about technical specifications, evaluation criteria, bids, lots, etc.",
"type": [
"string",
"null"
],
"codelist": "permission.csv",
"openCodelist": false,
"enum": [
"required",
"allowed",
"notAllowed",
null
]
}
}
},
"datePublished": {
"description": "The date on which the tender was published.",
"format": "date-time",
Expand Down
23 changes: 23 additions & 0 deletions schema/release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,29 @@
"null"
]
},
"submissionTerms": {
"title": "Submission terms",
"description": "Information about the submission terms to describe how, when and where the tenderers need to submit their bids for the procedure.",
"type": "object",
"properties": {
"electronicCataloguePolicy": {
"title": "Electronic catalog policy",
"description": "Whether tenderers are required, allowed or not allowed to submit bids as electronic catalogs. An electronic catalog is an electronic format (typically prescribed by the buyer) that participants in the contracting process need to follow when exchanging information about technical specifications, evaluation criteria, bids, lots, etc.",
"type": [
"string",
"null"
],
"codelist": "permission.csv",
"openCodelist": false,
"enum": [
"required",
"allowed",
"notAllowed",
null
]
}
}
},
"datePublished": {
"description": "The date on which the tender was published.",
"format": "date-time",
Expand Down
40 changes: 40 additions & 0 deletions schema/versioned-release-validation-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,46 @@
"submissionMethodDetails": {
"$ref": "#/definitions/StringNullVersioned"
},
"submissionTerms": {
"type": "object",
"properties": {
"electronicCataloguePolicy": {
"type": "array",
"items": {
"type": "object",
"properties": {
"releaseDate": {
"format": "date-time",
"type": "string"
},
"releaseID": {
"type": "string"
},
"value": {
"type": [
"string",
"null"
],
"codelist": "permission.csv",
"openCodelist": false,
"enum": [
"required",
"allowed",
"notAllowed",
null
]
},
"releaseTag": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
},
"datePublished": {
"$ref": "#/definitions/StringNullDateTimeVersioned"
},
Expand Down

0 comments on commit ad5f405

Please sign in to comment.