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/layouts.json
T
2023-11-29 10:26:12 +02:00

27 lines
734 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/app/layouts.json",
"title": "app/layouts",
"description": "Layouts.",
"type": "object",
"propertyNames": {
"anyOf": [
{"type": "string"}
]
},
"additionalProperties": {
"type": "object",
"description": "A scope name.",
"additionalProperties": {
"type": "object",
"description": "A layout name.",
"properties": {
"module": {
"type": "string",
"description": "A module in which the layout is located."
}
}
}
}
}