GeoJSONFeatureCollection
Section titled “GeoJSONFeatureCollection” object
GeoJSONFeatureCollection
Section titled “GeoJSONFeatureCollection”typeRequiredstringgeocodingRequiredGeocodingMetadatafeaturesRequiredarrayOrdered list of the matched records.
Items
itemOptionalGeoJSONFeature
bboxOptionalarrayBounding box for all returned features.
Items
itemOptionalnumber (double)
View raw schema JSON
{ "type": "object", "required": [ "type", "geocoding", "features" ], "properties": { "type": { "type": "string", "const": "FeatureCollection" }, "geocoding": { "$ref": "#/components/schemas/GeocodingMetadata" }, "features": { "type": "array", "description": "Ordered list of the matched records.", "items": { "$ref": "#/components/schemas/GeoJSONFeature" } }, "bbox": { "type": "array", "description": "Bounding box for all returned features.", "minItems": 4, "maxItems": 6, "items": { "type": "number", "format": "double" } } }}