26 lines
450 B
JSON
26 lines
450 B
JSON
|
{
|
||
|
"name": "Currency",
|
||
|
"base": "VnModel",
|
||
|
"options": {
|
||
|
"mysql": {
|
||
|
"table": "currency"
|
||
|
}
|
||
|
},
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "Number",
|
||
|
"id": true,
|
||
|
"description": "Identifier"
|
||
|
},
|
||
|
"code": {
|
||
|
"type": "String"
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "String"
|
||
|
},
|
||
|
"ratio": {
|
||
|
"type": "Number"
|
||
|
}
|
||
|
}
|
||
|
}
|