{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://mejohnc.org/territories/schema.json",
  "title": "Territories tokens v1",
  "type": "object",
  "required": [
    "schemaVersion",
    "revision",
    "styleId",
    "name",
    "scope",
    "color",
    "typography",
    "spacing",
    "border",
    "shadow",
    "layout",
    "motion",
    "decoration"
  ],
  "properties": {
    "schemaVersion": {
      "const": "1.0.0"
    },
    "revision": {
      "type": "string"
    },
    "styleId": {
      "type": "string",
      "enum": [
        "aurora",
        "pixel-art",
        "japandi",
        "bauhaus",
        "brutalism",
        "bento-box",
        "utilitarian",
        "neo-frutiger-aero",
        "glassmorphism",
        "neo-brutalism",
        "luxury-typography",
        "memphis",
        "art-deco",
        "pop-art",
        "mid-century",
        "modular-typography",
        "retro-y2k",
        "cybercore",
        "synthwave",
        "vaporwave",
        "coquette",
        "dark-academia",
        "light-academia",
        "anthropomorphic",
        "bohemian",
        "shabby-chic",
        "cottagecore",
        "wabi-sabi",
        "neoclassical",
        "baroque",
        "victorian",
        "art-nouveau",
        "gothic",
        "steampunk",
        "ethereal",
        "filigree",
        "acanthus",
        "conceptual-sketch",
        "tenebrism",
        "pointillism",
        "mixed-media",
        "surrealism",
        "mystical-western",
        "kitsch",
        "graffiti",
        "scrapbook",
        "southwest",
        "nautical",
        "rebus",
        "kawaii"
      ]
    },
    "name": {
      "type": "string"
    },
    "scope": {
      "type": "string"
    },
    "color": {
      "type": "object",
      "required": [
        "surface",
        "text",
        "accent",
        "onAccent",
        "border"
      ],
      "additionalProperties": {
        "type": "string",
        "pattern": "^#[0-9a-fA-F]{6}$"
      }
    },
    "typography": {
      "type": "object",
      "required": [
        "display",
        "heading",
        "body",
        "caption"
      ],
      "additionalProperties": {
        "type": "object",
        "required": [
          "family",
          "size",
          "weight",
          "lineHeight"
        ],
        "properties": {
          "family": {
            "type": "string"
          },
          "size": {
            "type": "string"
          },
          "weight": {
            "type": "number"
          },
          "lineHeight": {
            "type": "number"
          }
        }
      }
    },
    "spacing": {
      "type": "object",
      "required": [
        "unit",
        "control",
        "section",
        "page"
      ],
      "additionalProperties": {
        "type": "string"
      }
    },
    "border": {
      "type": "object",
      "required": [
        "width",
        "radius"
      ],
      "additionalProperties": {
        "type": "string"
      }
    },
    "shadow": {
      "type": "string"
    },
    "layout": {
      "type": "object",
      "required": [
        "readingMeasure",
        "collapseAt",
        "minimumControlHeight"
      ],
      "additionalProperties": {
        "type": "string"
      }
    },
    "motion": {
      "type": "object",
      "required": [
        "duration",
        "reducedMotion"
      ],
      "additionalProperties": {
        "type": "string"
      }
    },
    "decoration": {
      "type": "object",
      "required": [
        "treatment",
        "scope"
      ],
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}
