All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opengis.cite.geopose10.jsonschema.GeoPose.Composite.Chain.Schema.json Maven / Gradle / Ivy

{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "description": "Chain: An outer frame and a sequence of transformations to a final innermost frame.",
  "definitions": {
    "FrameSpecification": {
      "type": "object",
      "properties": {
        "authority": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "parameters": {
          "type": "string"
        }
      },
      "required": [
        "authority",
        "id",
        "parameters"
      ]
    },
    "FrameSpecification-1": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "authority": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "parameters": {
          "type": "string"
        }
      },
      "required": [
        "authority",
        "id",
        "parameters"
      ]
    }
  },
  "type": "object",
  "properties": {
    "validTime": {
      "type": "integer"
    },
    "outerFrame": {
      "$ref": "#/definitions/FrameSpecification"
    },
    "frameChain": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/FrameSpecification-1"
      },
      "minItems": 2
    }
  },
  "required": [
    "validTime",
    "outerFrame",
    "frameChain"
  ]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy