@o3r/configuration
Version:
This module contains configuration-related features such as CMS compatibility, Configuration override, store and debugging. It enables your application runtime configuration and comes with an integrated ng builder to help you generate configurations suppo
35 lines (34 loc) • 773 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "RulesActionUpdateConfigBlock",
"type": "object",
"description": "Content of action that updates the configuration",
"properties": {
"actionType": {
"type": "string",
"description": "Action Type",
"const": "UPDATE_CONFIG"
},
"library": {
"type": "string",
"description": "Library of the component"
},
"component": {
"type": "string",
"description": "name of the component"
},
"property": {
"type": "string",
"description": "name of the config property to update"
},
"value": {}
},
"additionalItems": false,
"required": [
"actionType",
"library",
"component",
"property",
"value"
]
}