{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/maxar-technologies/main/json-schema/maxar-technologies-order-schema.json", "title": "Maxar Order", "description": "Order placed against the Maxar archive via the MGP Ordering API.", "type": "object", "required": ["id", "status"], "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "status": { "type": "string", "enum": ["pending", "in_progress", "complete", "failed", "cancelled"] }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" }, "cost": { "type": "number" }, "currency": { "type": "string" }, "items": { "type": "array", "items": { "type": "object", "properties": { "catalog_id": { "type": "string" }, "status": { "type": "string" } } } } } }