Airbus OneAtlas · Schema

tasking

ImagerySatellites

Properties

Name Type Description
contractId object The contract id
orderId object The order id
productTypeId object The product type id
customerId object The customer id
taskingId string The tasking id
segmentId object The segment id
licenceId object The licence id
quotationId object The quotation id
taskingIds array ICR's list
count integer Number of items per page
customerRef string Customer reference
program string Program name
status array ICR Status
mission string mission name
progTypeNames string Refer to one-tasking online documentation at http://www.intelligence-airbusds.com/ for more information
acquisitionDate string A date or date interval that must match the product acquisition date. Only taskings in this range are returned in the response. Example: [2017-01-01,2017-02-01[ to select all taskings done in January
icrEndOfPeriodDate string A date or date interval that must match the icr end of period date. Only taskings in this range are returned in the response. Example: [2017-01-01,2017-02-01[ to select all taskings done in January 20
hasProposedSegments boolean Indicates whether the search should filter on proposed segments. If set to true, only ICR with proposed segments should be returned. If set to false, only ICR with no proposed segments. If not set, re
startPage integer The desired page, starting from 1 for the first page.
sortKeys string A sorting request to the server conforming the OpenSearch SRU specification. Example: sortKeys=acquisitionDate,,0 meaning a request to sort by newest acquired image first or sortKeys=cloudCover,,1 to
View JSON Schema on GitHub

JSON Schema

oneatlas-tasking-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbus-oneatlas/refs/heads/main/json-schema/oneatlas-tasking-schema.json",
  "title": "tasking",
  "properties": {
    "contractId": {
      "name": "contractId",
      "in": "path",
      "required": true,
      "description": "The contract id",
      "schema": {
        "type": "string"
      }
    },
    "orderId": {
      "name": "orderId",
      "in": "path",
      "required": true,
      "description": "The order id",
      "schema": {
        "type": "string"
      }
    },
    "productTypeId": {
      "name": "productTypeId",
      "in": "path",
      "required": true,
      "description": "The product type id",
      "schema": {
        "type": "string"
      }
    },
    "customerId": {
      "name": "customerId",
      "in": "path",
      "required": true,
      "description": "The customer id",
      "schema": {
        "type": "string"
      }
    },
    "taskingId": {
      "name": "taskingId",
      "in": "path",
      "required": true,
      "description": "The tasking id",
      "type": "string",
      "schema": {
        "type": "string"
      }
    },
    "segmentId": {
      "name": "segmentId",
      "in": "path",
      "required": true,
      "description": "The segment id",
      "schema": {
        "type": "string"
      }
    },
    "licenceId": {
      "name": "licenceId",
      "in": "path",
      "required": true,
      "description": "The licence id",
      "schema": {
        "type": "string"
      }
    },
    "quotationId": {
      "name": "quotationId",
      "in": "path",
      "required": true,
      "description": "The quotation id",
      "schema": {
        "type": "string"
      }
    },
    "taskingIds": {
      "name": "taskingIds",
      "in": "query",
      "description": "ICR's list",
      "type": "array",
      "schema": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    },
    "count": {
      "name": "count",
      "in": "query",
      "description": "Number of items per page",
      "type": "integer",
      "schema": {
        "type": "integer",
        "default": 10
      }
    },
    "customerRef": {
      "name": "customerRef",
      "in": "query",
      "description": "Customer reference",
      "type": "string",
      "schema": {
        "type": "string"
      }
    },
    "program": {
      "name": "program",
      "in": "query",
      "description": "Program name",
      "type": "string",
      "schema": {
        "type": "string"
      }
    },
    "status": {
      "name": "status",
      "in": "query",
      "description": "ICR Status",
      "type": "array",
      "schema": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "Feasibility study in progress",
            "In Progress",
            "Paused",
            "Canceled",
            "Completed"
          ]
        }
      }
    },
    "mission": {
      "name": "mission",
      "in": "query",
      "description": "mission name",
      "type": "string",
      "schema": {
        "type": "string",
        "enum": [
          "SPOT",
          "PLEIADES"
        ]
      }
    },
    "progTypeNames": {
      "name": "progTypeNames",
      "in": "query",
      "description": "Refer to one-tasking online documentation at http://www.intelligence-airbusds.com/ for more information",
      "type": "string",
      "schema": {
        "type": "string",
        "enum": [
          "ONEDAY",
          "ONENOW",
          "ONEPLAN",
          "ONESERIES"
        ]
      }
    },
    "acquisitionDate": {
      "name": "acquisitionDate",
      "in": "query",
      "description": "A date or date interval that must match the product acquisition date. Only taskings in this range are returned in the response. Example: [2017-01-01,2017-02-01[ to select all taskings done in January 2017.",
      "type": "string",
      "schema": {
        "type": "string",
        "format": "Interval of dates in ISO 8601"
      }
    },
    "icrEndOfPeriodDate": {
      "name": "icrEndOfPeriodDate",
      "in": "query",
      "description": "A date or date interval that must match the icr end of period date. Only taskings in this range are returned in the response. Example: [2017-01-01,2017-02-01[ to select all taskings done in January 2017.",
      "type": "string",
      "schema": {
        "type": "string",
        "format": "Interval of dates in ISO 8601"
      }
    },
    "hasProposedSegments": {
      "name": "hasProposedSegments",
      "in": "query",
      "description": "Indicates whether the search should filter on proposed segments. If set to true, only ICR with proposed segments should be returned. If set to false, only ICR with no proposed segments. If not set, returns all ICR ignoring presence/absence of proposed segments",
      "type": "boolean",
      "schema": {
        "type": "boolean"
      }
    },
    "startPage": {
      "name": "startPage",
      "in": "query",
      "description": "The desired page, starting from 1 for the first page.",
      "type": "integer",
      "schema": {
        "type": "integer",
        "default": 1
      }
    },
    "sortKeys": {
      "name": "sortKeys",
      "in": "query",
      "description": "A sorting request to the server conforming the OpenSearch SRU specification. Example: sortKeys=acquisitionDate,,0 meaning a request to sort by newest acquired image first or sortKeys=cloudCover,,1 to sort by the smallest cloud coverage percentage. Available values are: status, startDate, endDate, taskingProgress",
      "type": "string",
      "schema": {
        "type": "string",
        "format": "OpenSearch SRU"
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/oneatlas-tasking"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.