{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://rig.works/schemas/rig.cad.chamfer.schema.json",
  "title": "rig.cad.chamfer",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "distance": {
      "$ref": "./_defs.schema.json#/$defs/float"
    },
    "edges": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "required": [
          "a",
          "b"
        ],
        "properties": {
          "a": {
            "$ref": "./_defs.schema.json#/$defs/uint32"
          },
          "b": {
            "$ref": "./_defs.schema.json#/$defs/uint32"
          }
        }
      }
    },
    "allEdges": {
      "$ref": "./_defs.schema.json#/$defs/bool"
    }
  },
  "required": [
    "distance"
  ]
}
