{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "additionalProperties": true,
  "$id": "https://visuals.thegr0ve.com/schemas/visual-atom-projection.schema.json",
  "title": "Visual Atom Projection Record",
  "required": [
    "document_type",
    "projection_id",
    "status",
    "parent_atom_id",
    "projection_type",
    "target_surface",
    "medium",
    "gate_state"
  ],
  "properties": {
    "document_type": {
      "const": "visual_atom_projection_record"
    },
    "projection_id": {
      "type": "string",
      "pattern": "^VAPR-[0-9]{8}-[A-Z0-9-]+$"
    },
    "status": {
      "type": "string"
    },
    "parent_atom_id": {
      "type": "string"
    },
    "projection_type": {
      "type": "string"
    },
    "target_surface": {
      "type": "string"
    },
    "medium": {
      "type": "string"
    },
    "gate_state": {
      "type": "object"
    },
    "lineage": {
      "type": "object"
    }
  }
}
