ADS-B Exchange · Schema

FeatureCollectionRequest

Mimics the request model for the feature collection endpoint (GeoJSON)

AviationFlight TrackingADS-BAircraftReal-TimeMilitaryMLAT

Properties

Name Type Description
type string Type of the GeoJSON object. Should be "FeatureCollection"
features array Collection of features describing the geometries
View JSON Schema on GitHub

JSON Schema

featurecollectionrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FeatureCollectionRequest",
  "type": "object",
  "description": "Mimics the request model for the feature collection endpoint (GeoJSON)",
  "additionalProperties": false,
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of the GeoJSON object. Should be \"FeatureCollection\""
    },
    "features": {
      "type": "array",
      "description": "Collection of features describing the geometries",
      "items": {
        "$ref": "#/components/schemas/FeatureRequest"
      }
    }
  }
}