{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://rig.works/schemas/rig.geometry.line.schema.json",
  "title": "rig.geometry.line",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "x1": {
      "$ref": "./_defs.schema.json#/$defs/float"
    },
    "y1": {
      "$ref": "./_defs.schema.json#/$defs/float"
    },
    "x2": {
      "$ref": "./_defs.schema.json#/$defs/float"
    },
    "y2": {
      "$ref": "./_defs.schema.json#/$defs/float"
    }
  },
  "required": [
    "x1",
    "y1",
    "x2",
    "y2"
  ]
}
