Airbus OneAtlas · Schema

srsExpression

ImagerySatellites

Properties

Name Type Description
axes array
names array
View JSON Schema on GitHub

JSON Schema

oneatlas-srs-expression-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-srs-expression-schema.json",
  "title": "srsExpression",
  "type": "object",
  "properties": {
    "axes": {
      "example": [
        {
          "abbreviation": "Lat",
          "direction": "north"
        },
        {
          "abbreviation": "Lon",
          "direction": "east"
        }
      ],
      "items": {
        "properties": {
          "abbreviation": {
            "type": "string"
          },
          "direction": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array",
      "uniqueItems": true
    },
    "names": {
      "items": {
        "$ref": "#/components/schemas/srs"
      },
      "type": "array",
      "uniqueItems": true
    }
  }
}