-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathzwofactory-schema.json
More file actions
89 lines (77 loc) · 2.33 KB
/
zwofactory-schema.json
File metadata and controls
89 lines (77 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "WorkoutExport",
"type": "object",
"properties": {
"myWorkoutInfo": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"modifiedOn": {
"type": "string",
"format": "date-time"
}
},
"required": ["name", "modifiedOn"],
"additionalProperties": false
}
}
},
"patternProperties": {
"^workout:.*$": {
"type": "object",
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"author": { "type": "string" },
"tags": {
"type": "array",
"items": { "type": "string" }
},
"segments": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"t": {
"type": "string",
"enum": ["r", "s", "i", "f"]
},
"p1": { "type": ["number", "string"] },
"d1": { "type": ["number", "string"] },
"p2": { "type": ["number", "string"] },
"d2": { "type": ["number", "string"] },
"r": { "type": ["number", "string"] },
"c1": { "type": ["number", "string"] },
"c2": { "type": ["number", "string"] },
"avg": { "type": "boolean" },
"dfr": { "type": "boolean" },
"textEvents": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"text": { "type": "string" },
"offset": { "type": ["number", "string"] }
},
"required": ["id", "text", "offset"],
"additionalProperties": false
}
}
},
"required": ["id", "t", "d1", "textEvents"],
"additionalProperties": false
}
}
},
"required": ["name", "description", "author", "tags", "segments"],
"additionalProperties": false
}
},
"required": ["myWorkoutInfo"],
"additionalProperties": false
}