social.pace.feed.defs

baileytownsend.dev

Documentation

activityType string

The type of activity being recorded. List taken from Apple Health Activities mostly

ConstraintsmaxLength: 50 bytes
Known Values (other values may be valid)
Running Walking Cycling Hiking Swimming Yoga Functional Training Strength Training Elliptical Rowing Stair Climbing Dancing Golf Tennis Basketball Soccer Baseball Football Skiing Snowboarding Climbing Boxing Martial Arts Jump Rope Pilates Cross Training Mixed Cardio HIIT Core Training Flexibility Cooldown Wheelchair Walk Wheelchair Run Pickleball Skating Other Workout Activity
View raw schema
{
  "type": "string",
  "maxLength": 50,
  "description": "The type of activity being recorded. List taken from Apple Health Activities mostly",
  "knownValues": [
    "Running",
    "Walking",
    "Cycling",
    "Hiking",
    "Swimming",
    "Yoga",
    "Functional Training",
    "Strength Training",
    "Elliptical",
    "Rowing",
    "Stair Climbing",
    "Dancing",
    "Golf",
    "Tennis",
    "Basketball",
    "Soccer",
    "Baseball",
    "Football",
    "Skiing",
    "Snowboarding",
    "Climbing",
    "Boxing",
    "Martial Arts",
    "Jump Rope",
    "Pilates",
    "Cross Training",
    "Mixed Cardio",
    "HIIT",
    "Core Training",
    "Flexibility",
    "Cooldown",
    "Wheelchair Walk",
    "Wheelchair Run",
    "Pickleball",
    "Skating",
    "Other Workout",
    "Activity"
  ]
}
split object

A split within an activity, like a mile split or kilometer split.

Properties

distance string Required

The distance covered in this split. Follows the units defined in the parent.

duration integer Required

The duration of the split in seconds.

order integer Required

The order of the split within the activity, starting at 1.

View raw schema
{
  "type": "object",
  "required": [
    "order",
    "distance",
    "duration"
  ],
  "properties": {
    "order": {
      "type": "integer",
      "description": "The order of the split within the activity, starting at 1."
    },
    "distance": {
      "type": "string",
      "description": "The distance covered in this split. Follows the units defined in the parent."
    },
    "duration": {
      "type": "integer",
      "description": "The duration of the split in seconds."
    }
  },
  "description": "A split within an activity, like a mile split or kilometer split."
}

Lexicon Garden

@