Arlula · Schema

TaskingSearchRequest

Request body for searching future satellite capture opportunities.

Earth ObservationGeospatialImageryRemote SensingSatellites

Properties

Name Type Description
start string Start of the search window.
end string End of the search window.
gsd number Maximum ground sample distance in meters.
lat number Latitude of the area of interest.
long number Longitude of the area of interest.
cloud integer Maximum acceptable cloud cover percentage.
offNadir number Maximum off-nadir angle in degrees.
suppliers array
platformTypes array
sensorTypes array
View JSON Schema on GitHub

JSON Schema

arlula-tasking-search-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://arlula.com/json-schema/tasking-search-request.json",
  "title": "TaskingSearchRequest",
  "description": "Request body for searching future satellite capture opportunities.",
  "type": "object",
  "properties": {
    "start": {
      "type": "string",
      "description": "Start of the search window.",
      "examples": [
        "2026-05-01T00:00:00Z"
      ]
    },
    "end": {
      "type": "string",
      "description": "End of the search window.",
      "examples": [
        "2026-05-31T00:00:00Z"
      ]
    },
    "gsd": {
      "type": "number",
      "description": "Maximum ground sample distance in meters.",
      "examples": [
        0.5
      ]
    },
    "lat": {
      "type": "number",
      "description": "Latitude of the area of interest.",
      "examples": [
        -33.8523
      ]
    },
    "long": {
      "type": "number",
      "description": "Longitude of the area of interest.",
      "examples": [
        151.2108
      ]
    },
    "cloud": {
      "type": "integer",
      "description": "Maximum acceptable cloud cover percentage.",
      "examples": [
        20
      ]
    },
    "offNadir": {
      "type": "number",
      "description": "Maximum off-nadir angle in degrees.",
      "examples": [
        30.0
      ]
    },
    "suppliers": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "platformTypes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "sensorTypes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}