Skip to content

Commit

Permalink
Merge pull request #398 from OliverCullimore/395-calderdale-council
Browse files Browse the repository at this point in the history
feat: Add support for Calderdale Council
  • Loading branch information
robbrad authored Oct 30, 2023
2 parents ed56a82 + 68c3c6b commit cb1ab93
Show file tree
Hide file tree
Showing 5 changed files with 217 additions and 60 deletions.
39 changes: 39 additions & 0 deletions uk_bin_collection/tests/council_schemas/CalderdaleCouncil.schema
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$ref": "#/definitions/Welcome5",
"definitions": {
"Welcome5": {
"type": "object",
"additionalProperties": false,
"properties": {
"bins": {
"type": "array",
"items": {
"$ref": "#/definitions/Bin"
}
}
},
"required": [
"bins"
],
"title": "Welcome5"
},
"Bin": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string"
},
"collectionDate": {
"type": "string"
}
},
"required": [
"collectionDate",
"type"
],
"title": "Bin"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Feature: Test each council output matches expected results in /outputs
| BroxtoweBoroughCouncil |
| BuckinghamshireCouncil |
| BuryCouncil |
| CalderdaleCouncil |
| CannockChaseDistrictCouncil |
| CardiffCouncil |
| CastlepointDistrictCouncil |
Expand Down
Loading

0 comments on commit cb1ab93

Please sign in to comment.