@tiic-tech/openworkflow 0.1.1 → 0.1.2

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.
Files changed (213) hide show
  1. package/dist/adapters/codex/src/cleanCodexAdapter.js +4 -1
  2. package/dist/adapters/codex/src/cleanCodexAdapter.js.map +1 -1
  3. package/dist/adapters/codex/src/constants.d.ts +1 -0
  4. package/dist/adapters/codex/src/constants.js +2 -0
  5. package/dist/adapters/codex/src/constants.js.map +1 -0
  6. package/dist/adapters/codex/src/generateCommands.js +14 -9
  7. package/dist/adapters/codex/src/generateCommands.js.map +1 -1
  8. package/dist/adapters/codex/src/generateSkills.js +13 -0
  9. package/dist/adapters/codex/src/generateSkills.js.map +1 -1
  10. package/dist/adapters/codex/src/generatedFiles.js +1 -1
  11. package/dist/adapters/codex/src/manifest.js +11 -2
  12. package/dist/adapters/codex/src/manifest.js.map +1 -1
  13. package/dist/adapters/codex/src/templates.d.ts +0 -1
  14. package/dist/adapters/codex/src/templates.js +0 -1
  15. package/dist/adapters/codex/src/templates.js.map +1 -1
  16. package/dist/adapters/src/registry.d.ts +20 -0
  17. package/dist/adapters/src/registry.js +81 -0
  18. package/dist/adapters/src/registry.js.map +1 -0
  19. package/dist/cli/src/commands/brief.d.ts +46 -0
  20. package/dist/cli/src/commands/brief.js +294 -0
  21. package/dist/cli/src/commands/brief.js.map +1 -0
  22. package/dist/cli/src/commands/check.d.ts +42 -0
  23. package/dist/cli/src/commands/check.js +326 -0
  24. package/dist/cli/src/commands/check.js.map +1 -0
  25. package/dist/cli/src/commands/clean.js +46 -1
  26. package/dist/cli/src/commands/clean.js.map +1 -1
  27. package/dist/cli/src/commands/context.d.ts +1 -0
  28. package/dist/cli/src/commands/context.js +471 -0
  29. package/dist/cli/src/commands/context.js.map +1 -0
  30. package/dist/cli/src/commands/doctor.js +122 -12
  31. package/dist/cli/src/commands/doctor.js.map +1 -1
  32. package/dist/cli/src/commands/draft.d.ts +1 -0
  33. package/dist/cli/src/commands/draft.js +175 -0
  34. package/dist/cli/src/commands/draft.js.map +1 -0
  35. package/dist/cli/src/commands/gitAutomation.d.ts +1 -0
  36. package/dist/cli/src/commands/gitAutomation.js +378 -0
  37. package/dist/cli/src/commands/gitAutomation.js.map +1 -0
  38. package/dist/cli/src/commands/handoff.d.ts +22 -0
  39. package/dist/cli/src/commands/handoff.js +122 -0
  40. package/dist/cli/src/commands/handoff.js.map +1 -0
  41. package/dist/cli/src/commands/init.js +52 -1
  42. package/dist/cli/src/commands/init.js.map +1 -1
  43. package/dist/cli/src/commands/inspect.d.ts +23 -0
  44. package/dist/cli/src/commands/inspect.js +157 -0
  45. package/dist/cli/src/commands/inspect.js.map +1 -0
  46. package/dist/cli/src/commands/register.d.ts +1 -0
  47. package/dist/cli/src/commands/register.js +251 -0
  48. package/dist/cli/src/commands/register.js.map +1 -0
  49. package/dist/cli/src/commands/resume.d.ts +59 -0
  50. package/dist/cli/src/commands/resume.js +280 -0
  51. package/dist/cli/src/commands/resume.js.map +1 -0
  52. package/dist/cli/src/commands/shared.js +6 -2
  53. package/dist/cli/src/commands/shared.js.map +1 -1
  54. package/dist/cli/src/commands/summaries.d.ts +1 -0
  55. package/dist/cli/src/commands/summaries.js +77 -0
  56. package/dist/cli/src/commands/summaries.js.map +1 -0
  57. package/dist/cli/src/commands/summarize.d.ts +1 -0
  58. package/dist/cli/src/commands/summarize.js +316 -0
  59. package/dist/cli/src/commands/summarize.js.map +1 -0
  60. package/dist/cli/src/commands/sync.js +135 -12
  61. package/dist/cli/src/commands/sync.js.map +1 -1
  62. package/dist/cli/src/commands/validate.js +25 -1
  63. package/dist/cli/src/commands/validate.js.map +1 -1
  64. package/dist/cli/src/dev/verifyAgentE2E.d.ts +2 -0
  65. package/dist/cli/src/dev/verifyAgentE2E.js +391 -0
  66. package/dist/cli/src/dev/verifyAgentE2E.js.map +1 -0
  67. package/dist/cli/src/dev/verifyCleanCommand.js +213 -2
  68. package/dist/cli/src/dev/verifyCleanCommand.js.map +1 -1
  69. package/dist/cli/src/dev/verifyRuntimeSurface.js +4940 -54
  70. package/dist/cli/src/dev/verifyRuntimeSurface.js.map +1 -1
  71. package/dist/cli/src/dev/verifyWorkflowE2E.js +477 -45
  72. package/dist/cli/src/dev/verifyWorkflowE2E.js.map +1 -1
  73. package/dist/cli/src/index.js +184 -6
  74. package/dist/cli/src/index.js.map +1 -1
  75. package/dist/cli/src/report.d.ts +26 -0
  76. package/dist/cli/src/report.js +17 -0
  77. package/dist/cli/src/report.js.map +1 -0
  78. package/dist/core/src/artifacts/readiness.d.ts +7 -0
  79. package/dist/core/src/artifacts/readiness.js +240 -0
  80. package/dist/core/src/artifacts/readiness.js.map +1 -0
  81. package/dist/core/src/artifacts/registry.d.ts +9 -2
  82. package/dist/core/src/artifacts/registry.js +687 -60
  83. package/dist/core/src/artifacts/registry.js.map +1 -1
  84. package/dist/core/src/commands/registry.js +1425 -146
  85. package/dist/core/src/commands/registry.js.map +1 -1
  86. package/dist/core/src/contracts/index.d.ts +1 -1
  87. package/dist/core/src/fs/index.d.ts +24 -0
  88. package/dist/core/src/fs/index.js +48 -1
  89. package/dist/core/src/fs/index.js.map +1 -1
  90. package/dist/core/src/git/autonomousSimulator.d.ts +46 -0
  91. package/dist/core/src/git/autonomousSimulator.js +163 -0
  92. package/dist/core/src/git/autonomousSimulator.js.map +1 -0
  93. package/dist/core/src/git/branchIdentity.d.ts +19 -0
  94. package/dist/core/src/git/branchIdentity.js +75 -0
  95. package/dist/core/src/git/branchIdentity.js.map +1 -0
  96. package/dist/core/src/git/draftPrPilot.d.ts +47 -0
  97. package/dist/core/src/git/draftPrPilot.js +196 -0
  98. package/dist/core/src/git/draftPrPilot.js.map +1 -0
  99. package/dist/core/src/git/localEvidenceReader.d.ts +21 -0
  100. package/dist/core/src/git/localEvidenceReader.js +142 -0
  101. package/dist/core/src/git/localEvidenceReader.js.map +1 -0
  102. package/dist/core/src/git/localGitAutomation.d.ts +68 -0
  103. package/dist/core/src/git/localGitAutomation.js +470 -0
  104. package/dist/core/src/git/localGitAutomation.js.map +1 -0
  105. package/dist/core/src/git/mergeReadinessCheckpoint.d.ts +31 -0
  106. package/dist/core/src/git/mergeReadinessCheckpoint.js +110 -0
  107. package/dist/core/src/git/mergeReadinessCheckpoint.js.map +1 -0
  108. package/dist/core/src/git/prReadySummary.d.ts +16 -0
  109. package/dist/core/src/git/prReadySummary.js +144 -0
  110. package/dist/core/src/git/prReadySummary.js.map +1 -0
  111. package/dist/core/src/git/remoteReadonlyPlanner.d.ts +60 -0
  112. package/dist/core/src/git/remoteReadonlyPlanner.js +223 -0
  113. package/dist/core/src/git/remoteReadonlyPlanner.js.map +1 -0
  114. package/dist/core/src/onboarding/agentsGuide.d.ts +32 -0
  115. package/dist/core/src/onboarding/agentsGuide.js +164 -0
  116. package/dist/core/src/onboarding/agentsGuide.js.map +1 -0
  117. package/dist/core/src/validators/validateOpenWorkflow.js +1331 -15
  118. package/dist/core/src/validators/validateOpenWorkflow.js.map +1 -1
  119. package/dist/core/src/validators/validateRepositoryContracts.js +2321 -306
  120. package/dist/core/src/validators/validateRepositoryContracts.js.map +1 -1
  121. package/dist/core/src/workflow/cleanOpenWorkflow.d.ts +2 -0
  122. package/dist/core/src/workflow/cleanOpenWorkflow.js +97 -8
  123. package/dist/core/src/workflow/cleanOpenWorkflow.js.map +1 -1
  124. package/dist/core/src/workflow/doctorOpenWorkflow.d.ts +7 -0
  125. package/dist/core/src/workflow/doctorOpenWorkflow.js +26 -0
  126. package/dist/core/src/workflow/doctorOpenWorkflow.js.map +1 -0
  127. package/dist/core/src/workflow/initOpenWorkflow.d.ts +7 -0
  128. package/dist/core/src/workflow/initOpenWorkflow.js +96 -8
  129. package/dist/core/src/workflow/initOpenWorkflow.js.map +1 -1
  130. package/dist/core/src/workflow/planningQueueResume.d.ts +105 -0
  131. package/dist/core/src/workflow/planningQueueResume.js +596 -0
  132. package/dist/core/src/workflow/planningQueueResume.js.map +1 -0
  133. package/dist/core/src/workflow/readWorkflowConfig.d.ts +6 -0
  134. package/dist/core/src/workflow/readWorkflowConfig.js +28 -0
  135. package/dist/core/src/workflow/readWorkflowConfig.js.map +1 -0
  136. package/dist/core/src/workflow/summaryHealth.d.ts +60 -0
  137. package/dist/core/src/workflow/summaryHealth.js +713 -0
  138. package/dist/core/src/workflow/summaryHealth.js.map +1 -0
  139. package/dist/core/src/workflow/syncOpenWorkflow.d.ts +22 -0
  140. package/dist/core/src/workflow/syncOpenWorkflow.js +235 -0
  141. package/dist/core/src/workflow/syncOpenWorkflow.js.map +1 -0
  142. package/package.json +2 -1
  143. package/references/artifact-authoring-templates.md +14 -12
  144. package/references/artifact-instruction-envelope.md +133 -0
  145. package/references/coder-continuous-growth-loop.md +68 -0
  146. package/references/gh-operation-governance.md +114 -0
  147. package/references/git-automation-governance.md +324 -0
  148. package/references/git-version-control-governance.md +227 -0
  149. package/references/internal-coder-protocol.md +202 -0
  150. package/references/issue-governance.md +115 -0
  151. package/references/planning-artifact-contracts.md +595 -0
  152. package/references/planning-skill-runtime-exposure.md +159 -0
  153. package/references/proto-redesign-artifact-contracts.md +217 -0
  154. package/references/proto2html-artifact-contracts.md +113 -0
  155. package/references/skill-system-lifecycle.md +198 -0
  156. package/references/validation-trust-domains.md +286 -0
  157. package/references/workflow-blueprint-runtime-alignment.md +287 -0
  158. package/schemas/atom-tasks.schema.json +101 -0
  159. package/schemas/candidate-changes.schema.json +323 -0
  160. package/schemas/current-state.schema.json +113 -0
  161. package/schemas/html-prototype.schema.json +288 -0
  162. package/schemas/openworkflow-contract.schema.json +9 -1
  163. package/schemas/proto-prompt-pack.schema.json +1333 -0
  164. package/schemas/prototype-evidence.schema.json +684 -142
  165. package/schemas/selected-change.schema.json +104 -0
  166. package/schemas/validation-target.schema.json +187 -1
  167. package/schemas/validation.schema.json +187 -1
  168. package/schemas/vision-session.schema.json +151 -0
  169. package/skills/analyze-changes/SKILL.md +92 -0
  170. package/skills/analyze-changes/agents/openai.yaml +4 -0
  171. package/skills/analyze-changes/references/analysis-protocol.md +116 -0
  172. package/skills/build-proto-prompt/SKILL.md +125 -0
  173. package/skills/build-proto-prompt/references/output-boundary.md +54 -0
  174. package/skills/build-proto-prompt/references/prompt-pack-compiler-protocol.md +80 -0
  175. package/skills/build-prototype/SKILL.md +162 -38
  176. package/skills/build-prototype/agents/openai.yaml +2 -2
  177. package/skills/build-prototype/references/philosophy-engine.md +61 -0
  178. package/skills/build-prototype/references/strategic-prompt-pack-protocol.md +365 -0
  179. package/skills/build-prototype/references/vision2prompt/01_input_contract.md +84 -0
  180. package/skills/build-prototype/references/vision2prompt/02_vision_decomposition.md +108 -0
  181. package/skills/build-prototype/references/vision2prompt/03_strategy_hypothesis_generation.md +89 -0
  182. package/skills/build-prototype/references/vision2prompt/04_product_system_extraction.md +78 -0
  183. package/skills/build-prototype/references/vision2prompt/05_prototype_prompt_schema.md +189 -0
  184. package/skills/build-prototype/references/vision2prompt/06_output_templates.md +125 -0
  185. package/skills/build-prototype/references/vision2prompt/07_quality_rubric.md +171 -0
  186. package/skills/build-validation/SKILL.md +136 -54
  187. package/skills/build-validation/references/prototype-validation-target-rubric.md +35 -0
  188. package/skills/build-validation/references/return-to-vision-gate.md +32 -0
  189. package/skills/build-vision/SKILL.md +192 -0
  190. package/skills/build-vision/references/proto-readiness-rubric.md +48 -0
  191. package/skills/build-vision/references/vision-interview-protocol.md +48 -0
  192. package/skills/coder/SKILL.md +204 -0
  193. package/skills/decompose-to-changes/SKILL.md +176 -0
  194. package/skills/decompose-to-changes/agents/openai.yaml +4 -0
  195. package/skills/decompose-to-changes/references/decomposition-protocol.md +278 -0
  196. package/skills/prompt2proto/SKILL.md +157 -0
  197. package/skills/prompt2proto/agents/openai.yaml +4 -0
  198. package/skills/prompt2proto/references/00_role_philosophy_engine.md +96 -0
  199. package/skills/prompt2proto/references/01_input_contract.md +53 -0
  200. package/skills/prompt2proto/references/02_prompt_pack_readiness.md +50 -0
  201. package/skills/prompt2proto/references/03_visual_translation_workflow.md +64 -0
  202. package/skills/prompt2proto/references/04_output_contract.md +67 -0
  203. package/skills/prompt2proto/references/05_quality_rubric.md +46 -0
  204. package/skills/proto2html/SKILL.md +136 -0
  205. package/skills/proto2html/agents/openai.yaml +4 -0
  206. package/skills/proto2html/references/proto2html-protocol.md +115 -0
  207. package/skills/run-team/SKILL.md +4 -0
  208. package/skills/select-change/SKILL.md +200 -0
  209. package/skills/select-change/agents/openai.yaml +4 -0
  210. package/skills/select-change/references/selection-protocol.md +281 -0
  211. package/skills/tune-prototype/SKILL.md +121 -0
  212. package/skills/tune-prototype/agents/openai.yaml +4 -0
  213. package/skills/tune-prototype/references/refined-prompt-pack-protocol.md +161 -0
@@ -0,0 +1,1333 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://openworkflow.local/schemas/proto-prompt-pack.schema.json",
4
+ "title": "OpenWorkflow Proto Prompt Pack",
5
+ "type": "object",
6
+ "required": [
7
+ "schema_version",
8
+ "contract_id",
9
+ "contract_type",
10
+ "title",
11
+ "status",
12
+ "prompt_pack_type",
13
+ "source",
14
+ "validation_input",
15
+ "internal_pipeline",
16
+ "preflight_quality_gate",
17
+ "direction_count_policy",
18
+ "normalized_input",
19
+ "strategic_core",
20
+ "directions",
21
+ "build_recommendation",
22
+ "prompt_text_manifest",
23
+ "post_validate",
24
+ "image_generation",
25
+ "negative_constraints",
26
+ "review_plan"
27
+ ],
28
+ "properties": {
29
+ "schema_version": {
30
+ "type": "string"
31
+ },
32
+ "contract_id": {
33
+ "type": "string"
34
+ },
35
+ "contract_type": {
36
+ "const": "prototype"
37
+ },
38
+ "title": {
39
+ "type": "string"
40
+ },
41
+ "status": {
42
+ "type": "string",
43
+ "enum": [
44
+ "draft",
45
+ "active",
46
+ "ready_for_generation",
47
+ "reviewed",
48
+ "accepted",
49
+ "superseded",
50
+ "archived"
51
+ ]
52
+ },
53
+ "prompt_pack_type": {
54
+ "type": "string",
55
+ "enum": [
56
+ "strategic_proto_prompt_pack",
57
+ "refined_proto_prompt_pack",
58
+ "proto_review_evidence"
59
+ ]
60
+ },
61
+ "source": {
62
+ "type": "object",
63
+ "additionalProperties": true
64
+ },
65
+ "validation_input": {
66
+ "type": "object",
67
+ "properties": {
68
+ "mode": {
69
+ "type": "string",
70
+ "enum": [
71
+ "validation_present",
72
+ "agent_auto_generated"
73
+ ]
74
+ },
75
+ "refs": {
76
+ "type": "array",
77
+ "items": {
78
+ "type": "string"
79
+ }
80
+ },
81
+ "notes": {
82
+ "type": "array",
83
+ "items": {
84
+ "type": "string"
85
+ }
86
+ }
87
+ },
88
+ "additionalProperties": true
89
+ },
90
+ "preflight_quality_gate": {
91
+ "type": "object",
92
+ "required": [
93
+ "vision_status",
94
+ "validation_status",
95
+ "can_proceed",
96
+ "blockers",
97
+ "next_command_when_blocked"
98
+ ],
99
+ "properties": {
100
+ "vision_status": {
101
+ "type": "string",
102
+ "enum": [
103
+ "missing",
104
+ "thin",
105
+ "ready"
106
+ ]
107
+ },
108
+ "validation_status": {
109
+ "type": "string",
110
+ "enum": [
111
+ "missing",
112
+ "thin",
113
+ "ready"
114
+ ]
115
+ },
116
+ "can_proceed": {
117
+ "type": "boolean"
118
+ },
119
+ "blockers": {
120
+ "type": "array",
121
+ "items": {
122
+ "type": "string"
123
+ }
124
+ },
125
+ "next_command_when_blocked": {
126
+ "type": [
127
+ "string",
128
+ "null"
129
+ ]
130
+ },
131
+ "required_followup_questions": {
132
+ "type": "array",
133
+ "items": {
134
+ "type": "string"
135
+ }
136
+ }
137
+ },
138
+ "additionalProperties": true
139
+ },
140
+ "internal_pipeline": {
141
+ "type": "object",
142
+ "required": [
143
+ "orchestrator_command",
144
+ "user_visible_command",
145
+ "current_stage",
146
+ "stages"
147
+ ],
148
+ "properties": {
149
+ "orchestrator_command": {
150
+ "const": "/ow:proto"
151
+ },
152
+ "user_visible_command": {
153
+ "const": "/ow:proto"
154
+ },
155
+ "current_stage": {
156
+ "type": "string"
157
+ },
158
+ "stages": {
159
+ "type": "array",
160
+ "items": {
161
+ "type": "object",
162
+ "required": [
163
+ "stage_id",
164
+ "command",
165
+ "visibility",
166
+ "status",
167
+ "outputs"
168
+ ],
169
+ "properties": {
170
+ "stage_id": {
171
+ "type": "string",
172
+ "enum": [
173
+ "proto-preflight",
174
+ "vision2prompt",
175
+ "prompt2proto"
176
+ ]
177
+ },
178
+ "command": {
179
+ "type": "string"
180
+ },
181
+ "visibility": {
182
+ "type": "string",
183
+ "enum": [
184
+ "user",
185
+ "internal"
186
+ ]
187
+ },
188
+ "status": {
189
+ "type": "string",
190
+ "enum": [
191
+ "pending",
192
+ "in_progress",
193
+ "complete",
194
+ "blocked"
195
+ ]
196
+ },
197
+ "outputs": {
198
+ "type": "array",
199
+ "items": {
200
+ "type": "string"
201
+ }
202
+ }
203
+ },
204
+ "additionalProperties": true
205
+ }
206
+ }
207
+ },
208
+ "additionalProperties": true
209
+ },
210
+ "direction_count_policy": {
211
+ "type": "object",
212
+ "required": [
213
+ "requested_count",
214
+ "resolved_count",
215
+ "source",
216
+ "ask_user_question_required"
217
+ ],
218
+ "properties": {
219
+ "requested_count": {
220
+ "type": [
221
+ "number",
222
+ "null"
223
+ ]
224
+ },
225
+ "resolved_count": {
226
+ "type": "number",
227
+ "minimum": 1
228
+ },
229
+ "source": {
230
+ "type": "string",
231
+ "enum": [
232
+ "user_input",
233
+ "agent_default_after_user_delegation"
234
+ ]
235
+ },
236
+ "ask_user_question_required": {
237
+ "type": "boolean"
238
+ },
239
+ "ask_user_question": {
240
+ "type": [
241
+ "string",
242
+ "null"
243
+ ]
244
+ }
245
+ },
246
+ "additionalProperties": true
247
+ },
248
+ "normalized_input": {
249
+ "type": "object",
250
+ "required": [
251
+ "product_domain",
252
+ "primary_user",
253
+ "usage_context",
254
+ "current_alternative",
255
+ "core_pain",
256
+ "desired_behavior_change",
257
+ "strongest_success_signal",
258
+ "core_differentiator",
259
+ "emotional_value",
260
+ "functional_value",
261
+ "trust_requirements",
262
+ "privacy_requirements",
263
+ "non_goals",
264
+ "future_opportunities",
265
+ "validation_target"
266
+ ],
267
+ "additionalProperties": true
268
+ },
269
+ "strategic_core": {
270
+ "type": "object",
271
+ "required": [
272
+ "target_user",
273
+ "behavior_change",
274
+ "mechanism",
275
+ "differentiator",
276
+ "boundary_conditions",
277
+ "central_uncertainty"
278
+ ],
279
+ "additionalProperties": true
280
+ },
281
+ "prototype_brief": {
282
+ "type": "object",
283
+ "properties": {
284
+ "product_name": {
285
+ "type": "string"
286
+ },
287
+ "positioning": {
288
+ "type": "string"
289
+ },
290
+ "target_user": {
291
+ "type": "string"
292
+ },
293
+ "current_alternative": {
294
+ "type": "string"
295
+ },
296
+ "core_idea": {
297
+ "type": "string"
298
+ },
299
+ "primary_loop": {
300
+ "type": "array",
301
+ "items": {
302
+ "type": "string"
303
+ }
304
+ },
305
+ "trust_boundaries": {
306
+ "type": "array",
307
+ "items": {
308
+ "type": "string"
309
+ }
310
+ },
311
+ "non_goals": {
312
+ "type": "array",
313
+ "items": {
314
+ "type": "string"
315
+ }
316
+ },
317
+ "desired_feeling": {
318
+ "type": "string"
319
+ }
320
+ },
321
+ "additionalProperties": true
322
+ },
323
+ "direction_map": {
324
+ "type": [
325
+ "array",
326
+ "object"
327
+ ],
328
+ "additionalProperties": true
329
+ },
330
+ "product_experience_model": {
331
+ "type": "object",
332
+ "required": [
333
+ "product_archetype",
334
+ "primary_canvas",
335
+ "information_architecture",
336
+ "domain_object_model",
337
+ "primary_task_loop",
338
+ "interaction_state_model",
339
+ "data_realism_requirements",
340
+ "visual_language",
341
+ "anti_generic_constraints"
342
+ ],
343
+ "properties": {
344
+ "product_archetype": {
345
+ "type": "string"
346
+ },
347
+ "primary_canvas": {
348
+ "type": "string"
349
+ },
350
+ "information_architecture": {
351
+ "type": "array",
352
+ "items": {
353
+ "type": "string"
354
+ }
355
+ },
356
+ "domain_object_model": {
357
+ "type": "array",
358
+ "items": {
359
+ "type": "string"
360
+ }
361
+ },
362
+ "primary_task_loop": {
363
+ "type": "array",
364
+ "items": {
365
+ "type": "string"
366
+ }
367
+ },
368
+ "interaction_state_model": {
369
+ "type": "array",
370
+ "items": {
371
+ "type": "string"
372
+ }
373
+ },
374
+ "data_realism_requirements": {
375
+ "type": "array",
376
+ "items": {
377
+ "type": "string"
378
+ }
379
+ },
380
+ "visual_language": {
381
+ "type": "array",
382
+ "items": {
383
+ "type": "string"
384
+ }
385
+ },
386
+ "anti_generic_constraints": {
387
+ "type": "array",
388
+ "items": {
389
+ "type": "string"
390
+ }
391
+ },
392
+ "category_quality_bar": {
393
+ "type": "array",
394
+ "items": {
395
+ "type": "string"
396
+ }
397
+ }
398
+ },
399
+ "additionalProperties": true
400
+ },
401
+ "prototype_system_contract": {
402
+ "type": "object",
403
+ "required": [
404
+ "stable_app_shell",
405
+ "navigation_taxonomy",
406
+ "data_vocabulary",
407
+ "domain_object_anatomy",
408
+ "object_detail_anatomy",
409
+ "action_bar_contract",
410
+ "audit_trust_pattern",
411
+ "copy_tone",
412
+ "allowed_screen_deltas"
413
+ ],
414
+ "properties": {
415
+ "stable_app_shell": {
416
+ "type": "array",
417
+ "items": {
418
+ "type": "string"
419
+ }
420
+ },
421
+ "navigation_taxonomy": {
422
+ "type": "array",
423
+ "items": {
424
+ "type": "string"
425
+ }
426
+ },
427
+ "data_vocabulary": {
428
+ "type": "array",
429
+ "items": {
430
+ "type": "string"
431
+ }
432
+ },
433
+ "domain_object_anatomy": {
434
+ "type": "array",
435
+ "items": {
436
+ "type": "string"
437
+ }
438
+ },
439
+ "object_detail_anatomy": {
440
+ "type": "array",
441
+ "items": {
442
+ "type": "string"
443
+ }
444
+ },
445
+ "action_bar_contract": {
446
+ "type": "array",
447
+ "items": {
448
+ "type": "string"
449
+ }
450
+ },
451
+ "audit_trust_pattern": {
452
+ "type": "array",
453
+ "items": {
454
+ "type": "string"
455
+ }
456
+ },
457
+ "copy_tone": {
458
+ "type": "string"
459
+ },
460
+ "allowed_screen_deltas": {
461
+ "type": "array",
462
+ "items": {
463
+ "type": "string"
464
+ }
465
+ }
466
+ },
467
+ "additionalProperties": true
468
+ },
469
+ "prototype_reality_gate": {
470
+ "type": "object",
471
+ "required": [
472
+ "status",
473
+ "trigger",
474
+ "required_when_prompt_text_ready",
475
+ "dimensions",
476
+ "failures",
477
+ "outcome_notes",
478
+ "repair_route"
479
+ ],
480
+ "properties": {
481
+ "status": {
482
+ "type": "string",
483
+ "enum": [
484
+ "pending",
485
+ "pass",
486
+ "fail"
487
+ ]
488
+ },
489
+ "trigger": {
490
+ "const": "before_image_generation"
491
+ },
492
+ "required_when_prompt_text_ready": {
493
+ "type": "boolean"
494
+ },
495
+ "dimensions": {
496
+ "type": "array",
497
+ "items": {
498
+ "type": "string",
499
+ "enum": [
500
+ "product_category_fit",
501
+ "primary_canvas_fit",
502
+ "domain_object_realism",
503
+ "task_loop_completeness",
504
+ "interaction_state_coverage",
505
+ "data_realism",
506
+ "anti_generic_constraints"
507
+ ]
508
+ }
509
+ },
510
+ "failures": {
511
+ "type": "array",
512
+ "items": {
513
+ "type": "string"
514
+ }
515
+ },
516
+ "outcome_notes": {
517
+ "type": "array",
518
+ "items": {
519
+ "type": "string"
520
+ }
521
+ },
522
+ "repair_route": {
523
+ "const": "/ow:vision2prompt"
524
+ }
525
+ },
526
+ "additionalProperties": true
527
+ },
528
+ "prompt_pack_integrity_gate": {
529
+ "type": "object",
530
+ "required": [
531
+ "status",
532
+ "trigger",
533
+ "required_when_prompt_text_ready",
534
+ "dimensions",
535
+ "failures",
536
+ "outcome_notes",
537
+ "repair_route"
538
+ ],
539
+ "properties": {
540
+ "status": {
541
+ "type": "string",
542
+ "enum": [
543
+ "pending",
544
+ "pass",
545
+ "fail"
546
+ ]
547
+ },
548
+ "trigger": {
549
+ "const": "before_image_generation"
550
+ },
551
+ "required_when_prompt_text_ready": {
552
+ "type": "boolean"
553
+ },
554
+ "dimensions": {
555
+ "type": "array",
556
+ "items": {
557
+ "type": "string",
558
+ "enum": [
559
+ "direction_count_matches",
560
+ "prompt_text_refs_resolve",
561
+ "generated_image_refs_resolve"
562
+ ]
563
+ }
564
+ },
565
+ "failures": {
566
+ "type": "array",
567
+ "items": {
568
+ "type": "string"
569
+ }
570
+ },
571
+ "outcome_notes": {
572
+ "type": "array",
573
+ "items": {
574
+ "type": "string"
575
+ }
576
+ },
577
+ "repair_route": {
578
+ "const": "/ow:vision2prompt"
579
+ }
580
+ },
581
+ "additionalProperties": true
582
+ },
583
+ "directions": {
584
+ "type": "array",
585
+ "items": {
586
+ "type": "object",
587
+ "required": [
588
+ "direction_id",
589
+ "name",
590
+ "strategic_hypothesis",
591
+ "validates",
592
+ "main_risk",
593
+ "distinctness_rationale",
594
+ "prototype_prompt",
595
+ "screen_prompts",
596
+ "pm_judgment"
597
+ ],
598
+ "properties": {
599
+ "direction_id": {
600
+ "type": "string"
601
+ },
602
+ "name": {
603
+ "type": "string"
604
+ },
605
+ "strategic_hypothesis": {
606
+ "type": "string"
607
+ },
608
+ "validates": {
609
+ "type": "string"
610
+ },
611
+ "main_risk": {
612
+ "type": "string"
613
+ },
614
+ "distinctness_rationale": {
615
+ "type": "string"
616
+ },
617
+ "prototype_prompt": {
618
+ "type": "string"
619
+ },
620
+ "screen_prompts": {
621
+ "type": "array",
622
+ "items": {
623
+ "type": "object",
624
+ "required": [
625
+ "prompt_id",
626
+ "screen_name",
627
+ "image_role",
628
+ "prompt",
629
+ "acceptance_criteria"
630
+ ],
631
+ "properties": {
632
+ "prompt_id": {
633
+ "type": "string"
634
+ },
635
+ "target_screen_id": {
636
+ "type": "string"
637
+ },
638
+ "screen_name": {
639
+ "type": "string"
640
+ },
641
+ "image_role": {
642
+ "type": "string"
643
+ },
644
+ "prompt": {
645
+ "type": "string"
646
+ },
647
+ "standalone_prompt": {
648
+ "type": "string"
649
+ },
650
+ "negative_prompt": {
651
+ "type": "string"
652
+ },
653
+ "example_copy": {
654
+ "type": "array",
655
+ "items": {
656
+ "type": "string"
657
+ }
658
+ },
659
+ "acceptance_criteria": {
660
+ "type": "array",
661
+ "items": {
662
+ "type": "string"
663
+ }
664
+ }
665
+ },
666
+ "additionalProperties": true
667
+ }
668
+ },
669
+ "pm_judgment": {
670
+ "type": "string"
671
+ }
672
+ },
673
+ "additionalProperties": true
674
+ }
675
+ },
676
+ "build_recommendation": {
677
+ "type": "object",
678
+ "required": [
679
+ "first_direction_id",
680
+ "why_first",
681
+ "success_signals",
682
+ "failure_signals",
683
+ "next_test_if_it_works"
684
+ ],
685
+ "additionalProperties": true
686
+ },
687
+ "tune_input": {
688
+ "type": "object",
689
+ "required": [
690
+ "baseline_source_type",
691
+ "baseline_refs",
692
+ "tune_request",
693
+ "regeneration_scope"
694
+ ],
695
+ "additionalProperties": true
696
+ },
697
+ "baseline_resolution": {
698
+ "type": "object",
699
+ "required": [
700
+ "latest_approved_baseline_group_id",
701
+ "latest_approved_baseline_ref",
702
+ "baseline_lineage",
703
+ "resolution_rule",
704
+ "stale_source_guard"
705
+ ],
706
+ "properties": {
707
+ "latest_approved_baseline_group_id": {
708
+ "type": "string"
709
+ },
710
+ "latest_approved_baseline_ref": {
711
+ "type": "string"
712
+ },
713
+ "baseline_lineage": {
714
+ "type": "array",
715
+ "items": {
716
+ "type": "string"
717
+ }
718
+ },
719
+ "resolution_rule": {
720
+ "type": "string"
721
+ },
722
+ "stale_source_guard": {
723
+ "type": "string"
724
+ }
725
+ },
726
+ "additionalProperties": true
727
+ },
728
+ "carry_forward": {
729
+ "type": "object",
730
+ "required": [
731
+ "locked_screens",
732
+ "locked_elements",
733
+ "preserved_improvements",
734
+ "explicit_unlocks",
735
+ "cumulative_drift_guard"
736
+ ],
737
+ "properties": {
738
+ "locked_screens": {
739
+ "type": "array",
740
+ "items": {
741
+ "type": "string"
742
+ }
743
+ },
744
+ "locked_elements": {
745
+ "type": "array",
746
+ "items": {
747
+ "type": "string"
748
+ }
749
+ },
750
+ "preserved_improvements": {
751
+ "type": "array",
752
+ "items": {
753
+ "type": "string"
754
+ }
755
+ },
756
+ "explicit_unlocks": {
757
+ "type": "array",
758
+ "items": {
759
+ "type": "string"
760
+ }
761
+ },
762
+ "cumulative_drift_guard": {
763
+ "type": "string"
764
+ }
765
+ },
766
+ "additionalProperties": true
767
+ },
768
+ "baseline_audit": {
769
+ "type": "array",
770
+ "items": {
771
+ "type": "object",
772
+ "required": [
773
+ "source_screen_id",
774
+ "screen_name",
775
+ "journey_stage",
776
+ "user_goal",
777
+ "system_state",
778
+ "components",
779
+ "must_preserve"
780
+ ],
781
+ "additionalProperties": true
782
+ }
783
+ },
784
+ "product_system": {
785
+ "type": "object",
786
+ "required": [
787
+ "product_thesis",
788
+ "primary_loop",
789
+ "component_vocabulary",
790
+ "copywriting_style",
791
+ "trust_and_boundary_system",
792
+ "stable_constants",
793
+ "adaptable_variables"
794
+ ],
795
+ "additionalProperties": true
796
+ },
797
+ "delta_rules": {
798
+ "type": "object",
799
+ "properties": {
800
+ "must_inherit": {
801
+ "type": "array",
802
+ "items": {
803
+ "type": "string"
804
+ }
805
+ },
806
+ "must_add": {
807
+ "type": "array",
808
+ "items": {
809
+ "type": "string"
810
+ }
811
+ },
812
+ "must_remove": {
813
+ "type": "array",
814
+ "items": {
815
+ "type": "string"
816
+ }
817
+ },
818
+ "flexible_change": {
819
+ "type": "array",
820
+ "items": {
821
+ "type": "string"
822
+ }
823
+ }
824
+ },
825
+ "additionalProperties": true
826
+ },
827
+ "screen_delta_matrix": {
828
+ "type": "array",
829
+ "items": {
830
+ "type": "object",
831
+ "required": [
832
+ "target_screen_id",
833
+ "source_screen_ids",
834
+ "preserve",
835
+ "add",
836
+ "remove",
837
+ "transform",
838
+ "flexible",
839
+ "acceptance_criteria"
840
+ ],
841
+ "additionalProperties": true
842
+ }
843
+ },
844
+ "screen_manifest": {
845
+ "type": "array",
846
+ "items": {
847
+ "type": "object",
848
+ "required": [
849
+ "target_screen_id",
850
+ "screen_name",
851
+ "generation_order"
852
+ ],
853
+ "properties": {
854
+ "target_screen_id": {
855
+ "type": "string"
856
+ },
857
+ "screen_name": {
858
+ "type": "string"
859
+ },
860
+ "source_screen_ids": {
861
+ "type": "array",
862
+ "items": {
863
+ "type": "string"
864
+ }
865
+ },
866
+ "journey_stage": {
867
+ "type": "string"
868
+ },
869
+ "user_goal": {
870
+ "type": "string"
871
+ },
872
+ "system_state": {
873
+ "type": "string"
874
+ },
875
+ "selected_object": {
876
+ "type": [
877
+ "string",
878
+ "null"
879
+ ]
880
+ },
881
+ "required_components": {
882
+ "type": "array",
883
+ "items": {
884
+ "type": "string"
885
+ }
886
+ },
887
+ "required_data_fields": {
888
+ "type": "array",
889
+ "items": {
890
+ "type": "string"
891
+ }
892
+ },
893
+ "primary_actions": {
894
+ "type": "array",
895
+ "items": {
896
+ "type": "string"
897
+ }
898
+ },
899
+ "ai_behavior": {
900
+ "type": [
901
+ "string",
902
+ "null"
903
+ ]
904
+ },
905
+ "non_ai_rationale": {
906
+ "type": [
907
+ "string",
908
+ "null"
909
+ ]
910
+ },
911
+ "trust_controls": {
912
+ "type": "array",
913
+ "items": {
914
+ "type": "string"
915
+ }
916
+ },
917
+ "example_copy": {
918
+ "type": "array",
919
+ "items": {
920
+ "type": "string"
921
+ }
922
+ },
923
+ "acceptance_criteria": {
924
+ "type": "array",
925
+ "items": {
926
+ "type": "string"
927
+ }
928
+ },
929
+ "generation_order": {
930
+ "type": "number"
931
+ }
932
+ },
933
+ "additionalProperties": true
934
+ }
935
+ },
936
+ "global_design_prompt": {
937
+ "type": "string"
938
+ },
939
+ "global_design_system_prompt": {
940
+ "type": "object",
941
+ "properties": {
942
+ "visual_language": {
943
+ "type": "string"
944
+ },
945
+ "layout_system": {
946
+ "type": "string"
947
+ },
948
+ "component_vocabulary": {
949
+ "type": "array",
950
+ "items": {
951
+ "type": "string"
952
+ }
953
+ },
954
+ "information_density": {
955
+ "type": "string"
956
+ },
957
+ "copy_tone": {
958
+ "type": "string"
959
+ },
960
+ "responsive_canvas_rules": {
961
+ "type": "array",
962
+ "items": {
963
+ "type": "string"
964
+ }
965
+ },
966
+ "negative_visual_patterns": {
967
+ "type": "array",
968
+ "items": {
969
+ "type": "string"
970
+ }
971
+ }
972
+ },
973
+ "additionalProperties": true
974
+ },
975
+ "quality_rubric": {
976
+ "type": "object",
977
+ "properties": {
978
+ "prompt_executability": {
979
+ "type": "array",
980
+ "items": {
981
+ "type": "string"
982
+ }
983
+ },
984
+ "strategic_distinctness": {
985
+ "type": "array",
986
+ "items": {
987
+ "type": "string"
988
+ }
989
+ },
990
+ "product_specificity": {
991
+ "type": "array",
992
+ "items": {
993
+ "type": "string"
994
+ }
995
+ },
996
+ "state_coverage": {
997
+ "type": "array",
998
+ "items": {
999
+ "type": "string"
1000
+ }
1001
+ },
1002
+ "trust_boundary_coverage": {
1003
+ "type": "array",
1004
+ "items": {
1005
+ "type": "string"
1006
+ }
1007
+ },
1008
+ "prompt_paragraph_quality": {
1009
+ "type": "array",
1010
+ "items": {
1011
+ "type": "string"
1012
+ }
1013
+ }
1014
+ },
1015
+ "additionalProperties": true
1016
+ },
1017
+ "screen_prompts": {
1018
+ "type": "array",
1019
+ "items": {
1020
+ "type": "object",
1021
+ "required": [
1022
+ "prompt_id",
1023
+ "target_screen_id",
1024
+ "source_screen_ids",
1025
+ "screen_name",
1026
+ "image_role",
1027
+ "prompt",
1028
+ "negative_prompt",
1029
+ "acceptance_criteria"
1030
+ ],
1031
+ "properties": {
1032
+ "prompt_id": {
1033
+ "type": "string"
1034
+ },
1035
+ "target_screen_id": {
1036
+ "type": "string"
1037
+ },
1038
+ "screen_name": {
1039
+ "type": "string"
1040
+ },
1041
+ "prompt": {
1042
+ "type": "string"
1043
+ },
1044
+ "standalone_prompt": {
1045
+ "type": "string"
1046
+ },
1047
+ "negative_prompt": {
1048
+ "type": "string"
1049
+ },
1050
+ "example_copy": {
1051
+ "type": "array",
1052
+ "items": {
1053
+ "type": "string"
1054
+ }
1055
+ },
1056
+ "acceptance_criteria": {
1057
+ "type": "array",
1058
+ "items": {
1059
+ "type": "string"
1060
+ }
1061
+ }
1062
+ },
1063
+ "additionalProperties": true
1064
+ }
1065
+ },
1066
+ "generation_order": {
1067
+ "type": "array",
1068
+ "items": {
1069
+ "type": "string"
1070
+ }
1071
+ },
1072
+ "acceptance_checklist": {
1073
+ "type": "array",
1074
+ "items": {
1075
+ "type": "string"
1076
+ }
1077
+ },
1078
+ "negative_constraints": {
1079
+ "type": "array",
1080
+ "items": {
1081
+ "type": "string"
1082
+ }
1083
+ },
1084
+ "prompt_text_manifest": {
1085
+ "type": "object",
1086
+ "required": [
1087
+ "status",
1088
+ "directions_ready",
1089
+ "direction_count",
1090
+ "prompt_text_refs"
1091
+ ],
1092
+ "properties": {
1093
+ "status": {
1094
+ "type": "string",
1095
+ "enum": [
1096
+ "draft",
1097
+ "ready_for_image_generation",
1098
+ "generated"
1099
+ ]
1100
+ },
1101
+ "directions_ready": {
1102
+ "type": "boolean"
1103
+ },
1104
+ "direction_count": {
1105
+ "type": "number",
1106
+ "minimum": 0
1107
+ },
1108
+ "prompt_text_refs": {
1109
+ "type": "array",
1110
+ "items": {
1111
+ "type": "string"
1112
+ }
1113
+ },
1114
+ "paragraph_quality_status": {
1115
+ "type": "string",
1116
+ "enum": [
1117
+ "pending",
1118
+ "pass",
1119
+ "fail"
1120
+ ]
1121
+ },
1122
+ "paragraph_quality_dimensions": {
1123
+ "type": "array",
1124
+ "items": {
1125
+ "type": "string",
1126
+ "enum": [
1127
+ "product_context",
1128
+ "target_user",
1129
+ "journey",
1130
+ "screens_or_components",
1131
+ "interaction_or_system_response",
1132
+ "concrete_content",
1133
+ "trust_or_user_control",
1134
+ "visual_direction",
1135
+ "anti_goals",
1136
+ "desired_user_feeling",
1137
+ "journey_or_screen_purpose",
1138
+ "user_goal_or_system_state",
1139
+ "components_or_domain_objects",
1140
+ "actions_or_system_response",
1141
+ "negative_constraints",
1142
+ "acceptance_or_user_feeling"
1143
+ ]
1144
+ }
1145
+ }
1146
+ },
1147
+ "additionalProperties": true
1148
+ },
1149
+ "post_validate": {
1150
+ "type": "object",
1151
+ "required": [
1152
+ "status",
1153
+ "trigger",
1154
+ "required_when_direction_count_gte",
1155
+ "skip_when_resolved_count",
1156
+ "threshold_policy",
1157
+ "fingerprint_dimensions",
1158
+ "comparisons",
1159
+ "failures",
1160
+ "outcome_notes",
1161
+ "repair_route"
1162
+ ],
1163
+ "properties": {
1164
+ "status": {
1165
+ "type": "string",
1166
+ "enum": [
1167
+ "pending",
1168
+ "pass",
1169
+ "fail",
1170
+ "skipped"
1171
+ ]
1172
+ },
1173
+ "trigger": {
1174
+ "const": "after_prompt_assets_ready"
1175
+ },
1176
+ "required_when_direction_count_gte": {
1177
+ "type": "number",
1178
+ "minimum": 2
1179
+ },
1180
+ "skip_when_resolved_count": {
1181
+ "type": "number",
1182
+ "const": 1
1183
+ },
1184
+ "threshold_policy": {
1185
+ "type": "object",
1186
+ "required": [
1187
+ "method",
1188
+ "max_pairwise_similarity",
1189
+ "comparison"
1190
+ ],
1191
+ "properties": {
1192
+ "method": {
1193
+ "const": "strategic_fingerprint_similarity"
1194
+ },
1195
+ "max_pairwise_similarity": {
1196
+ "type": "number",
1197
+ "minimum": 0,
1198
+ "maximum": 1
1199
+ },
1200
+ "comparison": {
1201
+ "const": "pairwise"
1202
+ }
1203
+ },
1204
+ "additionalProperties": true
1205
+ },
1206
+ "fingerprint_dimensions": {
1207
+ "type": "array",
1208
+ "items": {
1209
+ "type": "string",
1210
+ "enum": [
1211
+ "product_form",
1212
+ "trigger",
1213
+ "interaction_model",
1214
+ "emotional_driver",
1215
+ "retention_mechanism",
1216
+ "metric",
1217
+ "main_risk",
1218
+ "trust_model",
1219
+ "privacy_model"
1220
+ ]
1221
+ }
1222
+ },
1223
+ "comparisons": {
1224
+ "type": "array",
1225
+ "items": {
1226
+ "type": "object",
1227
+ "additionalProperties": true
1228
+ }
1229
+ },
1230
+ "failures": {
1231
+ "type": "array",
1232
+ "items": {
1233
+ "type": "object",
1234
+ "additionalProperties": true
1235
+ }
1236
+ },
1237
+ "outcome_notes": {
1238
+ "type": "array",
1239
+ "items": {
1240
+ "type": "string"
1241
+ }
1242
+ },
1243
+ "repair_route": {
1244
+ "const": "/ow:vision2prompt"
1245
+ }
1246
+ },
1247
+ "additionalProperties": true
1248
+ },
1249
+ "image_generation": {
1250
+ "type": "object",
1251
+ "required": [
1252
+ "status",
1253
+ "batch_strategy",
1254
+ "generated_images",
1255
+ "collection_notes"
1256
+ ],
1257
+ "properties": {
1258
+ "status": {
1259
+ "type": "string",
1260
+ "enum": [
1261
+ "not_started",
1262
+ "queued",
1263
+ "in_progress",
1264
+ "complete",
1265
+ "blocked"
1266
+ ]
1267
+ },
1268
+ "batch_strategy": {
1269
+ "type": "string"
1270
+ },
1271
+ "generated_images": {
1272
+ "type": "array",
1273
+ "items": {
1274
+ "type": "object",
1275
+ "required": [
1276
+ "image_id",
1277
+ "direction_id",
1278
+ "prompt_id",
1279
+ "screen_name",
1280
+ "path",
1281
+ "metadata"
1282
+ ],
1283
+ "properties": {
1284
+ "image_id": {
1285
+ "type": "string"
1286
+ },
1287
+ "direction_id": {
1288
+ "type": "string"
1289
+ },
1290
+ "prompt_id": {
1291
+ "type": "string"
1292
+ },
1293
+ "screen_name": {
1294
+ "type": "string"
1295
+ },
1296
+ "path": {
1297
+ "type": "string"
1298
+ },
1299
+ "metadata": {
1300
+ "type": "object",
1301
+ "required": [
1302
+ "source_prompt_ref",
1303
+ "generated_at",
1304
+ "generator",
1305
+ "generation_status",
1306
+ "review_status"
1307
+ ],
1308
+ "additionalProperties": true
1309
+ }
1310
+ },
1311
+ "additionalProperties": true
1312
+ }
1313
+ },
1314
+ "collection_notes": {
1315
+ "type": "array",
1316
+ "items": {
1317
+ "type": "string"
1318
+ }
1319
+ }
1320
+ },
1321
+ "additionalProperties": true
1322
+ },
1323
+ "review_plan": {
1324
+ "type": "object",
1325
+ "additionalProperties": true
1326
+ },
1327
+ "review_evidence": {
1328
+ "type": "object",
1329
+ "additionalProperties": true
1330
+ }
1331
+ },
1332
+ "additionalProperties": true
1333
+ }