salix/modules/client/back/models/customs-agent.json

33 lines
648 B
JSON
Raw Permalink Normal View History

2020-01-23 13:59:37 +00:00
{
"name": "CustomsAgent",
"base": "VnModel",
"options": {
"mysql": {
"table": "customsAgent"
}
},
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
2020-01-23 13:59:37 +00:00
"description": "Identifier",
"id": true
},
"fiscalName": {
2022-05-12 07:47:47 +00:00
"type": "string",
2020-01-23 13:59:37 +00:00
"required": true
},
"street": {
2022-05-12 07:47:47 +00:00
"type": "string"
2020-01-23 13:59:37 +00:00
},
"nif": {
2022-05-12 07:47:47 +00:00
"type": "string",
2020-01-23 13:59:37 +00:00
"required": true
},
"phone": {
2022-05-12 07:47:47 +00:00
"type": "string"
2020-01-23 13:59:37 +00:00
},
"email": {
2022-05-12 07:47:47 +00:00
"type": "string"
2020-01-23 13:59:37 +00:00
}
}
}