This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/schema/metadata/app/clientNavbar.json
T
2023-11-07 17:35:41 +02:00

39 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": {
"itemList": {
"type": "array",
"description": "Navbar items.",
"items": {
"type": "string",
"anyOf": [
{"type": "string"},
{"const": "__APPEND__"}
]
}
},
"itemDefs": {
"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."
}
}
}
}
}
}