Skip to content
KNSG edited this page Sep 6, 2019 · 1 revision

Summary

  • Weight data? by fitbit
  • File name starts with weight-****.json
  • File format: JSON

Data Specification(Presumption)

[{
  "logId" : 1507593599000,
  "weight" : 177.0,
  "bmi" : 26.22,
  "fat" : 23.0,
  "date" : "10/09/17",
  "time" : "23:59:59",
  "source" : "API"
}]
  • logId (int) : Unique ID for log data
  • weight (double) : weight value(pounds)
  • bmi (double) : BMI value
  • fat (double) : fat ratio(?)
  • date (string) : date string. format (MM/dd/YY)
  • time (string) : time string. format (HH:mm:ss)
  • source (string) : data source (web/API)