{
  "title": "PointCloud Splat Algorithm",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "Render points using sizes depending on point density.",
  "properties": {
    "scaleFactor": {
      "type": "number",
      "description": "Scale factor to applied to the computed point size (in real world)"
    },
    "type": {
      "type": "string",
      "enum": [
        "pointCloudSplatAlgorithm"
      ]
    }
  },
  "required": [
    "scaleFactor",
    "type"
  ],
  "additionalProperties": false
}
