Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional fields for parking lots #216

Merged
merged 1 commit into from
Jul 31, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions schema/city_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@
"forecast":{
"description":"shows if forecast is available for this spot",
"type":"boolean"
},
"url":{
"description":"A URL of a web resource where more information can be viewed",
"type":"string"
},
"opening_hours":{
"description":"Opening hours of this lot in OpenStreetMap format (https://wiki.openstreetmap.org/wiki/Key:opening_hours)",
"type":"string"
},
"fee_hours":{
"description":"Hours during which usage of this lot incurrs fees in OpenStreetMap format (https://wiki.openstreetmap.org/wiki/Key:opening_hours). It is implied that outside those hours usage is free.",
"type":"string"
}
},
"required":["name", "count", "state", "forecast"]
Expand Down