51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "SupplierAddress",
|
|
"description": "Supplier addresses",
|
|
"base": "Loggable",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "supplierAddress"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"nickname": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"street": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"city": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"postalCode": {
|
|
"type": "string"
|
|
},
|
|
"phone": {
|
|
"type": "string"
|
|
},
|
|
"mobile": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"relations": {
|
|
"province": {
|
|
"type": "belongsTo",
|
|
"model": "Province",
|
|
"foreignKey": "provinceFk"
|
|
},
|
|
"supplier": {
|
|
"type": "belongsTo",
|
|
"model": "Supplier",
|
|
"foreignKey": "supplierFk"
|
|
}
|
|
}
|
|
}
|