Skip to content

Commit b6caa1f

Browse files
committed
update geojson feature in agency schemas
the upstream schema definition was updated to allow number or string for the id property
1 parent 4b8bb81 commit b6caa1f

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

agency/get_stops.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,16 @@
225225
"Feature"
226226
]
227227
},
228+
"id": {
229+
"oneOf": [
230+
{
231+
"type": "number"
232+
},
233+
{
234+
"type": "string"
235+
}
236+
]
237+
},
228238
"properties": {
229239
"type": "object",
230240
"required": [

agency/post_stops.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,16 @@
225225
"Feature"
226226
]
227227
},
228+
"id": {
229+
"oneOf": [
230+
{
231+
"type": "number"
232+
},
233+
{
234+
"type": "string"
235+
}
236+
]
237+
},
228238
"properties": {
229239
"type": "object",
230240
"required": [

0 commit comments

Comments
 (0)