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.)**
33 lines (32 loc) • 546 B
JSON
{
"validateUpsert": true,
"properties": {
"id": {
"type": "string",
"id": true,
"json": false
},
"facetName": {
"type": "string",
"required": true,
"json": false
}
},
"public": true,
"dataSource": "db",
"options": {
"defaultConfigFile": "config.json",
"configFiles": [
"config.json",
"config.*.json"
]
},
"base": "Definition",
"relations": {
"facet": {
"type": "belongsTo",
"model": "Facet",
"foreignKey": "facetName"
}
}
}