A record of daily intake and burned calories.
Record Key
any
Any valid record key
Properties
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"intake",
"burned",
"createdAt"
],
"properties": {
"burned": {
"type": "integer"
},
"intake": {
"type": "integer"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A record of daily intake and burned calories."
}