Special Segmentation Format: os
The os value is made up of 3 granularity levels - platform, version, and edition. A particular level needs to be selected, and this is to be included in the property name such as os.version or os.edition. For a description of the differences between the 3 granularity levels, refer to Special Filter: os.
The following example requests data segmented by all OS versions:
{
"segmentBy": "os.version",
"segments": [
{
"type": "regex",
"value": ".*",
"split": true
}
]
}
In the above example, no filtering is being done, and instead, a regular expression to include everything is set as the value. This will result in all OS versions to be returned.