28 lines
501 B
JSON
28 lines
501 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"code": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"symbol": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"decimal_points": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"active_flag": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"is_custom_flag": {
|
|
"type": ["null", "boolean"]
|
|
}
|
|
}
|
|
}
|