{
  "title": "heightModelInfo",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "An object that defines the characteristics of the vertical coordinate system used by the web scene.",
  "properties": {
    "heightModel": {
      "type": "string",
      "description": "The surface type or height model of the vertical coordinate system.",
      "enum": [
        "ellipsoidal",
        "gravity_related_height"
      ],
      "default": "ellipsoidal"
    },
    "heightUnit": {
      "type": "string",
      "description": "The unit of the vertical coordinate system.<a href=\"#heightUnit\"><sup>1</sup></a>",
      "enum": [
        "150-kilometers",
        "50-kilometers",
        "benoit-1895-b-chain",
        "clarke-foot",
        "clarke-link",
        "clarke-yard",
        "foot",
        "gold-coast-foot",
        "indian-1937-yard",
        "indian-yard",
        "meter",
        "sears-1922-truncated-chain",
        "sears-chain",
        "sears-foot",
        "sears-yard",
        "us-foot"
      ]
    },
    "vertCRS": {
      "type": "string",
      "description": "(Optional) The datum realization of the vertical coordinate system."
    }
  },
  "required": [
    "heightModel",
    "heightUnit"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "additionalInformation": "The height model info defines the characteristics of the vertical coordinate system used by the scene, and is used to avoid rendering layers that have incompatible vertical coordinate systems.\n\nA height model info is defined by a surface type, a vertical unit and an optional datum realization.<br><a id=\"unit\"><sup>1</sup></a>Supported units: `benoit-1895-b-chain`,`centimeter`,`clarke-foot`,`clarke-link`,`clarke-yard`,`decimeter`,`foot`,`gold-coast-foot`,`indian-1937-yard`,`indian-yard`,`kilometer`,`meter`,`millimeter`,`sears-1922-truncated-chain`,`sears-chain`,`sears-foot`,`sears-yard`,`us-foot`,`us-inch`,`us-mile`,`us-yard`",
    "examples": [
      {
        "title": "heightModelInfo",
        "code": {
          "heightModelInfo": {
            "heightModel": "gravity_related_height",
            "heightUnit": "meter",
            "vertCRS": "EGM2008_Geoid"
          }
        }
      }
    ]
  }
}
