markform 0.1.12 → 0.1.14

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.
@@ -93,29 +93,49 @@
93
93
  "properties": {
94
94
  "research": {
95
95
  "anyOf": [
96
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
97
- { "type": "boolean" }
96
+ {
97
+ "type": "string",
98
+ "enum": ["todo", "done", "incomplete", "active", "na"]
99
+ },
100
+ {
101
+ "type": "boolean"
102
+ }
98
103
  ],
99
104
  "title": "Research"
100
105
  },
101
106
  "design": {
102
107
  "anyOf": [
103
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
104
- { "type": "boolean" }
108
+ {
109
+ "type": "string",
110
+ "enum": ["todo", "done", "incomplete", "active", "na"]
111
+ },
112
+ {
113
+ "type": "boolean"
114
+ }
105
115
  ],
106
116
  "title": "Design"
107
117
  },
108
118
  "implement": {
109
119
  "anyOf": [
110
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
111
- { "type": "boolean" }
120
+ {
121
+ "type": "string",
122
+ "enum": ["todo", "done", "incomplete", "active", "na"]
123
+ },
124
+ {
125
+ "type": "boolean"
126
+ }
112
127
  ],
113
128
  "title": "Implement"
114
129
  },
115
130
  "test": {
116
131
  "anyOf": [
117
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
118
- { "type": "boolean" }
132
+ {
133
+ "type": "string",
134
+ "enum": ["todo", "done", "incomplete", "active", "na"]
135
+ },
136
+ {
137
+ "type": "boolean"
138
+ }
119
139
  ],
120
140
  "title": "Test"
121
141
  }
@@ -131,11 +151,27 @@
131
151
  "type": "object",
132
152
  "properties": {
133
153
  "read_guidelines": {
134
- "anyOf": [{ "type": "string", "enum": ["todo", "done"] }, { "type": "boolean" }],
154
+ "anyOf": [
155
+ {
156
+ "type": "string",
157
+ "enum": ["todo", "done"]
158
+ },
159
+ {
160
+ "type": "boolean"
161
+ }
162
+ ],
135
163
  "title": "I have read the guidelines"
136
164
  },
137
165
  "agree_terms": {
138
- "anyOf": [{ "type": "string", "enum": ["todo", "done"] }, { "type": "boolean" }],
166
+ "anyOf": [
167
+ {
168
+ "type": "string",
169
+ "enum": ["todo", "done"]
170
+ },
171
+ {
172
+ "type": "boolean"
173
+ }
174
+ ],
139
175
  "title": "I agree to the terms"
140
176
  }
141
177
  },
@@ -150,11 +186,27 @@
150
186
  "type": "object",
151
187
  "properties": {
152
188
  "backed_up": {
153
- "anyOf": [{ "type": "string", "enum": ["unfilled", "yes", "no"] }, { "type": "boolean" }],
189
+ "anyOf": [
190
+ {
191
+ "type": "string",
192
+ "enum": ["unfilled", "yes", "no"]
193
+ },
194
+ {
195
+ "type": "boolean"
196
+ }
197
+ ],
154
198
  "title": "Data has been backed up"
155
199
  },
156
200
  "notified": {
157
- "anyOf": [{ "type": "string", "enum": ["unfilled", "yes", "no"] }, { "type": "boolean" }],
201
+ "anyOf": [
202
+ {
203
+ "type": "string",
204
+ "enum": ["unfilled", "yes", "no"]
205
+ },
206
+ {
207
+ "type": "boolean"
208
+ }
209
+ ],
158
210
  "title": "Stakeholders notified"
159
211
  }
160
212
  },