{
  "title": "Filter mode wire frame",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "Draw elements of this filter block in wireframe mode. This mode draws only the edges of the features with the specified edge style.",
  "properties": {
    "edges": {
      "type": "object",
      "description": "An object defining edges of a feature.",
      "$ref": "edges_schema.json"
    },
    "type": {
      "type": "string",
      "description": "Declares filter mode of type wire frame.",
      "enum": [
        "wireFrame"
      ]
    }
  },
  "required": [
    "edges",
    "type"
  ],
  "additionalProperties": false
}
