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 2fe1403cdb schema
2024-04-17 16:06:51 +03:00

22 lines
701 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."
},
"order": {
"type": "integer",
"description": "An order."
}
}
}
}