{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://rig.works/schemas/rig.spatial.anchor.schema.json",
  "title": "rig.spatial.anchor",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "point": {
      "type": "string",
      "enum": [
        "top-left",
        "top-center",
        "top-right",
        "middle-left",
        "center",
        "middle-right",
        "bottom-left",
        "bottom-center",
        "bottom-right"
      ]
    },
    "height": {
      "type": "string",
      "enum": [
        "min",
        "center",
        "max"
      ]
    },
    "offset": {
      "$ref": "./_defs.schema.json#/$defs/vec2"
    }
  },
  "required": [
    "point"
  ]
}
