{
  "title": "PointCloud RGB Renderer",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "PointCloudRGBRenderer defines the color of each point in a PointCloudLayer based on the value of a color attribute.",
  "properties": {
    "colorModulation": {
      "description": "",
      "$ref": "colorModulationInfo_schema.json"
    },
    "field": {
      "type": "string",
      "description": "The name of the field that is used for the renderer."
    },
    "pointSizeAlgorithm": {
      "description": "",
      "$ref": "pointSizeAlgorithm_schema.json"
    },
    "pointsPerInch": {
      "type": "number",
      "description": "Number of point to draw per display inch."
    },
    "type": {
      "type": "string",
      "description": "Specifies the type of renderer used.",
      "enum": [
        "pointCloudRGBRenderer"
      ]
    }
  },
  "required": [
    "field",
    "type"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "pointCloudRGBRenderer",
        "description": "",
        "code": {
          "renderer": {
            "type": "pointCloudRGBRenderer",
            "field": "RGB",
            "pointsPerInch": 10
          }
        }
      }
    ]
  }
}
