Maxar Technologies · Schema

Maxar Monitor

Monitor over a user-defined AOI in the MGP Monitoring API.

Satellite ImageryEarth ObservationGeospatialRemote SensingSpatial IntelligenceDefenseIntelligenceWorldViewSTACOGCWMSWMTSWFSTaskingBasemapsVantorLanterisAdvent InternationalPrivate Equity

Properties

Name Type Description
id string
name string
status string
cadence string
created_at string
filters object
View JSON Schema on GitHub

JSON Schema

maxar-technologies-monitor-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/maxar-technologies/main/json-schema/maxar-technologies-monitor-schema.json",
  "title": "Maxar Monitor",
  "description": "Monitor over a user-defined AOI in the MGP Monitoring API.",
  "type": "object",
  "required": ["id", "name"],
  "properties": {
    "id":     { "type": "string" },
    "name":   { "type": "string" },
    "status": { "type": "string", "enum": ["active", "paused"] },
    "cadence": { "type": "string", "enum": ["daily", "weekly", "on_new_image"] },
    "created_at": { "type": "string", "format": "date-time" },
    "filters": {
      "type": "object",
      "properties": {
        "max_cloud_cover": { "type": "number" },
        "platforms": { "type": "array", "items": { "type": "string" } }
      }
    }
  }
}