{
  "title": "FillSymbol3DLayer",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "FillSymbol3DLayer is used to render the surfaces of flat 2D Polygon geometries and 3D volumetric meshes in a SceneView.",
  "properties": {
    "castShadows": {
      "type": "boolean",
      "description": "Boolean to control the shadow casting behaviour of the rendered geometries.",
      "default": true
    },
    "edges": {
      "type": "object",
      "description": "Specifies an edge visualization style. Only affects MeshSymbol3D.",
      "$ref": "edges_schema.json"
    },
    "enable": {
      "type": "boolean"
    },
    "material": {
      "$ref": "materialColorMixMode_schema.json"
    },
    "outline": {
      "$ref": "outline_schema.json"
    },
    "type": {
      "type": "string",
      "description": "Specifies the type of symbol used.",
      "enum": [
        "Fill"
      ]
    }
  },
  "required": [
    "material",
    "type"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "Fill SymbolLayer",
        "code": {
          "symbolLayers": [
            {
              "type": "Fill",
              "material": {
                "color": [
                  255,
                  0,
                  0
                ],
                "colorMixMode": "replace"
              }
            }
          ]
        }
      }
    ]
  }
}
