Custom Device Posture Integration Input

APIs.ioEngineeringPlatform

Properties

Name Type Description
connection_id string Posture Integration ID.
operator string operator
score number A value between 0-100 assigned to devices set by the 3rd party posture provider.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-teams-devices-custom-s2s-input-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/teams-devices_custom_s2s_input_request",
  "title": "Custom Device Posture Integration Input",
  "properties": {
    "connection_id": {
      "description": "Posture Integration ID.",
      "example": "bc7cbfbb-600a-42e4-8a23-45b5e85f804f",
      "type": "string"
    },
    "operator": {
      "description": "operator",
      "enum": [
        "<",
        "<=",
        ">",
        ">=",
        "=="
      ],
      "example": ">",
      "type": "string"
    },
    "score": {
      "description": "A value between 0-100 assigned to devices set by the 3rd party posture provider.",
      "example": 100,
      "type": "number"
    }
  },
  "required": [
    "connection_id",
    "score",
    "operator"
  ],
  "type": "object"
}