Arlula · Schema

TaskingOrderRequest

Request body for ordering a future satellite capture.

Earth ObservationGeospatialImageryRemote SensingSatellites

Properties

Name Type Description
id string Ordering ID of the tasking opportunity.
bundleKey string Bundle key for this order.
eula string EULA identifier.
cloud integer Maximum acceptable cloud cover percentage.
priorityKey string Priority level for the capture.
emails array
webhooks array
coupon string Optional coupon code.
View JSON Schema on GitHub

JSON Schema

arlula-tasking-order-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://arlula.com/json-schema/tasking-order-request.json",
  "title": "TaskingOrderRequest",
  "description": "Request body for ordering a future satellite capture.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Ordering ID of the tasking opportunity.",
      "examples": [
        "opp-a1b2c3d4"
      ]
    },
    "bundleKey": {
      "type": "string",
      "description": "Bundle key for this order.",
      "examples": [
        "bundle-standard"
      ]
    },
    "eula": {
      "type": "string",
      "description": "EULA identifier.",
      "examples": [
        "EULA-001"
      ]
    },
    "cloud": {
      "type": "integer",
      "description": "Maximum acceptable cloud cover percentage.",
      "examples": [
        20
      ]
    },
    "priorityKey": {
      "type": "string",
      "description": "Priority level for the capture.",
      "examples": [
        "standard"
      ]
    },
    "emails": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "webhooks": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "coupon": {
      "type": "string",
      "description": "Optional coupon code."
    }
  }
}