{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "StopsForRouteResponse", "type": "object", "properties": { "entry": { "type": "object", "properties": { "polylines": { "type": "array", "items": { "$ref": "#/components/schemas/Polylines" } }, "routeId": { "type": "string", "example": "1_100224" }, "stopGroupings": { "type": "array", "items": { "$ref": "#/components/schemas/StopGrouping" } }, "stopIds": { "type": "array", "items": { "type": "string", "example": "1_10911" } } } }, "references": { "$ref": "#/components/schemas/Reference" } }, "required": [ "entry", "references" ] }