loopback-workspace
Version:
**⚠️ LoopBack 3 is in Maintenance LTS mode, only critical bugs and critical security fixes will be provided. (See [Module Long Term Support Policy](#module-long-term-support-policy) below.)**
37 lines (36 loc) • 643 B
JSON
{
"name": "ComponentConfig",
"base": "Definition",
"defaultConfigFile": "component-config.json",
"configFiles": [
"component-config.json",
"component-config.*.json"
],
"validateUpsert": true,
"properties": {
"id": {
"type": "string",
"id": true,
"json": false
},
"facetName": {
"type": "string",
"required": true,
"json": false
},
"name": {
"type": "string",
"json": false
},
"value": {
"type": "any"
}
},
"relations": {
"facet": {
"type": "belongsTo",
"model": "Facet",
"foreignKey": "facetName"
}
}
}