Value of a single property over a range of molecule indices.
| name | data type | description |
|---|---|---|
| start | number | Molecule index of the first element in the values array. |
| count | number | Number of values in the values array. |
| presentcount | number | Number of present values in the values array. |
| missingcount | number | Number of missing values in the values array. |
| missingvalue | object | Value returned for missing items. |
| values | array of object | Value of the property. Missing values are represented as missingValue. |
Example
{
"start" : 12345,
"count" : 12345,
"presentcount" : 12345,
"missingcount" : 12345,
"missingvalue" : { },
"values" : [ { }, { } ]
}