{ "$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" } } } } } }