Files
espocrm/schema/metadata/app/select.json
Yuri Kuznetsov 5023a58cc1 schema
2023-05-27 13:59:52 +03:00

31 lines
1.1 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/app/select.json",
"title": "app/select",
"description": "Select framework definitions.",
"type": "object",
"properties": {
"boolFilterClassNameMap": {
"type": "object",
"description": "Bool filters available for all entity types. Should implement Espo\\Core\\Select\\Bool\\Filter.",
"additionalProperties": {
"type": "string"
}
},
"orderItemConverterClassNameMap": {
"type": "object",
"description": "Order item converters for field types. Should implement Espo\\Core\\Select\\Order\\ItemConverter.",
"additionalProperties": {
"type": "string"
}
},
"whereItemConverterClassNameMap": {
"type": "object",
"description": "Where item converters. Should implement Espo\\Core\\Select\\Where\\ItemConverter.",
"additionalProperties": {
"type": "string"
}
}
}
}