cartodb-4.42/lib/formats/legends/definitions/torque.json

38 lines
742 B
JSON
Raw Normal View History

2024-04-06 13:25:13 +08:00
{
"type": "object",
"additionalProperties": false,
"anyOf": [
{ "required": ["categories"] },
{ "required": ["html"] }
],
"properties": {
"categories": {
"type": "array",
"required": [
"title"
],
"additionalProperties": false,
"items": {
"type": "object",
"required": [
"title"
],
"additionalProperties": false,
"properties": {
"title": {
"type": "string"
},
"color": {
"type": "string",
"pattern": "^#(?:[0-9a-fA-F]{3}){1,2}$"
},
"icon": {
"type": "string"
}
}
}
},
"html": { "type": "string" }
}
}