Created
October 2, 2025 12:08
-
-
Save eskerda/919bb934b999f296ec189c4b33ef5d59 to your computer and use it in GitHub Desktop.
Some example feed for pybikes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "stations": [ | |
| { | |
| "name": "Station Foo", | |
| "latitude": 1.1, | |
| "longitude": 1.1, | |
| "bikes": 42, | |
| "free": 33, | |
| "id": 1, | |
| "online": true | |
| }, | |
| { | |
| "name": "Station Bar", | |
| "latitude": 1.1, | |
| "longitude": 1.1, | |
| "bikes": 42, | |
| "free": 33, | |
| "id": 2, | |
| "online": false | |
| } | |
| ], | |
| "vehicles": [ | |
| { | |
| "latitude": 1.1, | |
| "longitude": 1.1, | |
| "type": "bicycle", | |
| "id": "some-vehicle-1", | |
| "online": true | |
| }, | |
| { | |
| "latitude": 1.1, | |
| "longitude": 1.1, | |
| "type": "ebike", | |
| "id": "some-vehicle-2", | |
| "online": true | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment