{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TripsForLocationResponse", "type": "object", "properties": { "limitExceeded": { "type": "boolean", "description": "Indicates if the limit of trips has been exceeded" }, "list": { "type": "array", "items": { "$ref": "#/components/schemas/TripDetails" } }, "outOfRange": { "type": "boolean", "description": "Indicates if the search location is out of range" }, "references": { "$ref": "#/components/schemas/Reference" } }, "required": [ "list", "references" ] }