Arlula · Schema

OrderResponse

Response after placing an imagery order.

Earth ObservationGeospatialImageryRemote SensingSatellites

Properties

Name Type Description
orderId string Unique order identifier.
status string Current order status.
createdAt string Time the order was created.
View JSON Schema on GitHub

JSON Schema

arlula-order-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://arlula.com/json-schema/order-response.json",
  "title": "OrderResponse",
  "description": "Response after placing an imagery order.",
  "type": "object",
  "properties": {
    "orderId": {
      "type": "string",
      "description": "Unique order identifier.",
      "examples": [
        "order-500123"
      ]
    },
    "status": {
      "type": "string",
      "description": "Current order status.",
      "examples": [
        "processing"
      ]
    },
    "createdAt": {
      "type": "string",
      "description": "Time the order was created.",
      "examples": [
        "2026-04-19T09:00:00Z"
      ]
    }
  }
}