﻿{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.mpai.community/OSD/V1.4/data/SpatialAttitude.json",
  "title": "SpatialAttitude",
  "type": "object",
  "additionalProperties": false,
  "unevaluatedProperties": false,
  "required": ["Header", "ObjectSpatialAttitudeID", "Position", "Orientation"],
  "properties": {
    "Header": {
      "type": "string",
      "pattern": "^OSD-OSA-[0-9]{1,2}[.][0-9]{1,2}$"
    },
    "ObjectSpatialAttitudeID": { "type": "string" },
    "General": {
      "type": "object",
      "additionalProperties": false,
      "unevaluatedProperties": false,
      "required": ["CoordTypeID", "ObjectType", "MediaType"],
      "properties": {
        "CoordType": {
          "$ref": "https://schemas.mpai.community/TFA/V1.4/types/CoordinateTypes.json"
        },
        "ObjectType": {
          "$ref": "https://schemas.mpai.community/TFA/V1.4/types/ObjectTypes.json"
        },
        "MediaType": {
          "$ref": "https://schemas.mpai.community/TFA/V1.4/types/MediaTypes.json"
        }
      }
    },
    "Position": {
      "$ref": "https://schemas.mpai.community/OSD/V1.4/data/Position.json"
    },
    "Orientation": {
      "$ref": "https://schemas.mpai.community/OSD/V1.4/data/Orientation.json"
    },
    "DescrMetadata": { "type": "string" }
  }
}