NASA CMR · Schema

NASA CMR STAC Featurecollectiongeojson

JSON Schema for NASA CMR STAC featureCollectionGeoJSON

NASAEarth ScienceSatellite DataRemote SensingGeospatialOpen DataMetadataCollectionsGranules

Properties

Name Type Description
type string
features array
links array
timeStamp string
numberMatched integer
numberReturned integer
View JSON Schema on GitHub

JSON Schema

nasa-cmr-stac-featureCollectionGeoJSON.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nasa-cmr/main/json-schema/nasa-cmr-stac-featureCollectionGeoJSON.json",
  "title": "NASA CMR STAC Featurecollectiongeojson",
  "description": "JSON Schema for NASA CMR STAC featureCollectionGeoJSON",
  "type": "object",
  "required": [
    "type",
    "features"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "FeatureCollection"
      ]
    },
    "features": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/featureGeoJSON"
      }
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/link"
      }
    },
    "timeStamp": {
      "type": "string",
      "format": "date-time"
    },
    "numberMatched": {
      "type": "integer",
      "minimum": 0
    },
    "numberReturned": {
      "type": "integer",
      "minimum": 0
    }
  }
}