BLEScanRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
scanningMode string
serviceUuidFilter array Filter by service UUIDs
signalStrengthFilter object
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-blescanrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BLEScanRequest",
  "title": "BLEScanRequest",
  "type": "object",
  "properties": {
    "scanningMode": {
      "type": "string",
      "enum": [
        "Passive",
        "Active"
      ],
      "default": "Active"
    },
    "serviceUuidFilter": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Filter by service UUIDs"
    },
    "signalStrengthFilter": {
      "type": "object",
      "properties": {
        "inRangeThresholdInDBm": {
          "type": "integer"
        },
        "outOfRangeThresholdInDBm": {
          "type": "integer"
        }
      }
    }
  }
}