Files
espocrm/schema/metadata/app/complexExpression.json
Yuri Kuznetsov bff4002cad schema
2023-05-26 13:39:29 +03:00

38 lines
1.3 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/app/complexExpression.json",
"title": "app/complexExpression",
"description": "Definitions for the complex expression editor.",
"type": "object",
"properties": {
"functionList": {
"type": "array",
"description": "Functions available in the editor when editing a complex expression.",
"items": {
"anyOf": [
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "A name."
},
"insertText": {
"type": "string",
"description": "A text to insert in the editor."
},
"returnType": {
"type": "string",
"description": "A return type."
}
}
},
{
"enum": ["__APPEND__"]
}
]
}
}
}
}