Files
espocrm/schema/metadata/app/containerServices.json
Tomáš Procházka 19fe743c1c Fixes json schema
2025-06-19 22:54:24 +02:00

26 lines
978 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.espocrm.com/schema/metadata/app/containerServices.json",
"title": "app/containerServices",
"description": "Definitions of container services. https://docs.espocrm.com/development/di/#container-services",
"type": "object",
"additionalProperties": {
"type": "object",
"description": "A service name.",
"properties": {
"className": {
"type": "string",
"description": "A service class."
},
"loaderClassName": {
"type": "string",
"description": "A service loader class. Should implement Espo\\Core\\Container\\Loader interface."
},
"settable": {
"type": "boolean",
"description": "Whether the service can be set to the container externally (with the `set` method)."
}
}
}
}