dev.baileytownsend.health.rings

baileytownsend.dev

Documentation

A record of daily activity rings (Apple Fitness), including move, exercise, and stand goals.

main record

A record of daily activity rings (Apple Fitness), including move, exercise, and stand goals.

Record Key any Any valid record key

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

exercise integer Required

The total minutes of exercise completed.

exerciseGoal integer Required

The daily exercise goal in minutes.

move integer Required

The total active calories burned for the day.

moveGoal integer Required

The daily move goal in calories.

standGoal integer Required

The daily stand goal in hours.

standHours integer Required

The number of hours the user stood up and moved around.

View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "move",
      "moveGoal",
      "exercise",
      "exerciseGoal",
      "standHours",
      "standGoal",
      "createdAt"
    ],
    "properties": {
      "move": {
        "type": "integer",
        "description": "The total active calories burned for the day."
      },
      "exercise": {
        "type": "integer",
        "description": "The total minutes of exercise completed."
      },
      "moveGoal": {
        "type": "integer",
        "description": "The daily move goal in calories."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "standGoal": {
        "type": "integer",
        "description": "The daily stand goal in hours."
      },
      "standHours": {
        "type": "integer",
        "description": "The number of hours the user stood up and moved around."
      },
      "exerciseGoal": {
        "type": "integer",
        "description": "The daily exercise goal in minutes."
      }
    }
  },
  "description": "A record of daily activity rings (Apple Fitness), including move, exercise, and stand goals."
}

Lexicon Garden

@