@murphai/contracts 0.1.15 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -674
- package/dist/automation.d.ts +185 -0
- package/dist/automation.d.ts.map +1 -0
- package/dist/automation.js +110 -0
- package/dist/automation.js.map +1 -0
- package/dist/bank-entities.d.ts +6 -1
- package/dist/bank-entities.d.ts.map +1 -1
- package/dist/bank-entities.js +87 -10
- package/dist/bank-entities.js.map +1 -1
- package/dist/constants.d.ts +8 -1
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +8 -0
- package/dist/constants.js.map +1 -1
- package/dist/current-profile.d.ts +16 -0
- package/dist/current-profile.d.ts.map +1 -0
- package/dist/current-profile.js +163 -0
- package/dist/current-profile.js.map +1 -0
- package/dist/event-lifecycle.d.ts +28 -0
- package/dist/event-lifecycle.d.ts.map +1 -0
- package/dist/event-lifecycle.js +84 -0
- package/dist/event-lifecycle.js.map +1 -0
- package/dist/examples.d.ts.map +1 -1
- package/dist/examples.js +50 -96
- package/dist/examples.js.map +1 -1
- package/dist/health-entities.d.ts +44 -1
- package/dist/health-entities.d.ts.map +1 -1
- package/dist/health-entities.js +181 -11
- package/dist/health-entities.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/memory.d.ts +123 -0
- package/dist/memory.d.ts.map +1 -0
- package/dist/memory.js +295 -0
- package/dist/memory.js.map +1 -0
- package/dist/registry-helpers.d.ts.map +1 -1
- package/dist/registry-helpers.js +46 -5
- package/dist/registry-helpers.js.map +1 -1
- package/dist/relation-links.d.ts +67 -0
- package/dist/relation-links.d.ts.map +1 -0
- package/dist/relation-links.js +149 -0
- package/dist/relation-links.js.map +1 -0
- package/dist/scripts/verify.js +2 -0
- package/dist/scripts/verify.js.map +1 -1
- package/dist/shares.d.ts +222 -85
- package/dist/shares.d.ts.map +1 -1
- package/dist/shares.js +17 -5
- package/dist/shares.js.map +1 -1
- package/dist/vault.d.ts +32 -0
- package/dist/vault.d.ts.map +1 -0
- package/dist/vault.js +88 -0
- package/dist/vault.js.map +1 -0
- package/dist/zod.d.ts +468 -99
- package/dist/zod.d.ts.map +1 -1
- package/dist/zod.js +37 -74
- package/dist/zod.js.map +1 -1
- package/generated/assessment-response.schema.json +1 -1
- package/generated/audit-record.schema.json +2 -1
- package/generated/event-record.schema.json +4246 -500
- package/generated/frontmatter-allergy.schema.json +22 -0
- package/generated/frontmatter-condition.schema.json +44 -0
- package/generated/frontmatter-family-member.schema.json +22 -0
- package/generated/frontmatter-food.schema.json +22 -0
- package/generated/frontmatter-genetic-variant.schema.json +22 -0
- package/generated/frontmatter-goal.schema.json +62 -0
- package/generated/frontmatter-protocol.schema.json +70 -0
- package/generated/frontmatter-recipe.schema.json +44 -0
- package/generated/frontmatter-workout-format.schema.json +22 -102
- package/generated/inbox-capture-record.schema.json +0 -1
- package/generated/vault-metadata.schema.json +5 -291
- package/package.json +5 -11
- package/dist/tsconfig.build.tsbuildinfo +0 -1
|
@@ -61,6 +61,28 @@
|
|
|
61
61
|
},
|
|
62
62
|
"uniqueItems": true
|
|
63
63
|
},
|
|
64
|
+
"links": {
|
|
65
|
+
"type": "array",
|
|
66
|
+
"items": {
|
|
67
|
+
"type": "object",
|
|
68
|
+
"properties": {
|
|
69
|
+
"type": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"const": "related_condition"
|
|
72
|
+
},
|
|
73
|
+
"targetId": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"pattern": "^cond_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"required": [
|
|
79
|
+
"type",
|
|
80
|
+
"targetId"
|
|
81
|
+
],
|
|
82
|
+
"additionalProperties": false
|
|
83
|
+
},
|
|
84
|
+
"uniqueItems": true
|
|
85
|
+
},
|
|
64
86
|
"note": {
|
|
65
87
|
"type": "string",
|
|
66
88
|
"minLength": 1,
|
|
@@ -81,6 +81,50 @@
|
|
|
81
81
|
},
|
|
82
82
|
"uniqueItems": true
|
|
83
83
|
},
|
|
84
|
+
"links": {
|
|
85
|
+
"type": "array",
|
|
86
|
+
"items": {
|
|
87
|
+
"anyOf": [
|
|
88
|
+
{
|
|
89
|
+
"type": "object",
|
|
90
|
+
"properties": {
|
|
91
|
+
"type": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"const": "related_goal"
|
|
94
|
+
},
|
|
95
|
+
"targetId": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"pattern": "^goal_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"required": [
|
|
101
|
+
"type",
|
|
102
|
+
"targetId"
|
|
103
|
+
],
|
|
104
|
+
"additionalProperties": false
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"type": "object",
|
|
108
|
+
"properties": {
|
|
109
|
+
"type": {
|
|
110
|
+
"type": "string",
|
|
111
|
+
"const": "related_protocol"
|
|
112
|
+
},
|
|
113
|
+
"targetId": {
|
|
114
|
+
"type": "string",
|
|
115
|
+
"pattern": "^prot_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"required": [
|
|
119
|
+
"type",
|
|
120
|
+
"targetId"
|
|
121
|
+
],
|
|
122
|
+
"additionalProperties": false
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
"uniqueItems": true
|
|
127
|
+
},
|
|
84
128
|
"note": {
|
|
85
129
|
"type": "string",
|
|
86
130
|
"minLength": 1,
|
|
@@ -52,6 +52,28 @@
|
|
|
52
52
|
"pattern": "^var_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
53
53
|
},
|
|
54
54
|
"uniqueItems": true
|
|
55
|
+
},
|
|
56
|
+
"links": {
|
|
57
|
+
"type": "array",
|
|
58
|
+
"items": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"type": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"const": "related_variant"
|
|
64
|
+
},
|
|
65
|
+
"targetId": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"pattern": "^var_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"required": [
|
|
71
|
+
"type",
|
|
72
|
+
"targetId"
|
|
73
|
+
],
|
|
74
|
+
"additionalProperties": false
|
|
75
|
+
},
|
|
76
|
+
"uniqueItems": true
|
|
55
77
|
}
|
|
56
78
|
},
|
|
57
79
|
"required": [
|
|
@@ -100,6 +100,28 @@
|
|
|
100
100
|
},
|
|
101
101
|
"uniqueItems": true
|
|
102
102
|
},
|
|
103
|
+
"links": {
|
|
104
|
+
"type": "array",
|
|
105
|
+
"items": {
|
|
106
|
+
"type": "object",
|
|
107
|
+
"properties": {
|
|
108
|
+
"type": {
|
|
109
|
+
"type": "string",
|
|
110
|
+
"const": "related_protocol"
|
|
111
|
+
},
|
|
112
|
+
"targetId": {
|
|
113
|
+
"type": "string",
|
|
114
|
+
"pattern": "^prot_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"required": [
|
|
118
|
+
"type",
|
|
119
|
+
"targetId"
|
|
120
|
+
],
|
|
121
|
+
"additionalProperties": false
|
|
122
|
+
},
|
|
123
|
+
"uniqueItems": true
|
|
124
|
+
},
|
|
103
125
|
"autoLogDaily": {
|
|
104
126
|
"type": "object",
|
|
105
127
|
"properties": {
|
|
@@ -61,6 +61,28 @@
|
|
|
61
61
|
},
|
|
62
62
|
"uniqueItems": true
|
|
63
63
|
},
|
|
64
|
+
"links": {
|
|
65
|
+
"type": "array",
|
|
66
|
+
"items": {
|
|
67
|
+
"type": "object",
|
|
68
|
+
"properties": {
|
|
69
|
+
"type": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"const": "source_family_member"
|
|
72
|
+
},
|
|
73
|
+
"targetId": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"pattern": "^fam_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"required": [
|
|
79
|
+
"type",
|
|
80
|
+
"targetId"
|
|
81
|
+
],
|
|
82
|
+
"additionalProperties": false
|
|
83
|
+
},
|
|
84
|
+
"uniqueItems": true
|
|
85
|
+
},
|
|
64
86
|
"note": {
|
|
65
87
|
"type": "string",
|
|
66
88
|
"minLength": 1,
|
|
@@ -90,6 +90,68 @@
|
|
|
90
90
|
},
|
|
91
91
|
"uniqueItems": true
|
|
92
92
|
},
|
|
93
|
+
"links": {
|
|
94
|
+
"type": "array",
|
|
95
|
+
"items": {
|
|
96
|
+
"anyOf": [
|
|
97
|
+
{
|
|
98
|
+
"type": "object",
|
|
99
|
+
"properties": {
|
|
100
|
+
"type": {
|
|
101
|
+
"type": "string",
|
|
102
|
+
"const": "parent_goal"
|
|
103
|
+
},
|
|
104
|
+
"targetId": {
|
|
105
|
+
"type": "string",
|
|
106
|
+
"pattern": "^goal_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"required": [
|
|
110
|
+
"type",
|
|
111
|
+
"targetId"
|
|
112
|
+
],
|
|
113
|
+
"additionalProperties": false
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": "object",
|
|
117
|
+
"properties": {
|
|
118
|
+
"type": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"const": "related_goal"
|
|
121
|
+
},
|
|
122
|
+
"targetId": {
|
|
123
|
+
"type": "string",
|
|
124
|
+
"pattern": "^goal_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"required": [
|
|
128
|
+
"type",
|
|
129
|
+
"targetId"
|
|
130
|
+
],
|
|
131
|
+
"additionalProperties": false
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"type": "object",
|
|
135
|
+
"properties": {
|
|
136
|
+
"type": {
|
|
137
|
+
"type": "string",
|
|
138
|
+
"const": "related_experiment"
|
|
139
|
+
},
|
|
140
|
+
"targetId": {
|
|
141
|
+
"type": "string",
|
|
142
|
+
"pattern": "^exp_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"required": [
|
|
146
|
+
"type",
|
|
147
|
+
"targetId"
|
|
148
|
+
],
|
|
149
|
+
"additionalProperties": false
|
|
150
|
+
}
|
|
151
|
+
]
|
|
152
|
+
},
|
|
153
|
+
"uniqueItems": true
|
|
154
|
+
},
|
|
93
155
|
"domains": {
|
|
94
156
|
"type": "array",
|
|
95
157
|
"items": {
|
|
@@ -135,6 +135,76 @@
|
|
|
135
135
|
"pattern": "^cond_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
136
136
|
},
|
|
137
137
|
"uniqueItems": true
|
|
138
|
+
},
|
|
139
|
+
"relatedProtocolIds": {
|
|
140
|
+
"type": "array",
|
|
141
|
+
"items": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"pattern": "^prot_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
144
|
+
},
|
|
145
|
+
"uniqueItems": true
|
|
146
|
+
},
|
|
147
|
+
"links": {
|
|
148
|
+
"type": "array",
|
|
149
|
+
"items": {
|
|
150
|
+
"anyOf": [
|
|
151
|
+
{
|
|
152
|
+
"type": "object",
|
|
153
|
+
"properties": {
|
|
154
|
+
"type": {
|
|
155
|
+
"type": "string",
|
|
156
|
+
"const": "supports_goal"
|
|
157
|
+
},
|
|
158
|
+
"targetId": {
|
|
159
|
+
"type": "string",
|
|
160
|
+
"pattern": "^goal_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"required": [
|
|
164
|
+
"type",
|
|
165
|
+
"targetId"
|
|
166
|
+
],
|
|
167
|
+
"additionalProperties": false
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"type": "object",
|
|
171
|
+
"properties": {
|
|
172
|
+
"type": {
|
|
173
|
+
"type": "string",
|
|
174
|
+
"const": "addresses_condition"
|
|
175
|
+
},
|
|
176
|
+
"targetId": {
|
|
177
|
+
"type": "string",
|
|
178
|
+
"pattern": "^cond_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"required": [
|
|
182
|
+
"type",
|
|
183
|
+
"targetId"
|
|
184
|
+
],
|
|
185
|
+
"additionalProperties": false
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"type": "object",
|
|
189
|
+
"properties": {
|
|
190
|
+
"type": {
|
|
191
|
+
"type": "string",
|
|
192
|
+
"const": "related_protocol"
|
|
193
|
+
},
|
|
194
|
+
"targetId": {
|
|
195
|
+
"type": "string",
|
|
196
|
+
"pattern": "^prot_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"required": [
|
|
200
|
+
"type",
|
|
201
|
+
"targetId"
|
|
202
|
+
],
|
|
203
|
+
"additionalProperties": false
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
"uniqueItems": true
|
|
138
208
|
}
|
|
139
209
|
},
|
|
140
210
|
"required": [
|
|
@@ -108,6 +108,50 @@
|
|
|
108
108
|
"pattern": "^cond_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
109
109
|
},
|
|
110
110
|
"uniqueItems": true
|
|
111
|
+
},
|
|
112
|
+
"links": {
|
|
113
|
+
"type": "array",
|
|
114
|
+
"items": {
|
|
115
|
+
"anyOf": [
|
|
116
|
+
{
|
|
117
|
+
"type": "object",
|
|
118
|
+
"properties": {
|
|
119
|
+
"type": {
|
|
120
|
+
"type": "string",
|
|
121
|
+
"const": "supports_goal"
|
|
122
|
+
},
|
|
123
|
+
"targetId": {
|
|
124
|
+
"type": "string",
|
|
125
|
+
"pattern": "^goal_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"required": [
|
|
129
|
+
"type",
|
|
130
|
+
"targetId"
|
|
131
|
+
],
|
|
132
|
+
"additionalProperties": false
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"type": "object",
|
|
136
|
+
"properties": {
|
|
137
|
+
"type": {
|
|
138
|
+
"type": "string",
|
|
139
|
+
"const": "addresses_condition"
|
|
140
|
+
},
|
|
141
|
+
"targetId": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"pattern": "^cond_[0-9A-HJKMNP-TV-Z]{26}$"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"required": [
|
|
147
|
+
"type",
|
|
148
|
+
"targetId"
|
|
149
|
+
],
|
|
150
|
+
"additionalProperties": false
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
"uniqueItems": true
|
|
111
155
|
}
|
|
112
156
|
},
|
|
113
157
|
"required": [
|
|
@@ -49,104 +49,6 @@
|
|
|
49
49
|
"minimum": 0,
|
|
50
50
|
"maximum": 1000
|
|
51
51
|
},
|
|
52
|
-
"strengthExercises": {
|
|
53
|
-
"minItems": 1,
|
|
54
|
-
"maxItems": 50,
|
|
55
|
-
"type": "array",
|
|
56
|
-
"items": {
|
|
57
|
-
"anyOf": [
|
|
58
|
-
{
|
|
59
|
-
"type": "object",
|
|
60
|
-
"properties": {
|
|
61
|
-
"exercise": {
|
|
62
|
-
"type": "string",
|
|
63
|
-
"minLength": 1,
|
|
64
|
-
"maxLength": 160
|
|
65
|
-
},
|
|
66
|
-
"setCount": {
|
|
67
|
-
"type": "integer",
|
|
68
|
-
"minimum": 1
|
|
69
|
-
},
|
|
70
|
-
"repsPerSet": {
|
|
71
|
-
"type": "integer",
|
|
72
|
-
"minimum": 1
|
|
73
|
-
},
|
|
74
|
-
"loadDescription": {
|
|
75
|
-
"type": "string",
|
|
76
|
-
"minLength": 1,
|
|
77
|
-
"maxLength": 240
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
"required": [
|
|
81
|
-
"exercise",
|
|
82
|
-
"setCount",
|
|
83
|
-
"repsPerSet"
|
|
84
|
-
],
|
|
85
|
-
"additionalProperties": false
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"type": "object",
|
|
89
|
-
"properties": {
|
|
90
|
-
"exercise": {
|
|
91
|
-
"type": "string",
|
|
92
|
-
"minLength": 1,
|
|
93
|
-
"maxLength": 160
|
|
94
|
-
},
|
|
95
|
-
"setCount": {
|
|
96
|
-
"type": "integer",
|
|
97
|
-
"minimum": 1
|
|
98
|
-
},
|
|
99
|
-
"repsPerSet": {
|
|
100
|
-
"type": "integer",
|
|
101
|
-
"minimum": 1
|
|
102
|
-
},
|
|
103
|
-
"loadDescription": {
|
|
104
|
-
"type": "string",
|
|
105
|
-
"minLength": 1,
|
|
106
|
-
"maxLength": 240
|
|
107
|
-
},
|
|
108
|
-
"load": {
|
|
109
|
-
"type": "number",
|
|
110
|
-
"minimum": 0
|
|
111
|
-
},
|
|
112
|
-
"loadUnit": {
|
|
113
|
-
"type": "string",
|
|
114
|
-
"enum": [
|
|
115
|
-
"lb",
|
|
116
|
-
"kg"
|
|
117
|
-
]
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
"required": [
|
|
121
|
-
"exercise",
|
|
122
|
-
"setCount",
|
|
123
|
-
"repsPerSet",
|
|
124
|
-
"load",
|
|
125
|
-
"loadUnit"
|
|
126
|
-
],
|
|
127
|
-
"additionalProperties": false
|
|
128
|
-
}
|
|
129
|
-
]
|
|
130
|
-
}
|
|
131
|
-
},
|
|
132
|
-
"tags": {
|
|
133
|
-
"type": "array",
|
|
134
|
-
"items": {
|
|
135
|
-
"type": "string",
|
|
136
|
-
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
|
|
137
|
-
},
|
|
138
|
-
"uniqueItems": true
|
|
139
|
-
},
|
|
140
|
-
"note": {
|
|
141
|
-
"type": "string",
|
|
142
|
-
"minLength": 1,
|
|
143
|
-
"maxLength": 4000
|
|
144
|
-
},
|
|
145
|
-
"templateText": {
|
|
146
|
-
"type": "string",
|
|
147
|
-
"minLength": 1,
|
|
148
|
-
"maxLength": 4000
|
|
149
|
-
},
|
|
150
52
|
"template": {
|
|
151
53
|
"type": "object",
|
|
152
54
|
"properties": {
|
|
@@ -156,9 +58,8 @@
|
|
|
156
58
|
"maxLength": 4000
|
|
157
59
|
},
|
|
158
60
|
"exercises": {
|
|
159
|
-
"type": "array",
|
|
160
|
-
"minItems": 1,
|
|
161
61
|
"maxItems": 100,
|
|
62
|
+
"type": "array",
|
|
162
63
|
"items": {
|
|
163
64
|
"type": "object",
|
|
164
65
|
"properties": {
|
|
@@ -200,9 +101,9 @@
|
|
|
200
101
|
"maxLength": 4000
|
|
201
102
|
},
|
|
202
103
|
"plannedSets": {
|
|
203
|
-
"type": "array",
|
|
204
104
|
"minItems": 1,
|
|
205
105
|
"maxItems": 150,
|
|
106
|
+
"type": "array",
|
|
206
107
|
"items": {
|
|
207
108
|
"type": "object",
|
|
208
109
|
"properties": {
|
|
@@ -268,6 +169,24 @@
|
|
|
268
169
|
"exercises"
|
|
269
170
|
],
|
|
270
171
|
"additionalProperties": false
|
|
172
|
+
},
|
|
173
|
+
"tags": {
|
|
174
|
+
"type": "array",
|
|
175
|
+
"items": {
|
|
176
|
+
"type": "string",
|
|
177
|
+
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
|
|
178
|
+
},
|
|
179
|
+
"uniqueItems": true
|
|
180
|
+
},
|
|
181
|
+
"note": {
|
|
182
|
+
"type": "string",
|
|
183
|
+
"minLength": 1,
|
|
184
|
+
"maxLength": 4000
|
|
185
|
+
},
|
|
186
|
+
"templateText": {
|
|
187
|
+
"type": "string",
|
|
188
|
+
"minLength": 1,
|
|
189
|
+
"maxLength": 4000
|
|
271
190
|
}
|
|
272
191
|
},
|
|
273
192
|
"required": [
|
|
@@ -277,7 +196,8 @@
|
|
|
277
196
|
"slug",
|
|
278
197
|
"title",
|
|
279
198
|
"status",
|
|
280
|
-
"activityType"
|
|
199
|
+
"activityType",
|
|
200
|
+
"template"
|
|
281
201
|
],
|
|
282
202
|
"additionalProperties": false,
|
|
283
203
|
"$id": "@murphai/contracts/frontmatter-workout-format.schema.json",
|