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/cleanup.json
T
Yuri Kuznetsov bff4002cad schema
2023-05-26 13:39:29 +03:00

18 lines
585 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/app/cleanup.json",
"title": "app/cleanup",
"description": "Defines cleaning up classes. Fired by the Cleanup job.",
"type": "object",
"additionalProperties": {
"type": "object",
"description": "A name.",
"properties": {
"className": {
"type": "string",
"description": "An implementation class. Should implement Espo\\Core\\Cleanup\\Cleanup interface."
}
}
}
}