Files
espocrm/schema/metadata/app/consoleCommands.json
Yuri Kuznetsov 0d04aedd00 schema doc
2023-08-24 14:37:32 +03:00

22 lines
764 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/consoleCommands",
"$id": "https://www.espocrm.com/schema/metadata/app/consoleCommands.json",
"title": "app/appParams",
"description": "Console commands.",
"type": "object",
"additionalProperties": {
"type": "object",
"description": "A command name. In camelCase format.",
"properties": {
"className": {
"type": "string",
"description": "An implementation class name. Should implement Espo\\Core\\Console\\Command interface."
},
"listed": {
"type": "boolean",
"description": "Whether the command is listed when running bin/command."
}
}
}
}