53 lines
951 B
JSON
53 lines
951 B
JSON
{
|
|
"name": "Address",
|
|
"base": "PersistedModel",
|
|
"properties": {
|
|
"id": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"street": {
|
|
"type": "string",
|
|
"required": "true"
|
|
},
|
|
"consignee": {
|
|
"type": "string",
|
|
"required": "true"
|
|
},
|
|
"city": {
|
|
"type": "string",
|
|
"required": "true"
|
|
},
|
|
"postcode": {
|
|
"type": "string"
|
|
},
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"phone": {
|
|
"type": "string"
|
|
},
|
|
"mobile": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"relations": {
|
|
"agency": {
|
|
"type": "belongsTo",
|
|
"model": "Agency",
|
|
"foreignKey": "agencyId"
|
|
},
|
|
"country":{
|
|
"type": "belongsTo",
|
|
"model": "Country",
|
|
"foreignKey": "countryId"
|
|
},
|
|
"province":{
|
|
"type": "belongsTo",
|
|
"model": "Province",
|
|
"foreignKey": "provinceId"
|
|
}
|
|
}
|
|
}
|