GattService

A GATT service on a BLE device

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
uuid string Service UUID
name string Standard service name (if known)
characteristicCount integer
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-gattservice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GattService",
  "title": "GattService",
  "type": "object",
  "description": "A GATT service on a BLE device",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "Service UUID"
    },
    "name": {
      "type": "string",
      "description": "Standard service name (if known)"
    },
    "characteristicCount": {
      "type": "integer"
    }
  }
}