Skip to content

Commit 82158ab

Browse files
avatarneilthekaveman
authored andcommitted
Fix typo, make stop_id optional for dockless
1 parent ec1c5e9 commit 82158ab

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

provider/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ To represent a route, MDS `provider` APIs must create a GeoJSON [`FeatureCollect
207207

208208
Routes must include at least 2 points: the start point and end point. Routes must include all possible GPS or GNSS samples collected by a Provider. Providers may round the latitude and longitude to the level of precision representing the maximum accuracy of the specific measurement. For example, [a-GPS][agps] is accurate to 5 decimal places, [differential GPS][dgps] is generally accurate to 6 decimal places. Providers may round those readings to the appropriate number for their systems.
209209

210-
*Docked* mobility providers must include a `stop_id` in the first and last Feature of each `route` by embedding the `stop_id` property in the Feature's `proprerties` object.
210+
*Docked* mobility providers must include a `stop_id` in the first and last Feature of each `route` by embedding the `stop_id` property in the Feature's `properties` object.
211211

212212
```js
213213
"route": {
@@ -216,7 +216,7 @@ Routes must include at least 2 points: the start point and end point. Routes mus
216216
"type": "Feature",
217217
"properties": {
218218
"timestamp": 1529968782421,
219-
"stop_id": "95084833-6a3f-4770-9919-de1ab4b8989b", // REQUIRED for docked mobility providers, N/A for dockless
219+
"stop_id": "95084833-6a3f-4770-9919-de1ab4b8989b", // REQUIRED for docked mobility providers, optional for dockless
220220
},
221221
"geometry": {
222222
"type": "Point",
@@ -230,7 +230,7 @@ Routes must include at least 2 points: the start point and end point. Routes mus
230230
"type": "Feature",
231231
"properties": {
232232
"timestamp": 1531007628377,
233-
"stop_id": "b813cde2-a41c-4ae3-b409-72ff221e003d" // REQUIRED for docked mobility providers, N/A for dockless
233+
"stop_id": "b813cde2-a41c-4ae3-b409-72ff221e003d" // REQUIRED for docked mobility providers, optional for dockless
234234
},
235235
"geometry": {
236236
"type": "Point",

0 commit comments

Comments
 (0)