Skip to content

Commit

Permalink
Cardiff schema name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robbrad committed Aug 3, 2022
1 parent b405ede commit 6f73a0f
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions uk_bin_collection/tests/council_schemas/CardiffCouncil.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/Welcome8",
"definitions": {
"Welcome8": {
"type": "object",
"additionalProperties": false,
"properties": {
"bins": {
"type": "array",
"items": {
"$ref": "#/definitions/Bin"
}
}
},
"required": [
"bins"
],
"title": "Welcome8"
},
"Bin": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string"
},
"collectionDate": {
"type": "string"
}
},
"required": [
"collectionDate",
"type"
],
"title": "Bin"
}
}
}

0 comments on commit 6f73a0f

Please sign in to comment.