Airbus OneAtlas · Schema

srs

Referential

ImagerySatellites

Properties

Name Type Description
type string
value string
View JSON Schema on GitHub

JSON Schema

oneatlas-srs-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-schema.json",
  "title": "srs",
  "type": "object",
  "description": "Referential",
  "properties": {
    "type": {
      "enum": [
        "urn",
        "epsg",
        "proj4"
      ],
      "type": "string"
    },
    "value": {
      "example": "urn:ogc:def:crs:EPSG::4326",
      "type": "string"
    }
  },
  "required": [
    "type",
    "value"
  ]
}