Properties
| Name | Type | Description |
|---|---|---|
| operating_system | string | Operating System |
| operator | string | Operator |
| os_distro_name | string | Operating System Distribution Name (linux only) |
| os_distro_revision | string | Version of OS Distribution (linux only) |
| os_version_extra | string | Additional version data. For Mac or iOS, the Product Verison Extra. For Linux, the kernel release version. (Mac, iOS, and Linux only) |
| version | string | Version of OS |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/teams-devices_os_version_input_request",
"title": "OS Version",
"properties": {
"operating_system": {
"description": "Operating System",
"enum": [
"windows"
],
"example": "windows",
"type": "string"
},
"operator": {
"description": "Operator",
"enum": [
"<",
"<=",
">",
">=",
"=="
],
"example": "13.3.0",
"type": "string"
},
"os_distro_name": {
"description": "Operating System Distribution Name (linux only)",
"example": "ubuntu",
"type": "string"
},
"os_distro_revision": {
"description": "Version of OS Distribution (linux only)",
"example": "11.3.1",
"type": "string"
},
"os_version_extra": {
"description": "Additional version data. For Mac or iOS, the Product Verison Extra. For Linux, the kernel release version. (Mac, iOS, and Linux only)",
"example": "(a) or -1007",
"type": "string"
},
"version": {
"description": "Version of OS",
"example": "13.3.0",
"type": "string"
}
},
"required": [
"operating_system",
"version",
"operator"
],
"type": "object"
}