Airbus OneAtlas · Schema

ProcessesResponse

response to a get processes call.

ImagerySatellites

Properties

Name Type Description
_embedded object
_links object
View JSON Schema on GitHub

JSON Schema

oneatlas-processes-response-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-processes-response-schema.json",
  "title": "ProcessesResponse",
  "type": "object",
  "description": "response to a get processes call.",
  "properties": {
    "_embedded": {
      "properties": {
        "processes": {
          "items": {
            "$ref": "#/components/schemas/processHALCatalog"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "_links": {
      "properties": {
        "self": {
          "$ref": "#/components/schemas/Link"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "_links",
    "_embedded"
  ]
}