{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "bricks://global/color-palettes",
  "schemaVersion": "2.3",
  "title": "Bricks Color Palettes",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string"
      },
      "name": {
        "type": "string"
      },
      "colors": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "raw": {
              "type": "string"
            },
            "light": {
              "type": "string"
            },
            "dark": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "raw",
            "light"
          ],
          "additionalProperties": false
        }
      }
    },
    "required": [
      "id",
      "name",
      "colors"
    ],
    "additionalProperties": false
  }
}