> For the complete documentation index, see [llms.txt](https://devdocs.olisystems.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://devdocs.olisystems.com/terms-definition.md).

# 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.

```javascript
{
    "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.

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