app.fitsky.goal
Schema Diff
+2 -2
1
1
{
2
2
"id": "app.fitsky.goal",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"metric",
11
11
"targetValue",
12
12
"period",
13
13
"startDate",
14
14
"createdAt"
15
15
],
16
16
"properties": {
17
17
"metric": {
18
18
"type": "string",
19
19
"maxLength": 64,
20
20
"knownValues": [
21
21
"distance",
22
22
"workouts",
23
23
"duration",
24
-
"calories"
24
+
"pace"
25
25
]
26
26
},
27
27
"period": {
28
28
"type": "string",
29
29
"maxLength": 64,
30
30
"knownValues": [
31
31
"weekly",
32
32
"monthly",
33
33
"yearly"
34
34
]
35
35
},
36
36
"endDate": {
37
37
"type": "string",
38
38
"format": "datetime"
39
39
},
40
40
"createdAt": {
41
41
"type": "string",
42
42
"format": "datetime"
43
43
},
44
44
"startDate": {
45
45
"type": "string",
46
46
"format": "datetime"
47
47
},
48
48
"targetValue": {
49
49
"type": "integer",
50
50
"minimum": 0,
51
-
"description": "Target value in base units (meters for distance, seconds for duration, calories for calories, count for workouts)"
51
+
"description": "Target value in base units (meters for distance, seconds for duration, seconds-per-km for pace, count for workouts)"
52
52
}
53
53
}
54
54
},
55
55
"description": "A fitness goal to track progress against"
56
56
}
57
57
},
58
58
"$type": "com.atproto.lexicon.schema",
59
59
"lexicon": 1
60
60
}