1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17{
"$id": "https://raw.githubusercontent.com/yairm210/Unciv/refs/heads/master/docs/Modders/schemas/refs/Color.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Color",
"description": "An RGB color represented as an array of three integers (0-255).",
"type": "array",
"minItems": 3,
"maxItems": 3,
"items": {
"title": "Color Component",
"description": "An individual RGB color component from 0 to 255.",
"type": "integer",
"minimum": 0,
"maximum": 255
}
}