Properties
| Name | Type | Description |
|---|---|---|
| connection_id | string | Posture Integration ID. |
| eid_last_seen | string | For more details on eid last seen, refer to the Tanium documentation. |
| operator | string | Operator to evaluate risk_level or eid_last_seen. |
| risk_level | string | For more details on risk level, refer to the Tanium documentation. |
| scoreOperator | string | Score Operator |
| total_score | number | For more details on total score, refer to the Tanium documentation. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/teams-devices_tanium_input_request",
"title": "Tanium S2S Input",
"properties": {
"connection_id": {
"description": "Posture Integration ID.",
"example": "bc7cbfbb-600a-42e4-8a23-45b5e85f804f",
"type": "string"
},
"eid_last_seen": {
"description": "For more details on eid last seen, refer to the Tanium documentation.",
"example": "2023-07-20T23:16:32Z",
"type": "string"
},
"operator": {
"description": "Operator to evaluate risk_level or eid_last_seen.",
"enum": [
"<",
"<=",
">",
">=",
"=="
],
"example": ">",
"type": "string"
},
"risk_level": {
"description": "For more details on risk level, refer to the Tanium documentation.",
"enum": [
"low",
"medium",
"high",
"critical"
],
"example": "low",
"type": "string"
},
"scoreOperator": {
"description": "Score Operator",
"enum": [
"<",
"<=",
">",
">=",
"=="
],
"example": ">",
"type": "string"
},
"total_score": {
"description": "For more details on total score, refer to the Tanium documentation.",
"example": 1,
"type": "number"
}
},
"required": [
"connection_id"
],
"type": "object"
}