Airbus OneAtlas · Schema

DescribeProcessResponse

a JSON Object that conforms to the Describe Process Specification v1.0

ImagerySatellites

Properties

Name Type Description
_links object
description string
family string
id string
input object
label string
version string
View JSON Schema on GitHub

JSON Schema

oneatlas-describe-process-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-describe-process-response-schema.json",
  "title": "DescribeProcessResponse",
  "type": "object",
  "description": "a JSON Object that conforms to the Describe Process Specification v1.0",
  "properties": {
    "_links": {
      "$ref": "#/components/schemas/DescribeProcessLinks"
    },
    "description": {
      "type": "string"
    },
    "family": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "input": {
      "$ref": "#/components/schemas/DescribeProcessInput"
    },
    "label": {
      "type": "string"
    },
    "version": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "label",
    "family",
    "version",
    "input",
    "links"
  ]
}