Get the description of a field
Get the description of a field by using the GetFieldDescription method.
Example
The client sends:
{ "jsonrpc": "2.0"
"id": 27,
"handle": 1,
"method": "GetFieldDescription",
"params": {
"qFieldName": "ShipperID"
},
}
The engine returns:
{
"jsonrpc": "2.0",
"id": 27,
"result": {
"qReturn": {
"qInternalNumber": 30,
"qName": "ShipperID",
"qSrcTables": [
"Orders",
"Shippers"
],
"qCardinal": 3,
"qTotalCount": 17,
"qIsNumeric": true,
"qTags": [
"$key",
"$numeric",
"$integer"
]
}
}
}
The field ShipperID belongs to the tables Shippers and Orders.