41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Stats Block",
|
|
"description": "Display statistics with labels and values",
|
|
"type": "object",
|
|
"properties": {
|
|
"items": {
|
|
"type": "array",
|
|
"title": "Statistics",
|
|
"description": "List of statistic items to display",
|
|
"x-editor": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"value": {
|
|
"type": "string",
|
|
"title": "Value",
|
|
"description": "The statistic value (e.g., '100+', '99%')",
|
|
"x-editor": "text"
|
|
},
|
|
"label": {
|
|
"type": "string",
|
|
"title": "Label",
|
|
"description": "Description of the statistic",
|
|
"x-editor": "text"
|
|
},
|
|
"icon": {
|
|
"type": "string",
|
|
"title": "Icon",
|
|
"description": "Icon name (chart, users, clock, star)",
|
|
"x-editor": "select",
|
|
"enum": ["", "chart", "users", "clock", "star"]
|
|
}
|
|
},
|
|
"required": ["value", "label"]
|
|
}
|
|
}
|
|
},
|
|
"required": []
|
|
}
|