ADS-B Exchange · Schema

FeatureGeometryRequest

Describes the geometry of the feature in the GeoJSON feature collection

AviationFlight TrackingADS-BAircraftReal-TimeMilitaryMLAT

Properties

Name Type Description
type string Type of the GeoJSON object. Should be "Polygon" or "MultiPolygon"
coordinates array Coordinates of the polygon or multipolygon geometry in GeoJSON format.
View JSON Schema on GitHub

JSON Schema

featuregeometryrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FeatureGeometryRequest",
  "type": "object",
  "description": "Describes the geometry of the feature in the GeoJSON feature collection",
  "additionalProperties": false,
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of the GeoJSON object. Should be \"Polygon\" or \"MultiPolygon\""
    },
    "coordinates": {
      "type": "array",
      "description": "Coordinates of the polygon or multipolygon geometry in GeoJSON format.",
      "items": {
        "type": "array",
        "items": {
          "type": "array",
          "items": {
            "type": "number",
            "format": "double"
          }
        }
      }
    }
  }
}