Airbus OneAtlas · Schema

point

A geo point.

ImagerySatellites

Properties

Name Type Description
x number x coordinate
y number y coordinate
View JSON Schema on GitHub

JSON Schema

oneatlas-point-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-point-schema.json",
  "title": "point",
  "type": "object",
  "description": "A geo point.",
  "properties": {
    "x": {
      "description": "x coordinate",
      "type": "number"
    },
    "y": {
      "description": "y coordinate",
      "type": "number"
    }
  },
  "required": [
    "x",
    "y"
  ]
}