{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransitStop", "title": "TransitStop", "type": "object", "description": "A transit stop", "properties": { "name": { "type": "string", "description": "The name of the transit stop", "example": "Example Title" }, "location": { "$ref": "#/components/schemas/LatLng" } } }