mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://www.espocrm.com/schema/metadata/app/client.json",
|
|
"title": "app/navbar",
|
|
"description": "Navbar definitions.",
|
|
"type": "object",
|
|
"properties": {
|
|
"items": {
|
|
"description": "Navbar item definitions",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"description": "An item.",
|
|
"type": "object",
|
|
"properties": {
|
|
"view": {
|
|
"type": "string",
|
|
"description": "A view."
|
|
},
|
|
"class": {
|
|
"type": "string",
|
|
"description": "A CSS class."
|
|
},
|
|
"order": {
|
|
"type": "integer",
|
|
"description": "An order position."
|
|
},
|
|
"disabled": {
|
|
"type": "boolean",
|
|
"description": "To disable."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|