PedometerReading

Pedometer reading data

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
cumulativeSteps integer Total step count
stepKind string Type of step
cumulativeStepsDuration string Duration of steps
timestamp string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-pedometerreading-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PedometerReading",
  "title": "PedometerReading",
  "type": "object",
  "description": "Pedometer reading data",
  "properties": {
    "cumulativeSteps": {
      "type": "integer",
      "description": "Total step count"
    },
    "stepKind": {
      "type": "string",
      "enum": [
        "Unknown",
        "Walking",
        "Running"
      ],
      "description": "Type of step"
    },
    "cumulativeStepsDuration": {
      "type": "string",
      "description": "Duration of steps"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    }
  }
}