NASA CMR · Schema

NASA CMR STAC Landingpage

JSON Schema for NASA CMR STAC landingPage

NASAEarth ScienceSatellite DataRemote SensingGeospatialOpen DataMetadataCollectionsGranules

Properties

Name Type Description
title string
description string
links array
View JSON Schema on GitHub

JSON Schema

nasa-cmr-stac-landingPage.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-landingPage.json",
  "title": "NASA CMR STAC Landingpage",
  "description": "JSON Schema for NASA CMR STAC landingPage",
  "type": "object",
  "required": [
    "links"
  ],
  "properties": {
    "title": {
      "type": "string",
      "example": "Buildings in Bonn"
    },
    "description": {
      "type": "string",
      "example": "Access to data about buildings in the city of Bonn via a Web API that conforms to the OGC API Features specification."
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/link"
      }
    }
  }
}