{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "jsonrpc": {
      "const": "2.0"
    },
    "method": {
      "const": "sxplr.navigateTo"
    },
    "params": {
      "allOf": [
        {
          "$ref": "#/definitions/MainState__[state.atlasSelection]__navigation"
        },
        {
          "properties": {
            "animate": {
              "type": "boolean"
            }
          },
          "type": "object"
        }
      ]
    }
  },
  "definitions": {
    "len3num": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "minItems": 3,
      "maxItems": 3
    },
    "len4num": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "minItems": 4,
      "maxItems": 4
    },
    "MainState__[state.atlasSelection]__navigation": {
      "type": "object",
      "properties": {
        "position": {
          "$ref": "#/definitions/len3num"
        },
        "orientation": {
          "$ref": "#/definitions/len4num"
        },
        "zoom": {
          "type": "number"
        },
        "perspectiveOrientation": {
          "$ref": "#/definitions/len4num"
        },
        "perspectiveZoom": {
          "type": "number"
        }
      }
    }
  }
}