Bird · Schema
Bird Geofencing Zone
A single feature in Bird's GBFS geofencing_zones FeatureCollection, describing a polygon where ride, ride-through, parking, or speed-cap rules apply.
MicromobilityShared MobilityElectric ScootersE-ScootersE-BikesBike ShareTransportationUrban MobilityGBFSGeneral Bikeshare Feed SpecificationMobility Data SpecificationMDSGeofencingCitiesSmart CitiesFleet ManagementThird Lane Mobility
Properties
| Name | Type | Description |
|---|---|---|
| type | string | |
| geometry | object | GeoJSON geometry; typically a Polygon or MultiPolygon defining the zone boundary. |
| properties | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/bird-rides/refs/heads/main/json-schema/bird-geofencing-zone-schema.json",
"title": "Bird Geofencing Zone",
"description": "A single feature in Bird's GBFS geofencing_zones FeatureCollection, describing a polygon where ride, ride-through, parking, or speed-cap rules apply.",
"type": "object",
"required": ["type", "geometry"],
"properties": {
"type": {
"type": "string",
"const": "Feature"
},
"geometry": {
"type": "object",
"description": "GeoJSON geometry; typically a Polygon or MultiPolygon defining the zone boundary.",
"properties": {
"type": {
"type": "string",
"enum": ["Polygon", "MultiPolygon"]
},
"coordinates": {
"type": "array"
}
},
"required": ["type", "coordinates"]
},
"properties": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Human-readable zone name (e.g. 'University no-park zone')."
},
"start": {
"type": "integer",
"description": "POSIX timestamp at which the zone becomes active."
},
"end": {
"type": "integer",
"description": "POSIX timestamp at which the zone expires; null/absent for permanent zones."
},
"rules": {
"type": "array",
"items": {
"type": "object",
"properties": {
"vehicle_type_id": {
"type": "array",
"items": { "type": "string" },
"description": "Vehicle types to which this rule applies. Omit/empty means all types."
},
"ride_allowed": {
"type": "boolean",
"description": "Whether a rider may start or be inside an active ride within the zone."
},
"ride_through_allowed": {
"type": "boolean",
"description": "Whether riders may pass through the zone without stopping."
},
"maximum_speed_kph": {
"type": "number",
"minimum": 0,
"description": "Maximum speed cap enforced by the vehicle inside the zone."
}
}
}
}
}
}
},
"additionalProperties": true
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/bird-geofencing-zone"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.