{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://rig.works/schemas/rig.cad.cylinder.schema.json",
  "title": "rig.cad.cylinder",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "radius": {
      "$ref": "./_defs.schema.json#/$defs/float"
    },
    "height": {
      "$ref": "./_defs.schema.json#/$defs/float"
    },
    "circularSegments": {
      "type": "integer",
      "minimum": 3
    },
    "center": {
      "$ref": "./_defs.schema.json#/$defs/bool"
    }
  },
  "required": [
    "radius",
    "height"
  ]
}
