Skip to content

Commit

Permalink
fix: Add null type to array of strings. Add test dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 10, 2024
1 parent a7c6add commit e9b3277
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
"email": "[email protected]"
},
"testDependencies": [
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_submissionTerms_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_lots_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_document_publisher_extension/master/extension.json"
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_document_publisher_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_exclusionGrounds_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_selectionCriteria_extension/master/extension.json"
]
}
10 changes: 8 additions & 2 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,10 @@
"sources": {
"title": "Sources",
"description": "The sources in which the exclusion grounds are defined.",
"type": "array",
"type": [
"array",
"null"
],
"items": {
"type": "string",
"enum": [
Expand All @@ -223,7 +226,10 @@
"sources": {
"title": "Sources",
"description": "The sources in which the selection criteria are defined.",
"type": "array",
"type": [
"array",
"null"
],
"items": {
"type": "string",
"enum": [
Expand Down

0 comments on commit e9b3277

Please sign in to comment.