Files
espocrm/schema/metadata/app/fieldProcessing.json
Yuri Kuznetsov 50a91836e8 schema
2023-05-27 11:44:41 +03:00

31 lines
1.3 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/app/fieldProcessing.json",
"title": "app/fieldProcessing",
"description": "Definitions for the Field Processing framework.",
"type": "object",
"properties": {
"readLoaderClassNameList": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of loader classes. Load additional fields when reading a record. Applied globally for all entity types. Should implement Espo\\Core\\FieldProcessing\\Loader."
},
"listLoaderClassNameList": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of loader classes for lists. Load additional fields when reading a list of record. Applied globally for all entity types. Should implement Espo\\Core\\FieldProcessing\\Loader."
},
"saverClassNameList": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of saver classes. Save additional fields. Applied globally for all entity types. Should implement Espo\\Core\\FieldProcessing\\Saver."
}
}
}