{
  "title": "PointSymbol3D",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "PointSymbol3D is used to render features with Point geometry in a 3D SceneView.",
  "properties": {
    "callout": {
      "$ref": "callout_schema.json"
    },
    "styleOrigin": {
      "$ref": "styleOrigin_schema.json"
    },
    "symbolLayers": {
      "type": "array",
      "description": "A Collection of Symbol3DLayer objects used to visualize the graphic or feature.",
      "items": {
        "oneOf": [
          {
            "$ref": "iconSymbol3DLayer_schema.json"
          },
          {
            "$ref": "objectSymbol3DLayer_schema.json"
          }
        ]
      }
    },
    "type": {
      "type": "string",
      "description": "Specifies the type of symbol used",
      "enum": [
        "PointSymbol3D"
      ]
    },
    "verticalOffset": {
      "$ref": "verticalOffset_schema.json"
    }
  },
  "required": [
    "symbolLayers",
    "type"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "Point Symbol 3D",
        "code": {
          "symbol": {
            "type": "PointSymbol3D",
            "symbolLayers": [
              {
                "width": 30000,
                "height": 160000,
                "resource": {
                  "primitive": "cylinder"
                },
                "type": "Object",
                "material": {
                  "color": [
                    0,
                    255,
                    0
                  ]
                }
              }
            ]
          }
        }
      },
      {
        "title": "Icon Point Symbol with verticalOffset and leader line callout",
        "code": {
          "symbol": {
            "type": "PointSymbol3D",
            "symbolLayers": [
              {
                "size": 16,
                "resource": {
                  "primitive": "circle"
                },
                "type": "Icon",
                "material": {
                  "color": [
                    0,
                    255,
                    0
                  ]
                }
              }
            ],
            "callout": {
              "type": "line",
              "color": [
                255,
                255,
                255
              ],
              "size": 0.75,
              "border": {
                "color": [
                  50,
                  50,
                  50
                ]
              }
            },
            "verticalOffset": {
              "screenLength": 100,
              "maxWorldLength": 600,
              "minWorldLength": 10
            }
          }
        }
      }
    ]
  }
}
