{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://visuals.thegr0ve.com/schemas/totem-registry.schema.json",
  "title": "Totem Registry Entry",
  "type": "object",
  "required": [
    "totem_id",
    "slug",
    "public_label",
    "description",
    "ui_region_behavior",
    "representative_atoms",
    "assignment_status"
  ],
  "properties": {
    "totem_id": { "type": "string" },
    "slug": { "type": "string" },
    "public_label": { "type": "string" },
    "internal_gr0ve_meaning": { "type": "string" },
    "description": { "type": "string" },
    "aliases": { "type": "array", "items": { "type": "string" } },
    "parent_totems": { "type": "array", "items": { "type": "string" } },
    "neighbor_totems": { "type": "array", "items": { "type": "string" } },
    "seo_keywords": { "type": "array", "items": { "type": "string" } },
    "pinterest_board_mirror": { "type": "string" },
    "pinterest_board_section_mirrors": { "type": "array", "items": { "type": "string" } },
    "ui_region_behavior": {
      "type": "object",
      "properties": {
        "feed_weight": { "type": "number" },
        "default_color": { "type": "string" },
        "texture_hint": { "type": "string" }
      },
      "additionalProperties": false
    },
    "representative_atoms": { "type": "array", "items": { "type": "string" } },
    "assignment_status": { "type": "string", "enum": ["neutral", "accepted", "ratified", "retired"] },
    "review_pressure": { "type": "string" },
    "notes": { "type": "string" }
  },
  "additionalProperties": false
}
