Definition of terms

...<snip>....

JSON output that is not relevant to the example

[ { } ]

Denotes an array of JSON objects

valueObject

A JSON object that has two keys namely, value and unit. Used for representing properties that have units.

{
    "value": 25.0,
    "unit": "°C"
}

valueObject with name

Similar to valueObject but with an extra name key. Used for giving extra information about the property.

{
    "name": "NAION",
    "value": 0.566,
    "unit": "mol"
}

Last updated