30 lines
775 B
JSON
30 lines
775 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Stat Item",
|
|
"description": "A single statistic with value, label, and optional icon",
|
|
"type": "object",
|
|
"properties": {
|
|
"value": {
|
|
"type": "string",
|
|
"title": "Value",
|
|
"description": "The statistic value (e.g., '100+', '99%')",
|
|
"default": "0",
|
|
"x-editor": "text"
|
|
},
|
|
"label": {
|
|
"type": "string",
|
|
"title": "Label",
|
|
"description": "Description of the statistic",
|
|
"default": "Stat Label",
|
|
"x-editor": "text"
|
|
},
|
|
"icon": {
|
|
"type": "string",
|
|
"title": "Icon",
|
|
"description": "Icon name (chart, users, clock, star)",
|
|
"x-editor": "select",
|
|
"enum": ["", "chart", "users", "clock", "star"]
|
|
}
|
|
}
|
|
}
|