Containers : 12 Container: Fields
 
12 Container: Fields
The Fields container is represented by a JSON object containing a series of field value pairs.
The name attribute is the name of the field as defined by the field dictionary in use by the Refinitiv Real-Time Advanced Distribution Server. The value of the attribute may be a numeric, string, or other container type.
For example:
 
 
"Fields": {
    "BID": 40.74,
    "ASK": 40.75,
    "BIDSIZE": 63,
    "ASKSIZE": 223,
    "QUOTIM": "19:50:05:000:000:000"
}
 
Another example with fields set to null:
 
 
"Fields": {
    "BID": null,
    "ASK": null,
    "BIDSIZE": null,
    "ASKSIZE": null,
    "QUOTIM": null
}
 
A blank, or empty, Fields attribute is represented by the JSON keyword null.
 
 
"Fields": null