project-tiny-context-harness 0.11.0 → 0.12.0
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/README.md +73 -543
- package/assets/agents/AGENTS_CORE.md +11 -87
- package/assets/tools/context_rules.json +2 -1
- package/dist/commands/context-inspect.js +19 -89
- package/dist/commands/context-list.d.ts +1 -0
- package/dist/commands/context-list.js +24 -0
- package/dist/commands/context.js +4 -0
- package/dist/commands/doctor.js +1 -18
- package/dist/commands/index.js +33 -63
- package/dist/commands/init.d.ts +0 -2
- package/dist/commands/init.js +26 -108
- package/dist/commands/upgrade.js +14 -2
- package/dist/commands/validate.js +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/lib/config.js +14 -45
- package/dist/lib/constants.d.ts +1 -1
- package/dist/lib/constants.js +1 -1
- package/dist/lib/context-catalog/catalog-default-footprint.d.ts +1 -1
- package/dist/lib/context-catalog/catalog-default-footprint.js +5 -7
- package/dist/lib/context-catalog/catalog-load.js +19 -1
- package/dist/lib/context-catalog/catalog-path-validation.js +10 -0
- package/dist/lib/context-catalog/catalog-validation.js +13 -5
- package/dist/lib/context-controlling-source.d.ts +4 -0
- package/dist/lib/context-controlling-source.js +106 -0
- package/dist/lib/context-create/context-create.js +2 -0
- package/dist/lib/context-default-footprint.js +2 -0
- package/dist/lib/context-doctor/context-doctor-types.d.ts +0 -10
- package/dist/lib/context-doctor/context-doctor-types.js +0 -12
- package/dist/lib/context-export.js +17 -9
- package/dist/lib/context-inspect/context-inspect-projection.d.ts +1 -2
- package/dist/lib/context-inspect/context-inspect-projection.js +0 -1
- package/dist/lib/context-inspect/context-inspect-render.js +0 -8
- package/dist/lib/context-inspect/context-inspect-types.d.ts +0 -14
- package/dist/lib/context-inspect/context-inspect.js +0 -27
- package/dist/lib/context-manifest-schema.d.ts +1 -0
- package/dist/lib/context-manifest-schema.js +2 -1
- package/dist/lib/context-manifest.js +1 -41
- package/dist/lib/context-markdown/context-markdown-analysis.js +8 -0
- package/dist/lib/context-markdown/context-markdown-extract.d.ts +2 -1
- package/dist/lib/context-markdown/context-markdown-extract.js +20 -0
- package/dist/lib/context-markdown/context-markdown-types.d.ts +26 -0
- package/dist/lib/context-move/context-move.js +3 -2
- package/dist/lib/context-mutation/manifest-lossless-patch.js +11 -0
- package/dist/lib/context-mutation/mutation-commit.js +2 -2
- package/dist/lib/context-mutation/mutation-interlock.d.ts +1 -0
- package/dist/lib/context-mutation/mutation-interlock.js +9 -0
- package/dist/lib/context-mutation/mutation-recovery.js +3 -3
- package/dist/lib/context-register/context-register.js +3 -0
- package/dist/lib/context-templates.d.ts +0 -4
- package/dist/lib/context-templates.js +1 -210
- package/dist/lib/doctor.d.ts +2 -2
- package/dist/lib/doctor.js +44 -133
- package/dist/lib/init.js +34 -39
- package/dist/lib/maintenance-lock.d.ts +3 -0
- package/dist/lib/maintenance-lock.js +203 -0
- package/dist/lib/maintenance-write.d.ts +3 -0
- package/dist/lib/maintenance-write.js +55 -0
- package/dist/lib/migrations.d.ts +1 -20
- package/dist/lib/migrations.js +48 -755
- package/dist/lib/package-json-config.js +34 -21
- package/dist/lib/package-source.js +27 -14
- package/dist/lib/repository-path-safety.d.ts +2 -0
- package/dist/lib/repository-path-safety.js +20 -0
- package/dist/lib/retirement-assets.d.ts +13 -0
- package/dist/lib/retirement-assets.js +182 -0
- package/dist/lib/retirement-binding.d.ts +10 -0
- package/dist/lib/retirement-binding.js +59 -0
- package/dist/lib/retirement-defaults.d.ts +7 -0
- package/dist/lib/retirement-defaults.js +29 -0
- package/dist/lib/retirement-plan.d.ts +10 -0
- package/dist/lib/retirement-plan.js +96 -0
- package/dist/lib/retirement-preflight.d.ts +2 -0
- package/dist/lib/retirement-preflight.js +13 -0
- package/dist/lib/retirement-references.d.ts +6 -0
- package/dist/lib/retirement-references.js +102 -0
- package/dist/lib/retirement-runner.d.ts +22 -0
- package/dist/lib/retirement-runner.js +217 -0
- package/dist/lib/schema-guard.d.ts +1 -0
- package/dist/lib/schema-guard.js +47 -6
- package/dist/lib/source-files.d.ts +0 -2
- package/dist/lib/source-files.js +0 -21
- package/dist/lib/source-pack-export.js +4 -1
- package/dist/lib/source-pack-manifest.js +93 -38
- package/dist/lib/sync-engine.d.ts +7 -1
- package/dist/lib/sync-engine.js +38 -336
- package/dist/lib/types.d.ts +0 -19
- package/dist/lib/upgrade.d.ts +3 -2
- package/dist/lib/upgrade.js +30 -40
- package/dist/lib/validators.d.ts +3 -3
- package/dist/lib/validators.js +72 -401
- package/dist/public-api-core.d.ts +14 -11
- package/dist/public-api-core.js +14 -11
- package/dist/public-types.d.ts +7 -13
- package/migrations/README.md +19 -178
- package/migrations/schema-4-owned-assets.json +170 -0
- package/package.json +14 -20
- package/source-mappings.yaml +3 -39
- package/assets/README.md +0 -944
- package/assets/README.zh-CN.md +0 -556
- package/assets/agents/.gitkeep +0 -1
- package/assets/agents/long-task-implementation.toml +0 -15
- package/assets/context_templates/architecture.md +0 -37
- package/assets/context_templates/area.md +0 -40
- package/assets/context_templates/context.toml +0 -46
- package/assets/context_templates/deployment.md +0 -35
- package/assets/context_templates/global.md +0 -57
- package/assets/context_templates/product-surface-contract.md +0 -70
- package/assets/context_templates/screen-contract.md +0 -205
- package/assets/context_templates/verification.md +0 -35
- package/assets/github/.gitkeep +0 -1
- package/assets/github/harness.yml +0 -41
- package/assets/make/.gitkeep +0 -1
- package/assets/make/ty-context.mk +0 -48
- package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_helpers.cs +0 -301
- package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_run.cs +0 -197
- package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_types.cs +0 -215
- package/assets/runtime/windows-job-supervisor/windows_job_process_supervisor.ps1 +0 -117
- package/assets/skills/context_development_engineer/SKILL.md +0 -58
- package/assets/skills/context_development_engineer/references/engineering-design-reasoning.md +0 -93
- package/assets/skills/context_full_project_export/SKILL.md +0 -70
- package/assets/skills/context_harness_upgrade/SKILL.md +0 -60
- package/assets/skills/context_product_plan/SKILL.md +0 -42
- package/assets/skills/context_surface_contract/SKILL.md +0 -205
- package/assets/skills/context_uiux_design/SKILL.md +0 -53
- package/assets/skills/context_uiux_design/references/task-uiux-analysis.md +0 -82
- package/assets/skills/design-resource-authoring/SKILL.md +0 -63
- package/assets/skills/design-resource-authoring/references/authority-delta-assessment.md +0 -52
- package/assets/skills/design-resource-authoring/references/downstream-handoff.md +0 -67
- package/assets/skills/design-resource-authoring/references/formal-selected-web-app-handoff.md +0 -114
- package/assets/skills/design-resource-authoring/references/implementation-feasibility.md +0 -111
- package/assets/skills/design-resource-authoring/references/open-design-provider.md +0 -198
- package/assets/skills/design-resource-authoring/references/recovery-and-writeback.md +0 -205
- package/assets/skills/design-resource-authoring/references/resource-selection.md +0 -290
- package/assets/skills/design-system-authoring/SKILL.md +0 -63
- package/assets/skills/design-system-authoring/agents/openai.yaml +0 -6
- package/assets/skills/design-system-authoring/references/authority-adoption.md +0 -58
- package/assets/skills/design-system-authoring/references/open-design-design-system-provider.md +0 -114
- package/assets/skills/long-task-workflow/SKILL.md +0 -75
- package/assets/skills/long-task-workflow/agents/openai.yaml +0 -6
- package/assets/skills/long-task-workflow/references/authority-lifecycle.md +0 -86
- package/assets/skills/long-task-workflow/references/contract-authoring.md +0 -152
- package/assets/skills/long-task-workflow/references/evidence-design.md +0 -132
- package/assets/skills/long-task-workflow/references/source-authoring.md +0 -126
- package/assets/tools/validate_context.py +0 -667
- package/dist/commands/check-modularity.d.ts +0 -1
- package/dist/commands/check-modularity.js +0 -181
- package/dist/commands/composite-campaign.d.ts +0 -1
- package/dist/commands/composite-campaign.js +0 -8
- package/dist/commands/composite-long-task.d.ts +0 -1
- package/dist/commands/composite-long-task.js +0 -8
- package/dist/commands/delivery-set.d.ts +0 -1
- package/dist/commands/delivery-set.js +0 -8
- package/dist/commands/design-authority-delta.d.ts +0 -1
- package/dist/commands/design-authority-delta.js +0 -53
- package/dist/commands/design-authority.d.ts +0 -1
- package/dist/commands/design-authority.js +0 -104
- package/dist/commands/design-resource-recovery.d.ts +0 -1
- package/dist/commands/design-resource-recovery.js +0 -152
- package/dist/commands/design-resource.d.ts +0 -1
- package/dist/commands/design-resource.js +0 -132
- package/dist/commands/disable.d.ts +0 -1
- package/dist/commands/disable.js +0 -15
- package/dist/commands/enable.d.ts +0 -1
- package/dist/commands/enable.js +0 -16
- package/dist/commands/long-task-authoring.d.ts +0 -3
- package/dist/commands/long-task-authoring.js +0 -234
- package/dist/commands/long-task-command-args.d.ts +0 -4
- package/dist/commands/long-task-command-args.js +0 -26
- package/dist/commands/long-task-explain.d.ts +0 -1
- package/dist/commands/long-task-explain.js +0 -52
- package/dist/commands/long-task-revision.d.ts +0 -1
- package/dist/commands/long-task-revision.js +0 -177
- package/dist/commands/long-task-workdir.d.ts +0 -2
- package/dist/commands/long-task-workdir.js +0 -23
- package/dist/commands/long-task.d.ts +0 -1
- package/dist/commands/long-task.js +0 -212
- package/dist/commands/route.d.ts +0 -15
- package/dist/commands/route.js +0 -142
- package/dist/lib/compact-authoring-support.d.ts +0 -22
- package/dist/lib/compact-authoring-support.js +0 -143
- package/dist/lib/compact-shared-structure-authoring.d.ts +0 -5
- package/dist/lib/compact-shared-structure-authoring.js +0 -9
- package/dist/lib/compact-shared-structure-types.d.ts +0 -61
- package/dist/lib/compact-shared-structure-types.js +0 -1
- package/dist/lib/compact-shared-structure-validation.d.ts +0 -2
- package/dist/lib/compact-shared-structure-validation.js +0 -159
- package/dist/lib/compact-shared-structures.d.ts +0 -3
- package/dist/lib/compact-shared-structures.js +0 -204
- package/dist/lib/context-doctor/context-doctor.d.ts +0 -2
- package/dist/lib/context-doctor/context-doctor.js +0 -130
- package/dist/lib/context-graph-snapshot.d.ts +0 -23
- package/dist/lib/context-graph-snapshot.js +0 -199
- package/dist/lib/context-mutation/mutation-long-task-guard.d.ts +0 -6
- package/dist/lib/context-mutation/mutation-long-task-guard.js +0 -57
- package/dist/lib/context-router/context-route-budget.d.ts +0 -15
- package/dist/lib/context-router/context-route-budget.js +0 -14
- package/dist/lib/context-router/context-route-candidates.d.ts +0 -15
- package/dist/lib/context-router/context-route-candidates.js +0 -112
- package/dist/lib/context-router/context-route-order.d.ts +0 -6
- package/dist/lib/context-router/context-route-order.js +0 -53
- package/dist/lib/context-router/context-route-paths.d.ts +0 -16
- package/dist/lib/context-router/context-route-paths.js +0 -109
- package/dist/lib/context-router/context-route-render.d.ts +0 -2
- package/dist/lib/context-router/context-route-render.js +0 -32
- package/dist/lib/context-router/context-route-scan.d.ts +0 -18
- package/dist/lib/context-router/context-route-scan.js +0 -156
- package/dist/lib/context-router/context-route-selection.d.ts +0 -16
- package/dist/lib/context-router/context-route-selection.js +0 -72
- package/dist/lib/context-router/context-route-terms.d.ts +0 -13
- package/dist/lib/context-router/context-route-terms.js +0 -202
- package/dist/lib/context-router/context-route-types.d.ts +0 -101
- package/dist/lib/context-router/context-route-types.js +0 -1
- package/dist/lib/context-router/context-route.d.ts +0 -2
- package/dist/lib/context-router/context-route.js +0 -127
- package/dist/lib/context-units-migration.d.ts +0 -13
- package/dist/lib/context-units-migration.js +0 -217
- package/dist/lib/design-authority-binding.d.ts +0 -7
- package/dist/lib/design-authority-binding.js +0 -96
- package/dist/lib/design-authority-closure.d.ts +0 -3
- package/dist/lib/design-authority-closure.js +0 -201
- package/dist/lib/design-authority-delta-codec-primitives.d.ts +0 -10
- package/dist/lib/design-authority-delta-codec-primitives.js +0 -58
- package/dist/lib/design-authority-delta-codec.d.ts +0 -2
- package/dist/lib/design-authority-delta-codec.js +0 -193
- package/dist/lib/design-authority-delta-types.d.ts +0 -65
- package/dist/lib/design-authority-delta-types.js +0 -6
- package/dist/lib/design-authority-delta-validation.d.ts +0 -2
- package/dist/lib/design-authority-delta-validation.js +0 -16
- package/dist/lib/design-authority-digest.d.ts +0 -8
- package/dist/lib/design-authority-digest.js +0 -36
- package/dist/lib/design-authority-files.d.ts +0 -9
- package/dist/lib/design-authority-files.js +0 -62
- package/dist/lib/design-authority-format.d.ts +0 -2
- package/dist/lib/design-authority-format.js +0 -93
- package/dist/lib/design-authority-links.d.ts +0 -10
- package/dist/lib/design-authority-links.js +0 -137
- package/dist/lib/design-authority-manifest.d.ts +0 -4
- package/dist/lib/design-authority-manifest.js +0 -144
- package/dist/lib/design-authority-tokens.d.ts +0 -9
- package/dist/lib/design-authority-tokens.js +0 -45
- package/dist/lib/design-authority-types.d.ts +0 -80
- package/dist/lib/design-authority-types.js +0 -23
- package/dist/lib/design-md-tool-adapter.d.ts +0 -9
- package/dist/lib/design-md-tool-adapter.js +0 -152
- package/dist/lib/design-md-tool-normalization.d.ts +0 -7
- package/dist/lib/design-md-tool-normalization.js +0 -78
- package/dist/lib/design-md-tool-types.d.ts +0 -99
- package/dist/lib/design-md-tool-types.js +0 -8
- package/dist/lib/design-md.d.ts +0 -12
- package/dist/lib/design-md.js +0 -169
- package/dist/lib/design-resource-fact-enums.d.ts +0 -24
- package/dist/lib/design-resource-fact-enums.js +0 -182
- package/dist/lib/design-resource-fact-locator-extractors.d.ts +0 -8
- package/dist/lib/design-resource-fact-locator-extractors.js +0 -108
- package/dist/lib/design-resource-fact-locator-resolver.d.ts +0 -3
- package/dist/lib/design-resource-fact-locator-resolver.js +0 -112
- package/dist/lib/design-resource-fact-locator-validation.d.ts +0 -5
- package/dist/lib/design-resource-fact-locator-validation.js +0 -16
- package/dist/lib/design-resource-fact-manifest-catalog.d.ts +0 -4
- package/dist/lib/design-resource-fact-manifest-catalog.js +0 -249
- package/dist/lib/design-resource-fact-manifest-model.d.ts +0 -91
- package/dist/lib/design-resource-fact-manifest-model.js +0 -21
- package/dist/lib/design-resource-fact-manifest-shape-axes.d.ts +0 -6
- package/dist/lib/design-resource-fact-manifest-shape-axes.js +0 -159
- package/dist/lib/design-resource-fact-manifest-shape-evidence.d.ts +0 -4
- package/dist/lib/design-resource-fact-manifest-shape-evidence.js +0 -59
- package/dist/lib/design-resource-fact-manifest-shape-facts.d.ts +0 -4
- package/dist/lib/design-resource-fact-manifest-shape-facts.js +0 -109
- package/dist/lib/design-resource-fact-manifest-shape-inspector.d.ts +0 -5
- package/dist/lib/design-resource-fact-manifest-shape-inspector.js +0 -144
- package/dist/lib/design-resource-fact-manifest-shape.d.ts +0 -7
- package/dist/lib/design-resource-fact-manifest-shape.js +0 -75
- package/dist/lib/design-resource-fact-manifest-types.d.ts +0 -3
- package/dist/lib/design-resource-fact-manifest-types.js +0 -3
- package/dist/lib/design-resource-fact-manifest-universe.d.ts +0 -5
- package/dist/lib/design-resource-fact-manifest-universe.js +0 -50
- package/dist/lib/design-resource-fact-manifest-validation.d.ts +0 -5
- package/dist/lib/design-resource-fact-manifest-validation.js +0 -111
- package/dist/lib/design-resource-fact-policy.d.ts +0 -43
- package/dist/lib/design-resource-fact-policy.js +0 -106
- package/dist/lib/design-resource-fact-property-methods.d.ts +0 -3
- package/dist/lib/design-resource-fact-property-methods.js +0 -158
- package/dist/lib/design-resource-fact-shape-primitives.d.ts +0 -3
- package/dist/lib/design-resource-fact-shape-primitives.js +0 -18
- package/dist/lib/design-resource-fact-types.d.ts +0 -164
- package/dist/lib/design-resource-fact-types.js +0 -1
- package/dist/lib/design-resource-fact-universe-assets.d.ts +0 -4
- package/dist/lib/design-resource-fact-universe-assets.js +0 -71
- package/dist/lib/design-resource-fact-universe-catalog.d.ts +0 -4
- package/dist/lib/design-resource-fact-universe-catalog.js +0 -161
- package/dist/lib/design-resource-fact-universe-conditions.d.ts +0 -2
- package/dist/lib/design-resource-fact-universe-conditions.js +0 -92
- package/dist/lib/design-resource-fact-universe-facts.d.ts +0 -4
- package/dist/lib/design-resource-fact-universe-facts.js +0 -108
- package/dist/lib/design-resource-fact-universe-helpers.d.ts +0 -30
- package/dist/lib/design-resource-fact-universe-helpers.js +0 -171
- package/dist/lib/design-resource-fact-universe-inspector.d.ts +0 -7
- package/dist/lib/design-resource-fact-universe-inspector.js +0 -119
- package/dist/lib/design-resource-fact-universe-proof.d.ts +0 -4
- package/dist/lib/design-resource-fact-universe-proof.js +0 -113
- package/dist/lib/design-resource-fact-universe-subjects.d.ts +0 -5
- package/dist/lib/design-resource-fact-universe-subjects.js +0 -97
- package/dist/lib/design-resource-fact-universe-variations.d.ts +0 -2
- package/dist/lib/design-resource-fact-universe-variations.js +0 -75
- package/dist/lib/design-resource-fact-value-validation.d.ts +0 -2
- package/dist/lib/design-resource-fact-value-validation.js +0 -80
- package/dist/lib/design-resource-handoff-bundle-draft.d.ts +0 -11
- package/dist/lib/design-resource-handoff-bundle-draft.js +0 -40
- package/dist/lib/design-resource-handoff-bundle.d.ts +0 -31
- package/dist/lib/design-resource-handoff-bundle.js +0 -152
- package/dist/lib/design-resource-handoff-file-primitives.d.ts +0 -4
- package/dist/lib/design-resource-handoff-file-primitives.js +0 -16
- package/dist/lib/design-resource-handoff-file-validation.d.ts +0 -2
- package/dist/lib/design-resource-handoff-file-validation.js +0 -47
- package/dist/lib/design-resource-handoff-input-types.d.ts +0 -14
- package/dist/lib/design-resource-handoff-input-types.js +0 -1
- package/dist/lib/design-resource-handoff-manifest-projection.d.ts +0 -4
- package/dist/lib/design-resource-handoff-manifest-projection.js +0 -41
- package/dist/lib/design-resource-handoff-parser.d.ts +0 -8
- package/dist/lib/design-resource-handoff-parser.js +0 -49
- package/dist/lib/design-resource-handoff-policy.d.ts +0 -4
- package/dist/lib/design-resource-handoff-policy.js +0 -143
- package/dist/lib/design-resource-handoff-set-integrity.d.ts +0 -8
- package/dist/lib/design-resource-handoff-set-integrity.js +0 -94
- package/dist/lib/design-resource-handoff-shape-evidence.d.ts +0 -6
- package/dist/lib/design-resource-handoff-shape-evidence.js +0 -187
- package/dist/lib/design-resource-handoff-shape-primitives.d.ts +0 -14
- package/dist/lib/design-resource-handoff-shape-primitives.js +0 -70
- package/dist/lib/design-resource-handoff-shape-structure.d.ts +0 -5
- package/dist/lib/design-resource-handoff-shape-structure.js +0 -239
- package/dist/lib/design-resource-handoff-shape.d.ts +0 -6
- package/dist/lib/design-resource-handoff-shape.js +0 -192
- package/dist/lib/design-resource-handoff-snapshot.d.ts +0 -6
- package/dist/lib/design-resource-handoff-snapshot.js +0 -25
- package/dist/lib/design-resource-handoff-types.d.ts +0 -264
- package/dist/lib/design-resource-handoff-types.js +0 -68
- package/dist/lib/design-resource-handoff-validation-coverage.d.ts +0 -4
- package/dist/lib/design-resource-handoff-validation-coverage.js +0 -223
- package/dist/lib/design-resource-handoff-validation-fact-cells.d.ts +0 -2
- package/dist/lib/design-resource-handoff-validation-fact-cells.js +0 -60
- package/dist/lib/design-resource-handoff-validation-fact-records.d.ts +0 -2
- package/dist/lib/design-resource-handoff-validation-fact-records.js +0 -90
- package/dist/lib/design-resource-handoff-validation-facts.d.ts +0 -2
- package/dist/lib/design-resource-handoff-validation-facts.js +0 -13
- package/dist/lib/design-resource-handoff-validation-primitives.d.ts +0 -11
- package/dist/lib/design-resource-handoff-validation-primitives.js +0 -26
- package/dist/lib/design-resource-handoff-validation-proofs.d.ts +0 -2
- package/dist/lib/design-resource-handoff-validation-proofs.js +0 -67
- package/dist/lib/design-resource-handoff-validation-resource-closure.d.ts +0 -3
- package/dist/lib/design-resource-handoff-validation-resource-closure.js +0 -88
- package/dist/lib/design-resource-handoff-validation-structure.d.ts +0 -6
- package/dist/lib/design-resource-handoff-validation-structure.js +0 -124
- package/dist/lib/design-resource-handoff-validation.d.ts +0 -8
- package/dist/lib/design-resource-handoff-validation.js +0 -177
- package/dist/lib/design-resource-handoff-web-dependency-validation.d.ts +0 -6
- package/dist/lib/design-resource-handoff-web-dependency-validation.js +0 -130
- package/dist/lib/design-resource-implementation-feasibility-model.d.ts +0 -35
- package/dist/lib/design-resource-implementation-feasibility-model.js +0 -62
- package/dist/lib/design-resource-implementation-feasibility-shape-sections.d.ts +0 -43
- package/dist/lib/design-resource-implementation-feasibility-shape-sections.js +0 -142
- package/dist/lib/design-resource-implementation-feasibility-shape.d.ts +0 -4
- package/dist/lib/design-resource-implementation-feasibility-shape.js +0 -154
- package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.d.ts +0 -24
- package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.js +0 -106
- package/dist/lib/design-resource-implementation-feasibility-source-decision.d.ts +0 -21
- package/dist/lib/design-resource-implementation-feasibility-source-decision.js +0 -75
- package/dist/lib/design-resource-implementation-feasibility-types.d.ts +0 -135
- package/dist/lib/design-resource-implementation-feasibility-types.js +0 -37
- package/dist/lib/design-resource-implementation-feasibility-validation-cells.d.ts +0 -5
- package/dist/lib/design-resource-implementation-feasibility-validation-cells.js +0 -125
- package/dist/lib/design-resource-implementation-feasibility-validation-document.d.ts +0 -4
- package/dist/lib/design-resource-implementation-feasibility-validation-document.js +0 -167
- package/dist/lib/design-resource-implementation-feasibility-validation-facts.d.ts +0 -3
- package/dist/lib/design-resource-implementation-feasibility-validation-facts.js +0 -76
- package/dist/lib/design-resource-implementation-feasibility-validation-realizations.d.ts +0 -8
- package/dist/lib/design-resource-implementation-feasibility-validation-realizations.js +0 -76
- package/dist/lib/design-resource-implementation-feasibility-validation-support.d.ts +0 -10
- package/dist/lib/design-resource-implementation-feasibility-validation-support.js +0 -75
- package/dist/lib/design-resource-implementation-feasibility-validation.d.ts +0 -3
- package/dist/lib/design-resource-implementation-feasibility-validation.js +0 -138
- package/dist/lib/design-resource-reconciliation-codec.d.ts +0 -2
- package/dist/lib/design-resource-reconciliation-codec.js +0 -174
- package/dist/lib/design-resource-reconciliation-types.d.ts +0 -62
- package/dist/lib/design-resource-reconciliation-types.js +0 -1
- package/dist/lib/design-resource-reconciliation.d.ts +0 -3
- package/dist/lib/design-resource-reconciliation.js +0 -224
- package/dist/lib/design-resource-recovery-authority-policy.d.ts +0 -8
- package/dist/lib/design-resource-recovery-authority-policy.js +0 -123
- package/dist/lib/design-resource-recovery-catalog-resources.d.ts +0 -6
- package/dist/lib/design-resource-recovery-catalog-resources.js +0 -121
- package/dist/lib/design-resource-recovery-catalog-shape.d.ts +0 -3
- package/dist/lib/design-resource-recovery-catalog-shape.js +0 -104
- package/dist/lib/design-resource-recovery-catalog.d.ts +0 -9
- package/dist/lib/design-resource-recovery-catalog.js +0 -103
- package/dist/lib/design-resource-recovery-cleanup.d.ts +0 -2
- package/dist/lib/design-resource-recovery-cleanup.js +0 -11
- package/dist/lib/design-resource-recovery-codec-primitives.d.ts +0 -19
- package/dist/lib/design-resource-recovery-codec-primitives.js +0 -92
- package/dist/lib/design-resource-recovery-codec.d.ts +0 -4
- package/dist/lib/design-resource-recovery-codec.js +0 -93
- package/dist/lib/design-resource-recovery-current.d.ts +0 -9
- package/dist/lib/design-resource-recovery-current.js +0 -63
- package/dist/lib/design-resource-recovery-delta-policy.d.ts +0 -5
- package/dist/lib/design-resource-recovery-delta-policy.js +0 -108
- package/dist/lib/design-resource-recovery-files.d.ts +0 -37
- package/dist/lib/design-resource-recovery-files.js +0 -204
- package/dist/lib/design-resource-recovery-final-disposition-shape.d.ts +0 -2
- package/dist/lib/design-resource-recovery-final-disposition-shape.js +0 -47
- package/dist/lib/design-resource-recovery-patch-types.d.ts +0 -54
- package/dist/lib/design-resource-recovery-patch-types.js +0 -1
- package/dist/lib/design-resource-recovery-replay.d.ts +0 -7
- package/dist/lib/design-resource-recovery-replay.js +0 -112
- package/dist/lib/design-resource-recovery-repository-bindings.d.ts +0 -9
- package/dist/lib/design-resource-recovery-repository-bindings.js +0 -49
- package/dist/lib/design-resource-recovery-schema.d.ts +0 -5
- package/dist/lib/design-resource-recovery-schema.js +0 -5
- package/dist/lib/design-resource-recovery-shape.d.ts +0 -10
- package/dist/lib/design-resource-recovery-shape.js +0 -241
- package/dist/lib/design-resource-recovery-source-authority.d.ts +0 -5
- package/dist/lib/design-resource-recovery-source-authority.js +0 -219
- package/dist/lib/design-resource-recovery-text.d.ts +0 -17
- package/dist/lib/design-resource-recovery-text.js +0 -186
- package/dist/lib/design-resource-recovery-types.d.ts +0 -200
- package/dist/lib/design-resource-recovery-types.js +0 -1
- package/dist/lib/design-resource-recovery-writeback-policy.d.ts +0 -5
- package/dist/lib/design-resource-recovery-writeback-policy.js +0 -326
- package/dist/lib/design-resource-recovery-writeback-shape.d.ts +0 -6
- package/dist/lib/design-resource-recovery-writeback-shape.js +0 -155
- package/dist/lib/design-resource-recovery.d.ts +0 -44
- package/dist/lib/design-resource-recovery.js +0 -216
- package/dist/lib/design-resource-symbolic-applicability-authority.d.ts +0 -7
- package/dist/lib/design-resource-symbolic-applicability-authority.js +0 -19
- package/dist/lib/design-resource-symbolic-applicability-policy.d.ts +0 -12
- package/dist/lib/design-resource-symbolic-applicability-policy.js +0 -79
- package/dist/lib/design-resource-symbolic-applicability-profiles.d.ts +0 -8
- package/dist/lib/design-resource-symbolic-applicability-profiles.js +0 -55
- package/dist/lib/design-resource-symbolic-applicability-shape.d.ts +0 -2
- package/dist/lib/design-resource-symbolic-applicability-shape.js +0 -76
- package/dist/lib/design-resource-symbolic-applicability-validation.d.ts +0 -7
- package/dist/lib/design-resource-symbolic-applicability-validation.js +0 -128
- package/dist/lib/design-resource-symbolic-compilation.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-compilation.js +0 -13
- package/dist/lib/design-resource-symbolic-denotation.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-denotation.js +0 -167
- package/dist/lib/design-resource-symbolic-disposition-validation.d.ts +0 -4
- package/dist/lib/design-resource-symbolic-disposition-validation.js +0 -28
- package/dist/lib/design-resource-symbolic-fact-policy.d.ts +0 -12
- package/dist/lib/design-resource-symbolic-fact-policy.js +0 -12
- package/dist/lib/design-resource-symbolic-fact-shape.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-fact-shape.js +0 -146
- package/dist/lib/design-resource-symbolic-fact-types.d.ts +0 -221
- package/dist/lib/design-resource-symbolic-fact-types.js +0 -1
- package/dist/lib/design-resource-symbolic-fact-validation.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-fact-validation.js +0 -111
- package/dist/lib/design-resource-symbolic-indexes.d.ts +0 -23
- package/dist/lib/design-resource-symbolic-indexes.js +0 -54
- package/dist/lib/design-resource-symbolic-manifest-shape.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-manifest-shape.js +0 -155
- package/dist/lib/design-resource-symbolic-manifest-validation.d.ts +0 -6
- package/dist/lib/design-resource-symbolic-manifest-validation.js +0 -132
- package/dist/lib/design-resource-symbolic-noninterference-artifact.d.ts +0 -33
- package/dist/lib/design-resource-symbolic-noninterference-artifact.js +0 -110
- package/dist/lib/design-resource-symbolic-noninterference-equivalence.d.ts +0 -3
- package/dist/lib/design-resource-symbolic-noninterference-equivalence.js +0 -77
- package/dist/lib/design-resource-symbolic-noninterference-recompute.d.ts +0 -4
- package/dist/lib/design-resource-symbolic-noninterference-recompute.js +0 -146
- package/dist/lib/design-resource-symbolic-noninterference-scope.d.ts +0 -7
- package/dist/lib/design-resource-symbolic-noninterference-scope.js +0 -49
- package/dist/lib/design-resource-symbolic-noninterference-shape.d.ts +0 -2
- package/dist/lib/design-resource-symbolic-noninterference-shape.js +0 -152
- package/dist/lib/design-resource-symbolic-noninterference-types.d.ts +0 -103
- package/dist/lib/design-resource-symbolic-noninterference-types.js +0 -1
- package/dist/lib/design-resource-symbolic-noninterference-validation.d.ts +0 -5
- package/dist/lib/design-resource-symbolic-noninterference-validation.js +0 -62
- package/dist/lib/design-resource-symbolic-oracle-fingerprint.d.ts +0 -1
- package/dist/lib/design-resource-symbolic-oracle-fingerprint.js +0 -47
- package/dist/lib/design-resource-symbolic-predicate-shape.d.ts +0 -6
- package/dist/lib/design-resource-symbolic-predicate-shape.js +0 -123
- package/dist/lib/design-resource-symbolic-production-closure.d.ts +0 -4
- package/dist/lib/design-resource-symbolic-production-closure.js +0 -144
- package/dist/lib/design-resource-symbolic-proof-authority-validation.d.ts +0 -10
- package/dist/lib/design-resource-symbolic-proof-authority-validation.js +0 -68
- package/dist/lib/design-resource-symbolic-proof-validation.d.ts +0 -10
- package/dist/lib/design-resource-symbolic-proof-validation.js +0 -89
- package/dist/lib/design-resource-symbolic-region-validation.d.ts +0 -19
- package/dist/lib/design-resource-symbolic-region-validation.js +0 -146
- package/dist/lib/design-resource-symbolic-resource-validation.d.ts +0 -5
- package/dist/lib/design-resource-symbolic-resource-validation.js +0 -90
- package/dist/lib/design-resource-symbolic-rule-shape.d.ts +0 -27
- package/dist/lib/design-resource-symbolic-rule-shape.js +0 -158
- package/dist/lib/design-resource-symbolic-safety-validation.d.ts +0 -6
- package/dist/lib/design-resource-symbolic-safety-validation.js +0 -29
- package/dist/lib/design-resource-symbolic-source-ir-evaluation.d.ts +0 -19
- package/dist/lib/design-resource-symbolic-source-ir-evaluation.js +0 -74
- package/dist/lib/design-resource-symbolic-source-ir-evidence.d.ts +0 -44
- package/dist/lib/design-resource-symbolic-source-ir-evidence.js +0 -88
- package/dist/lib/design-resource-symbolic-source-ir-oracle.d.ts +0 -13
- package/dist/lib/design-resource-symbolic-source-ir-oracle.js +0 -96
- package/dist/lib/design-resource-symbolic-source-ir-proof.d.ts +0 -14
- package/dist/lib/design-resource-symbolic-source-ir-proof.js +0 -98
- package/dist/lib/design-resource-symbolic-source-ir-shape.d.ts +0 -2
- package/dist/lib/design-resource-symbolic-source-ir-shape.js +0 -38
- package/dist/lib/design-resource-symbolic-source-ir-types.d.ts +0 -17
- package/dist/lib/design-resource-symbolic-source-ir-types.js +0 -2
- package/dist/lib/design-resource-symbolic-static-dependency-validation.d.ts +0 -2
- package/dist/lib/design-resource-symbolic-static-dependency-validation.js +0 -83
- package/dist/lib/design-resource-symbolic-structural-closure-validation.d.ts +0 -6
- package/dist/lib/design-resource-symbolic-structural-closure-validation.js +0 -79
- package/dist/lib/design-resource-symbolic-validation-support.d.ts +0 -29
- package/dist/lib/design-resource-symbolic-validation-support.js +0 -111
- package/dist/lib/design-resource-v1-capacity-header.d.ts +0 -8
- package/dist/lib/design-resource-v1-capacity-header.js +0 -231
- package/dist/lib/design-resource-v1-capacity.d.ts +0 -5
- package/dist/lib/design-resource-v1-capacity.js +0 -45
- package/dist/lib/execution-target-capabilities.d.ts +0 -2
- package/dist/lib/execution-target-capabilities.js +0 -45
- package/dist/lib/legacy-managed-scan.d.ts +0 -2
- package/dist/lib/legacy-managed-scan.js +0 -95
- package/dist/lib/legacy-sdlc-migration.d.ts +0 -2
- package/dist/lib/legacy-sdlc-migration.js +0 -199
- package/dist/lib/long-task-acceptance-reachability-claims.d.ts +0 -2
- package/dist/lib/long-task-acceptance-reachability-claims.js +0 -279
- package/dist/lib/long-task-acceptance-reachability-design.d.ts +0 -2
- package/dist/lib/long-task-acceptance-reachability-design.js +0 -96
- package/dist/lib/long-task-acceptance-reachability-external.d.ts +0 -9
- package/dist/lib/long-task-acceptance-reachability-external.js +0 -123
- package/dist/lib/long-task-acceptance-reachability-helpers.d.ts +0 -64
- package/dist/lib/long-task-acceptance-reachability-helpers.js +0 -473
- package/dist/lib/long-task-acceptance-reachability-semantic.d.ts +0 -2
- package/dist/lib/long-task-acceptance-reachability-semantic.js +0 -122
- package/dist/lib/long-task-acceptance-reachability-types.d.ts +0 -91
- package/dist/lib/long-task-acceptance-reachability-types.js +0 -1
- package/dist/lib/long-task-acceptance-reachability.d.ts +0 -4
- package/dist/lib/long-task-acceptance-reachability.js +0 -115
- package/dist/lib/long-task-acceptance-reference.d.ts +0 -22
- package/dist/lib/long-task-acceptance-reference.js +0 -46
- package/dist/lib/long-task-acceptance-shape.d.ts +0 -5
- package/dist/lib/long-task-acceptance-shape.js +0 -198
- package/dist/lib/long-task-activation-validation.d.ts +0 -27
- package/dist/lib/long-task-activation-validation.js +0 -246
- package/dist/lib/long-task-active-authority-lock-context.d.ts +0 -4
- package/dist/lib/long-task-active-authority-lock-context.js +0 -29
- package/dist/lib/long-task-admitted-observation-records.d.ts +0 -25
- package/dist/lib/long-task-admitted-observation-records.js +0 -40
- package/dist/lib/long-task-admitted-observation.d.ts +0 -93
- package/dist/lib/long-task-admitted-observation.js +0 -201
- package/dist/lib/long-task-applicability-identity.d.ts +0 -25
- package/dist/lib/long-task-applicability-identity.js +0 -60
- package/dist/lib/long-task-applicability-shape.d.ts +0 -4
- package/dist/lib/long-task-applicability-shape.js +0 -54
- package/dist/lib/long-task-artifacts.d.ts +0 -6
- package/dist/lib/long-task-artifacts.js +0 -35
- package/dist/lib/long-task-assertions-v2.d.ts +0 -22
- package/dist/lib/long-task-assertions-v2.js +0 -220
- package/dist/lib/long-task-authoring-authority-preview.d.ts +0 -5
- package/dist/lib/long-task-authoring-authority-preview.js +0 -87
- package/dist/lib/long-task-authoring-preflight-diagnostics.d.ts +0 -8
- package/dist/lib/long-task-authoring-preflight-diagnostics.js +0 -199
- package/dist/lib/long-task-authoring-preflight-repair-order.d.ts +0 -8
- package/dist/lib/long-task-authoring-preflight-repair-order.js +0 -98
- package/dist/lib/long-task-authoring-preflight-types.d.ts +0 -48
- package/dist/lib/long-task-authoring-preflight-types.js +0 -47
- package/dist/lib/long-task-authoring-preflight.d.ts +0 -3
- package/dist/lib/long-task-authoring-preflight.js +0 -102
- package/dist/lib/long-task-authority-material-diff.d.ts +0 -17
- package/dist/lib/long-task-authority-material-diff.js +0 -225
- package/dist/lib/long-task-authority-materials.d.ts +0 -7
- package/dist/lib/long-task-authority-materials.js +0 -185
- package/dist/lib/long-task-authority-policy.d.ts +0 -290
- package/dist/lib/long-task-authority-policy.js +0 -310
- package/dist/lib/long-task-authority-revision-analysis.d.ts +0 -34
- package/dist/lib/long-task-authority-revision-analysis.js +0 -121
- package/dist/lib/long-task-authority-revision-brief.d.ts +0 -3
- package/dist/lib/long-task-authority-revision-brief.js +0 -76
- package/dist/lib/long-task-authority-revision-details.d.ts +0 -21
- package/dist/lib/long-task-authority-revision-details.js +0 -205
- package/dist/lib/long-task-authority-revision-diagnosis.d.ts +0 -24
- package/dist/lib/long-task-authority-revision-diagnosis.js +0 -149
- package/dist/lib/long-task-authority-revision-enforcement.d.ts +0 -5
- package/dist/lib/long-task-authority-revision-enforcement.js +0 -53
- package/dist/lib/long-task-authority-revision-summary.d.ts +0 -14
- package/dist/lib/long-task-authority-revision-summary.js +0 -246
- package/dist/lib/long-task-authority-revision-types.d.ts +0 -119
- package/dist/lib/long-task-authority-revision-types.js +0 -1
- package/dist/lib/long-task-authority-revision.d.ts +0 -4
- package/dist/lib/long-task-authority-revision.js +0 -156
- package/dist/lib/long-task-authority-transition-policy.d.ts +0 -62
- package/dist/lib/long-task-authority-transition-policy.js +0 -62
- package/dist/lib/long-task-authority-types.d.ts +0 -131
- package/dist/lib/long-task-authority-types.js +0 -1
- package/dist/lib/long-task-authority.d.ts +0 -7
- package/dist/lib/long-task-authority.js +0 -202
- package/dist/lib/long-task-boundary-check.d.ts +0 -15
- package/dist/lib/long-task-boundary-check.js +0 -9
- package/dist/lib/long-task-check-evidence-decoder.d.ts +0 -3
- package/dist/lib/long-task-check-evidence-decoder.js +0 -84
- package/dist/lib/long-task-check-execution-policy.d.ts +0 -21
- package/dist/lib/long-task-check-execution-policy.js +0 -48
- package/dist/lib/long-task-check-runner.d.ts +0 -2
- package/dist/lib/long-task-check-runner.js +0 -307
- package/dist/lib/long-task-check-shape.d.ts +0 -2
- package/dist/lib/long-task-check-shape.js +0 -176
- package/dist/lib/long-task-claim-definitions.d.ts +0 -7
- package/dist/lib/long-task-claim-definitions.js +0 -83
- package/dist/lib/long-task-claim-proof-policy.d.ts +0 -4
- package/dist/lib/long-task-claim-proof-policy.js +0 -57
- package/dist/lib/long-task-claim-semantic-proof-floor.d.ts +0 -3
- package/dist/lib/long-task-claim-semantic-proof-floor.js +0 -78
- package/dist/lib/long-task-claims.d.ts +0 -10
- package/dist/lib/long-task-claims.js +0 -374
- package/dist/lib/long-task-codex-agent-profile.d.ts +0 -42
- package/dist/lib/long-task-codex-agent-profile.js +0 -276
- package/dist/lib/long-task-command-process.d.ts +0 -9
- package/dist/lib/long-task-command-process.js +0 -178
- package/dist/lib/long-task-compact-authoring-projections.d.ts +0 -12
- package/dist/lib/long-task-compact-authoring-projections.js +0 -67
- package/dist/lib/long-task-compact-authoring.d.ts +0 -3
- package/dist/lib/long-task-compact-authoring.js +0 -176
- package/dist/lib/long-task-compact-carrier.d.ts +0 -7
- package/dist/lib/long-task-compact-carrier.js +0 -132
- package/dist/lib/long-task-compact-parser.d.ts +0 -14
- package/dist/lib/long-task-compact-parser.js +0 -123
- package/dist/lib/long-task-compact-primitives.d.ts +0 -22
- package/dist/lib/long-task-compact-primitives.js +0 -132
- package/dist/lib/long-task-compact-projections.d.ts +0 -4
- package/dist/lib/long-task-compact-projections.js +0 -163
- package/dist/lib/long-task-compact-structure-targets.d.ts +0 -2
- package/dist/lib/long-task-compact-structure-targets.js +0 -91
- package/dist/lib/long-task-complete-delivery-evidence-types.d.ts +0 -38
- package/dist/lib/long-task-complete-delivery-evidence-types.js +0 -1
- package/dist/lib/long-task-completion-types.d.ts +0 -109
- package/dist/lib/long-task-completion-types.js +0 -1
- package/dist/lib/long-task-conformance-policy.d.ts +0 -6
- package/dist/lib/long-task-conformance-policy.js +0 -44
- package/dist/lib/long-task-context-authority-topology.d.ts +0 -7
- package/dist/lib/long-task-context-authority-topology.js +0 -39
- package/dist/lib/long-task-context-authority.d.ts +0 -14
- package/dist/lib/long-task-context-authority.js +0 -66
- package/dist/lib/long-task-contract-types.d.ts +0 -317
- package/dist/lib/long-task-contract-types.js +0 -1
- package/dist/lib/long-task-control-fields.d.ts +0 -12
- package/dist/lib/long-task-control-fields.js +0 -66
- package/dist/lib/long-task-control-types.d.ts +0 -1
- package/dist/lib/long-task-control-types.js +0 -1
- package/dist/lib/long-task-counterfactual-claim-policy.d.ts +0 -9
- package/dist/lib/long-task-counterfactual-claim-policy.js +0 -72
- package/dist/lib/long-task-counterfactual-sandbox.d.ts +0 -19
- package/dist/lib/long-task-counterfactual-sandbox.js +0 -195
- package/dist/lib/long-task-counterfactual-types.d.ts +0 -38
- package/dist/lib/long-task-counterfactual-types.js +0 -1
- package/dist/lib/long-task-delivery-compiler-preflight.d.ts +0 -24
- package/dist/lib/long-task-delivery-compiler-preflight.js +0 -32
- package/dist/lib/long-task-delivery-compiler.d.ts +0 -14
- package/dist/lib/long-task-delivery-compiler.js +0 -170
- package/dist/lib/long-task-delivery-parser.d.ts +0 -17
- package/dist/lib/long-task-delivery-parser.js +0 -153
- package/dist/lib/long-task-delivery-preflight.d.ts +0 -5
- package/dist/lib/long-task-delivery-preflight.js +0 -175
- package/dist/lib/long-task-delivery-shape.d.ts +0 -6
- package/dist/lib/long-task-delivery-shape.js +0 -6
- package/dist/lib/long-task-delivery-types.d.ts +0 -15
- package/dist/lib/long-task-delivery-types.js +0 -15
- package/dist/lib/long-task-delivery-validation.d.ts +0 -11
- package/dist/lib/long-task-delivery-validation.js +0 -267
- package/dist/lib/long-task-design-feasibility-binding-owners.d.ts +0 -6
- package/dist/lib/long-task-design-feasibility-binding-owners.js +0 -52
- package/dist/lib/long-task-design-feasibility-binding.d.ts +0 -14
- package/dist/lib/long-task-design-feasibility-binding.js +0 -114
- package/dist/lib/long-task-design-feasibility-source-closure.d.ts +0 -11
- package/dist/lib/long-task-design-feasibility-source-closure.js +0 -87
- package/dist/lib/long-task-design-obligation.d.ts +0 -50
- package/dist/lib/long-task-design-obligation.js +0 -99
- package/dist/lib/long-task-design-resource-handoff.d.ts +0 -20
- package/dist/lib/long-task-design-resource-handoff.js +0 -265
- package/dist/lib/long-task-design-resource-method-binding.d.ts +0 -15
- package/dist/lib/long-task-design-resource-method-binding.js +0 -309
- package/dist/lib/long-task-design-target-capabilities.d.ts +0 -14
- package/dist/lib/long-task-design-target-capabilities.js +0 -126
- package/dist/lib/long-task-effective-external-takeover.d.ts +0 -15
- package/dist/lib/long-task-effective-external-takeover.js +0 -109
- package/dist/lib/long-task-effective-external-ui-takeover.d.ts +0 -5
- package/dist/lib/long-task-effective-external-ui-takeover.js +0 -117
- package/dist/lib/long-task-evidence-adapter-policy.d.ts +0 -4
- package/dist/lib/long-task-evidence-adapter-policy.js +0 -15
- package/dist/lib/long-task-evidence-adapter-types.d.ts +0 -1
- package/dist/lib/long-task-evidence-adapter-types.js +0 -1
- package/dist/lib/long-task-evidence-capability-codec.d.ts +0 -96
- package/dist/lib/long-task-evidence-capability-codec.js +0 -983
- package/dist/lib/long-task-evidence-capability-policy.d.ts +0 -9
- package/dist/lib/long-task-evidence-capability-policy.js +0 -345
- package/dist/lib/long-task-evidence-capability-runtime.d.ts +0 -5
- package/dist/lib/long-task-evidence-capability-runtime.js +0 -628
- package/dist/lib/long-task-evidence-capability-types.d.ts +0 -277
- package/dist/lib/long-task-evidence-capability-types.js +0 -1
- package/dist/lib/long-task-evidence-findings.d.ts +0 -5
- package/dist/lib/long-task-evidence-findings.js +0 -120
- package/dist/lib/long-task-evidence-sensitivity-policy.d.ts +0 -13
- package/dist/lib/long-task-evidence-sensitivity-policy.js +0 -166
- package/dist/lib/long-task-evidence-v2.d.ts +0 -10
- package/dist/lib/long-task-evidence-v2.js +0 -608
- package/dist/lib/long-task-exact-comparison.d.ts +0 -16
- package/dist/lib/long-task-exact-comparison.js +0 -28
- package/dist/lib/long-task-execution-observation.d.ts +0 -31
- package/dist/lib/long-task-execution-observation.js +0 -349
- package/dist/lib/long-task-expected-authority.d.ts +0 -4
- package/dist/lib/long-task-expected-authority.js +0 -126
- package/dist/lib/long-task-explain-acceptance-link.d.ts +0 -50
- package/dist/lib/long-task-explain-acceptance-link.js +0 -100
- package/dist/lib/long-task-explain-claim-links.d.ts +0 -47
- package/dist/lib/long-task-explain-claim-links.js +0 -90
- package/dist/lib/long-task-explain-source-links.d.ts +0 -99
- package/dist/lib/long-task-explain-source-links.js +0 -51
- package/dist/lib/long-task-external-confirmation-artifacts.d.ts +0 -9
- package/dist/lib/long-task-external-confirmation-artifacts.js +0 -138
- package/dist/lib/long-task-external-confirmation-attestation.d.ts +0 -20
- package/dist/lib/long-task-external-confirmation-attestation.js +0 -115
- package/dist/lib/long-task-external-confirmation-challenge.d.ts +0 -23
- package/dist/lib/long-task-external-confirmation-challenge.js +0 -164
- package/dist/lib/long-task-external-confirmation-context.d.ts +0 -14
- package/dist/lib/long-task-external-confirmation-context.js +0 -53
- package/dist/lib/long-task-external-confirmation-evaluation.d.ts +0 -11
- package/dist/lib/long-task-external-confirmation-evaluation.js +0 -454
- package/dist/lib/long-task-external-confirmation-expected.d.ts +0 -8
- package/dist/lib/long-task-external-confirmation-expected.js +0 -200
- package/dist/lib/long-task-external-confirmation-identity.d.ts +0 -10
- package/dist/lib/long-task-external-confirmation-identity.js +0 -77
- package/dist/lib/long-task-external-confirmation-plan.d.ts +0 -25
- package/dist/lib/long-task-external-confirmation-plan.js +0 -148
- package/dist/lib/long-task-external-confirmation-preparation.d.ts +0 -4
- package/dist/lib/long-task-external-confirmation-preparation.js +0 -100
- package/dist/lib/long-task-external-confirmation-shape.d.ts +0 -8
- package/dist/lib/long-task-external-confirmation-shape.js +0 -387
- package/dist/lib/long-task-external-confirmation-state.d.ts +0 -10
- package/dist/lib/long-task-external-confirmation-state.js +0 -109
- package/dist/lib/long-task-external-confirmation-types.d.ts +0 -195
- package/dist/lib/long-task-external-confirmation-types.js +0 -1
- package/dist/lib/long-task-final-integrity.d.ts +0 -18
- package/dist/lib/long-task-final-integrity.js +0 -109
- package/dist/lib/long-task-final-v2.d.ts +0 -7
- package/dist/lib/long-task-final-v2.js +0 -275
- package/dist/lib/long-task-finalization-identity.d.ts +0 -27
- package/dist/lib/long-task-finalization-identity.js +0 -58
- package/dist/lib/long-task-finding-context.d.ts +0 -3
- package/dist/lib/long-task-finding-context.js +0 -189
- package/dist/lib/long-task-freshness.d.ts +0 -30
- package/dist/lib/long-task-freshness.js +0 -203
- package/dist/lib/long-task-hook-install.d.ts +0 -26
- package/dist/lib/long-task-hook-install.js +0 -381
- package/dist/lib/long-task-hook-preflight.d.ts +0 -7
- package/dist/lib/long-task-hook-preflight.js +0 -58
- package/dist/lib/long-task-json-pointer-observation.d.ts +0 -59
- package/dist/lib/long-task-json-pointer-observation.js +0 -184
- package/dist/lib/long-task-material-input-closure.d.ts +0 -3
- package/dist/lib/long-task-material-input-closure.js +0 -92
- package/dist/lib/long-task-obligation-authority-resolution.d.ts +0 -12
- package/dist/lib/long-task-obligation-authority-resolution.js +0 -57
- package/dist/lib/long-task-obligation-semantic-identity.d.ts +0 -16
- package/dist/lib/long-task-obligation-semantic-identity.js +0 -116
- package/dist/lib/long-task-observation-artifact.d.ts +0 -8
- package/dist/lib/long-task-observation-artifact.js +0 -58
- package/dist/lib/long-task-observation-authority.d.ts +0 -28
- package/dist/lib/long-task-observation-authority.js +0 -479
- package/dist/lib/long-task-observation-ownership.d.ts +0 -2
- package/dist/lib/long-task-observation-ownership.js +0 -22
- package/dist/lib/long-task-outcome-parser.d.ts +0 -4
- package/dist/lib/long-task-outcome-parser.js +0 -143
- package/dist/lib/long-task-paths.d.ts +0 -48
- package/dist/lib/long-task-paths.js +0 -414
- package/dist/lib/long-task-playwright-capability-records.d.ts +0 -7
- package/dist/lib/long-task-playwright-capability-records.js +0 -218
- package/dist/lib/long-task-playwright-case-evidence.d.ts +0 -46
- package/dist/lib/long-task-playwright-case-evidence.js +0 -91
- package/dist/lib/long-task-playwright-case-primitives.d.ts +0 -28
- package/dist/lib/long-task-playwright-case-primitives.js +0 -143
- package/dist/lib/long-task-playwright-counterfactual-policy.d.ts +0 -7
- package/dist/lib/long-task-playwright-counterfactual-policy.js +0 -125
- package/dist/lib/long-task-playwright-evidence.d.ts +0 -8
- package/dist/lib/long-task-playwright-evidence.js +0 -147
- package/dist/lib/long-task-process-observation.d.ts +0 -6
- package/dist/lib/long-task-process-observation.js +0 -117
- package/dist/lib/long-task-process-runtime-closure.d.ts +0 -13
- package/dist/lib/long-task-process-runtime-closure.js +0 -207
- package/dist/lib/long-task-process-table.d.ts +0 -9
- package/dist/lib/long-task-process-table.js +0 -87
- package/dist/lib/long-task-process-tree.d.ts +0 -8
- package/dist/lib/long-task-process-tree.js +0 -108
- package/dist/lib/long-task-product-shape.d.ts +0 -8
- package/dist/lib/long-task-product-shape.js +0 -197
- package/dist/lib/long-task-progress.d.ts +0 -4
- package/dist/lib/long-task-progress.js +0 -120
- package/dist/lib/long-task-proof-adequacy.d.ts +0 -12
- package/dist/lib/long-task-proof-adequacy.js +0 -57
- package/dist/lib/long-task-proof-capability-floor.d.ts +0 -6
- package/dist/lib/long-task-proof-capability-floor.js +0 -137
- package/dist/lib/long-task-protected-files.d.ts +0 -1
- package/dist/lib/long-task-protected-files.js +0 -1
- package/dist/lib/long-task-repair-frontier-checks.d.ts +0 -8
- package/dist/lib/long-task-repair-frontier-checks.js +0 -93
- package/dist/lib/long-task-repair-frontier-groups.d.ts +0 -2
- package/dist/lib/long-task-repair-frontier-groups.js +0 -64
- package/dist/lib/long-task-repair-frontier-utils.d.ts +0 -6
- package/dist/lib/long-task-repair-frontier-utils.js +0 -27
- package/dist/lib/long-task-repair-frontier.d.ts +0 -14
- package/dist/lib/long-task-repair-frontier.js +0 -132
- package/dist/lib/long-task-required-proof-surfaces.d.ts +0 -2
- package/dist/lib/long-task-required-proof-surfaces.js +0 -13
- package/dist/lib/long-task-requirement-shape.d.ts +0 -2
- package/dist/lib/long-task-requirement-shape.js +0 -21
- package/dist/lib/long-task-risk-surfaces.d.ts +0 -2
- package/dist/lib/long-task-risk-surfaces.js +0 -60
- package/dist/lib/long-task-risk-types.d.ts +0 -5
- package/dist/lib/long-task-risk-types.js +0 -12
- package/dist/lib/long-task-risk.d.ts +0 -10
- package/dist/lib/long-task-risk.js +0 -186
- package/dist/lib/long-task-root-shape.d.ts +0 -5
- package/dist/lib/long-task-root-shape.js +0 -322
- package/dist/lib/long-task-runner-environment.d.ts +0 -7
- package/dist/lib/long-task-runner-environment.js +0 -57
- package/dist/lib/long-task-runner-files.d.ts +0 -3
- package/dist/lib/long-task-runner-files.js +0 -39
- package/dist/lib/long-task-runner-freeze.d.ts +0 -5
- package/dist/lib/long-task-runner-freeze.js +0 -318
- package/dist/lib/long-task-runtime-types.d.ts +0 -346
- package/dist/lib/long-task-runtime-types.js +0 -1
- package/dist/lib/long-task-scoped-binding.d.ts +0 -13
- package/dist/lib/long-task-scoped-binding.js +0 -11
- package/dist/lib/long-task-semantic-assurance-policy.d.ts +0 -4
- package/dist/lib/long-task-semantic-assurance-policy.js +0 -43
- package/dist/lib/long-task-semantic-contract-types.d.ts +0 -55
- package/dist/lib/long-task-semantic-contract-types.js +0 -1
- package/dist/lib/long-task-semantic-drift-migration.d.ts +0 -3
- package/dist/lib/long-task-semantic-drift-migration.js +0 -150
- package/dist/lib/long-task-semantic-fact-binding-types.d.ts +0 -85
- package/dist/lib/long-task-semantic-fact-binding-types.js +0 -1
- package/dist/lib/long-task-semantic-fact-closure-primitives.d.ts +0 -5
- package/dist/lib/long-task-semantic-fact-closure-primitives.js +0 -43
- package/dist/lib/long-task-semantic-fact-closure.d.ts +0 -17
- package/dist/lib/long-task-semantic-fact-closure.js +0 -79
- package/dist/lib/long-task-semantic-fact-contract-closure.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-contract-closure.js +0 -211
- package/dist/lib/long-task-semantic-fact-contract-facts.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-contract-facts.js +0 -33
- package/dist/lib/long-task-semantic-fact-contract-proofs.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-contract-proofs.js +0 -123
- package/dist/lib/long-task-semantic-fact-evidence.d.ts +0 -25
- package/dist/lib/long-task-semantic-fact-evidence.js +0 -225
- package/dist/lib/long-task-semantic-fact-input-closure.d.ts +0 -18
- package/dist/lib/long-task-semantic-fact-input-closure.js +0 -224
- package/dist/lib/long-task-semantic-fact-provenance-closure.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-provenance-closure.js +0 -140
- package/dist/lib/long-task-semantic-fact-shape.d.ts +0 -4
- package/dist/lib/long-task-semantic-fact-shape.js +0 -134
- package/dist/lib/long-task-semantic-fact-value-closure.d.ts +0 -3
- package/dist/lib/long-task-semantic-fact-value-closure.js +0 -110
- package/dist/lib/long-task-semantic-mutation.d.ts +0 -7
- package/dist/lib/long-task-semantic-mutation.js +0 -81
- package/dist/lib/long-task-semantic-proof-adequacy.d.ts +0 -2
- package/dist/lib/long-task-semantic-proof-adequacy.js +0 -19
- package/dist/lib/long-task-semantic-proof-profile.d.ts +0 -5
- package/dist/lib/long-task-semantic-proof-profile.js +0 -187
- package/dist/lib/long-task-shape-primitives.d.ts +0 -21
- package/dist/lib/long-task-shape-primitives.js +0 -121
- package/dist/lib/long-task-source-anchors.d.ts +0 -10
- package/dist/lib/long-task-source-anchors.js +0 -102
- package/dist/lib/long-task-source-authority-types.d.ts +0 -61
- package/dist/lib/long-task-source-authority-types.js +0 -1
- package/dist/lib/long-task-source-claim-validation.d.ts +0 -5
- package/dist/lib/long-task-source-claim-validation.js +0 -135
- package/dist/lib/long-task-source-conservation-facts.d.ts +0 -8
- package/dist/lib/long-task-source-conservation-facts.js +0 -57
- package/dist/lib/long-task-source-conservation-types.d.ts +0 -34
- package/dist/lib/long-task-source-conservation-types.js +0 -1
- package/dist/lib/long-task-source-conservation.d.ts +0 -7
- package/dist/lib/long-task-source-conservation.js +0 -110
- package/dist/lib/long-task-source-continuity.d.ts +0 -4
- package/dist/lib/long-task-source-continuity.js +0 -57
- package/dist/lib/long-task-source-fragments.d.ts +0 -6
- package/dist/lib/long-task-source-fragments.js +0 -219
- package/dist/lib/long-task-source-inventory.d.ts +0 -2
- package/dist/lib/long-task-source-inventory.js +0 -21
- package/dist/lib/long-task-source-item-parser.d.ts +0 -11
- package/dist/lib/long-task-source-item-parser.js +0 -108
- package/dist/lib/long-task-source-markers.d.ts +0 -12
- package/dist/lib/long-task-source-markers.js +0 -146
- package/dist/lib/long-task-source-owned-sections.d.ts +0 -29
- package/dist/lib/long-task-source-owned-sections.js +0 -90
- package/dist/lib/long-task-source-projection-resolution.d.ts +0 -5
- package/dist/lib/long-task-source-projection-resolution.js +0 -57
- package/dist/lib/long-task-source-projection-validation.d.ts +0 -17
- package/dist/lib/long-task-source-projection-validation.js +0 -154
- package/dist/lib/long-task-source-shape.d.ts +0 -2
- package/dist/lib/long-task-source-shape.js +0 -64
- package/dist/lib/long-task-source-supersession.d.ts +0 -5
- package/dist/lib/long-task-source-supersession.js +0 -138
- package/dist/lib/long-task-source-target-continuity.d.ts +0 -4
- package/dist/lib/long-task-source-target-continuity.js +0 -141
- package/dist/lib/long-task-source-target-index.d.ts +0 -15
- package/dist/lib/long-task-source-target-index.js +0 -91
- package/dist/lib/long-task-source-validation.d.ts +0 -3
- package/dist/lib/long-task-source-validation.js +0 -46
- package/dist/lib/long-task-stage-policy.d.ts +0 -9
- package/dist/lib/long-task-stage-policy.js +0 -170
- package/dist/lib/long-task-state.d.ts +0 -93
- package/dist/lib/long-task-state.js +0 -897
- package/dist/lib/long-task-static-observation-freeze.d.ts +0 -83
- package/dist/lib/long-task-static-observation-freeze.js +0 -429
- package/dist/lib/long-task-status-projection.d.ts +0 -26
- package/dist/lib/long-task-status-projection.js +0 -211
- package/dist/lib/long-task-status-v2.d.ts +0 -61
- package/dist/lib/long-task-status-v2.js +0 -363
- package/dist/lib/long-task-target-policy.d.ts +0 -11
- package/dist/lib/long-task-target-policy.js +0 -181
- package/dist/lib/long-task-technical-shape.d.ts +0 -3
- package/dist/lib/long-task-technical-shape.js +0 -44
- package/dist/lib/long-task-terminal-finalization.d.ts +0 -12
- package/dist/lib/long-task-terminal-finalization.js +0 -190
- package/dist/lib/long-task-ui-design-policy.d.ts +0 -17
- package/dist/lib/long-task-ui-design-policy.js +0 -236
- package/dist/lib/long-task-ui-surface-policy.d.ts +0 -5
- package/dist/lib/long-task-ui-surface-policy.js +0 -112
- package/dist/lib/long-task-ui-surface-shape.d.ts +0 -2
- package/dist/lib/long-task-ui-surface-shape.js +0 -402
- package/dist/lib/long-task-ui-surface-types.d.ts +0 -134
- package/dist/lib/long-task-ui-surface-types.js +0 -1
- package/dist/lib/long-task-ui-surface-validation.d.ts +0 -13
- package/dist/lib/long-task-ui-surface-validation.js +0 -62
- package/dist/lib/long-task-verification-preview.d.ts +0 -65
- package/dist/lib/long-task-verification-preview.js +0 -120
- package/dist/lib/long-task-verifier-authority.d.ts +0 -12
- package/dist/lib/long-task-verifier-authority.js +0 -49
- package/dist/lib/long-task-verifier-counterfactuals.d.ts +0 -11
- package/dist/lib/long-task-verifier-counterfactuals.js +0 -96
- package/dist/lib/long-task-verifier-dependency-closure.d.ts +0 -3
- package/dist/lib/long-task-verifier-dependency-closure.js +0 -183
- package/dist/lib/long-task-verifier-execution.d.ts +0 -9
- package/dist/lib/long-task-verifier-execution.js +0 -67
- package/dist/lib/long-task-verifier-identity.d.ts +0 -2
- package/dist/lib/long-task-verifier-identity.js +0 -66
- package/dist/lib/long-task-verifier-v2.d.ts +0 -17
- package/dist/lib/long-task-verifier-v2.js +0 -317
- package/dist/lib/long-task-windows-job-supervisor-helper.d.ts +0 -1
- package/dist/lib/long-task-windows-job-supervisor-helper.js +0 -104
- package/dist/lib/long-task-windows-job-supervisor-protocol.d.ts +0 -28
- package/dist/lib/long-task-windows-job-supervisor-protocol.js +0 -124
- package/dist/lib/long-task-windows-job-supervisor-result.d.ts +0 -11
- package/dist/lib/long-task-windows-job-supervisor-result.js +0 -152
- package/dist/lib/long-task-windows-job-supervisor.d.ts +0 -2
- package/dist/lib/long-task-windows-job-supervisor.js +0 -126
- package/dist/lib/long-task-worker-selection.d.ts +0 -2
- package/dist/lib/long-task-worker-selection.js +0 -7
- package/dist/lib/long-task-workspace-manifest.d.ts +0 -8
- package/dist/lib/long-task-workspace-manifest.js +0 -173
- package/dist/lib/long-task-workspace-runtime-types.d.ts +0 -23
- package/dist/lib/long-task-workspace-runtime-types.js +0 -1
- package/dist/lib/long-task-workspace-scope.d.ts +0 -39
- package/dist/lib/long-task-workspace-scope.js +0 -126
- package/dist/lib/long-task-workspace-snapshot.d.ts +0 -8
- package/dist/lib/long-task-workspace-snapshot.js +0 -176
- package/dist/lib/long-task-workspace.d.ts +0 -6
- package/dist/lib/long-task-workspace.js +0 -14
- package/dist/lib/modularity-capability-migration.d.ts +0 -2
- package/dist/lib/modularity-capability-migration.js +0 -165
- package/dist/lib/modularity-python.d.ts +0 -7
- package/dist/lib/modularity-python.js +0 -191
- package/dist/lib/modularity.d.ts +0 -60
- package/dist/lib/modularity.js +0 -781
- package/dist/lib/profiles.d.ts +0 -13
- package/dist/lib/profiles.js +0 -65
- package/dist/lib/semantic-fact-base-types.d.ts +0 -14
- package/dist/lib/semantic-fact-base-types.js +0 -1
- package/dist/lib/semantic-fact-catalog.d.ts +0 -8
- package/dist/lib/semantic-fact-catalog.js +0 -191
- package/dist/lib/semantic-fact-compact-authoring.d.ts +0 -2
- package/dist/lib/semantic-fact-compact-authoring.js +0 -160
- package/dist/lib/semantic-fact-compact-capacity.d.ts +0 -9
- package/dist/lib/semantic-fact-compact-capacity.js +0 -40
- package/dist/lib/semantic-fact-compact-carrier.d.ts +0 -16
- package/dist/lib/semantic-fact-compact-carrier.js +0 -146
- package/dist/lib/semantic-fact-compact-parser.d.ts +0 -17
- package/dist/lib/semantic-fact-compact-parser.js +0 -168
- package/dist/lib/semantic-fact-compact-revision.d.ts +0 -11
- package/dist/lib/semantic-fact-compact-revision.js +0 -64
- package/dist/lib/semantic-fact-compact-support.d.ts +0 -23
- package/dist/lib/semantic-fact-compact-support.js +0 -159
- package/dist/lib/semantic-fact-condition-shape.d.ts +0 -48
- package/dist/lib/semantic-fact-condition-shape.js +0 -111
- package/dist/lib/semantic-fact-input-shape.d.ts +0 -39
- package/dist/lib/semantic-fact-input-shape.js +0 -135
- package/dist/lib/semantic-fact-inventory-types.d.ts +0 -153
- package/dist/lib/semantic-fact-inventory-types.js +0 -1
- package/dist/lib/semantic-fact-manifest-shape.d.ts +0 -4
- package/dist/lib/semantic-fact-manifest-shape.js +0 -135
- package/dist/lib/semantic-fact-manifest-types.d.ts +0 -58
- package/dist/lib/semantic-fact-manifest-types.js +0 -19
- package/dist/lib/semantic-fact-policy-authority.d.ts +0 -8
- package/dist/lib/semantic-fact-policy-authority.js +0 -79
- package/dist/lib/semantic-fact-policy-census.d.ts +0 -3
- package/dist/lib/semantic-fact-policy-census.js +0 -126
- package/dist/lib/semantic-fact-policy-condition-references.d.ts +0 -7
- package/dist/lib/semantic-fact-policy-condition-references.js +0 -19
- package/dist/lib/semantic-fact-policy-conditions.d.ts +0 -2
- package/dist/lib/semantic-fact-policy-conditions.js +0 -105
- package/dist/lib/semantic-fact-policy-facts.d.ts +0 -3
- package/dist/lib/semantic-fact-policy-facts.js +0 -73
- package/dist/lib/semantic-fact-policy-primitives.d.ts +0 -26
- package/dist/lib/semantic-fact-policy-primitives.js +0 -169
- package/dist/lib/semantic-fact-policy-proofs.d.ts +0 -2
- package/dist/lib/semantic-fact-policy-proofs.js +0 -75
- package/dist/lib/semantic-fact-policy-properties.d.ts +0 -3
- package/dist/lib/semantic-fact-policy-properties.js +0 -84
- package/dist/lib/semantic-fact-policy-units.d.ts +0 -4
- package/dist/lib/semantic-fact-policy-units.js +0 -103
- package/dist/lib/semantic-fact-policy.d.ts +0 -17
- package/dist/lib/semantic-fact-policy.js +0 -41
- package/dist/lib/semantic-fact-proof-shape.d.ts +0 -51
- package/dist/lib/semantic-fact-proof-shape.js +0 -121
- package/dist/lib/semantic-fact-proof-types.d.ts +0 -74
- package/dist/lib/semantic-fact-proof-types.js +0 -1
- package/dist/lib/semantic-fact-property-shape.d.ts +0 -29
- package/dist/lib/semantic-fact-property-shape.js +0 -77
- package/dist/lib/semantic-fact-shape-constants.d.ts +0 -3
- package/dist/lib/semantic-fact-shape-constants.js +0 -38
- package/dist/lib/semantic-fact-shape-primitives.d.ts +0 -15
- package/dist/lib/semantic-fact-shape-primitives.js +0 -68
- package/dist/lib/semantic-fact-source-parser.d.ts +0 -14
- package/dist/lib/semantic-fact-source-parser.js +0 -87
- package/dist/lib/semantic-fact-support-shape.d.ts +0 -21
- package/dist/lib/semantic-fact-support-shape.js +0 -59
- package/dist/lib/semantic-fact-types.d.ts +0 -5
- package/dist/lib/semantic-fact-types.js +0 -5
- package/dist/lib/semantic-fact-unit-shape.d.ts +0 -34
- package/dist/lib/semantic-fact-unit-shape.js +0 -89
- package/dist/lib/semantic-fact-value-shape.d.ts +0 -12
- package/dist/lib/semantic-fact-value-shape.js +0 -39
- package/dist/lib/source-line-scanner.d.ts +0 -3
- package/dist/lib/source-line-scanner.js +0 -42
- package/dist/lib/stable-json.d.ts +0 -2
- package/dist/lib/stable-json.js +0 -21
- package/dist/lib/structural-closure-cost.d.ts +0 -79
- package/dist/lib/structural-closure-cost.js +0 -91
- package/dist/lib/symbolic-denotation-dag-builder.d.ts +0 -25
- package/dist/lib/symbolic-denotation-dag-builder.js +0 -176
- package/dist/lib/symbolic-denotation-domain-validation.d.ts +0 -3
- package/dist/lib/symbolic-denotation-domain-validation.js +0 -56
- package/dist/lib/symbolic-denotation-engine.d.ts +0 -32
- package/dist/lib/symbolic-denotation-engine.js +0 -140
- package/dist/lib/symbolic-denotation-public.d.ts +0 -11
- package/dist/lib/symbolic-denotation-public.js +0 -12
- package/dist/lib/symbolic-denotation-runtime.d.ts +0 -20
- package/dist/lib/symbolic-denotation-runtime.js +0 -90
- package/dist/lib/symbolic-denotation-support.d.ts +0 -11
- package/dist/lib/symbolic-denotation-support.js +0 -49
- package/dist/lib/symbolic-denotation-types.d.ts +0 -133
- package/dist/lib/symbolic-denotation-types.js +0 -18
- package/dist/lib/symbolic-denotation-validation.d.ts +0 -6
- package/dist/lib/symbolic-denotation-validation.js +0 -126
- package/dist/long-task-hook.d.ts +0 -2
- package/dist/long-task-hook.js +0 -103
- package/dist/public-api-long-task.d.ts +0 -10
- package/dist/public-api-long-task.js +0 -10
- package/dist/schemas/design-authority-delta-assessment-v1.schema.json +0 -191
- package/dist/schemas/design-resource-symbolic-noninterference-artifact-v2.schema.json +0 -289
- package/dist/schemas/design-resource-symbolic-source-ir-v1.schema.json +0 -130
- package/dist/schemas/long-task-delivery-v2/long-task-delivery-v2.schema.json +0 -2354
- package/dist/schemas/long-task-delivery-v2/long-task-outcomes-v2.schema.json +0 -18
- package/dist/schemas/long-task-external-confirmation-record-v1.schema.json +0 -155
- package/dist/schemas/long-task-external-confirmation-record-v2.schema.json +0 -209
- /package/dist/lib/{long-task-git.d.ts → git.d.ts} +0 -0
- /package/dist/lib/{long-task-git.js → git.js} +0 -0
|
@@ -1,2354 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://github.com/Seven128/project-tiny-context-harness/schemas/long-task-delivery-v2.schema.json",
|
|
4
|
-
"title": "Single-Goal Delivery Contract V2",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"required": [
|
|
8
|
-
"schema_version",
|
|
9
|
-
"semantic_fact_manifest",
|
|
10
|
-
"task",
|
|
11
|
-
"stages",
|
|
12
|
-
"risk",
|
|
13
|
-
"global"
|
|
14
|
-
],
|
|
15
|
-
"properties": {
|
|
16
|
-
"schema_version": { "const": "long-task-delivery-v2" },
|
|
17
|
-
"semantic_fact_manifest": {
|
|
18
|
-
"$ref": "#/$defs/semanticFactManifestRef"
|
|
19
|
-
},
|
|
20
|
-
"task": {
|
|
21
|
-
"type": "object",
|
|
22
|
-
"additionalProperties": false,
|
|
23
|
-
"required": [
|
|
24
|
-
"id",
|
|
25
|
-
"title",
|
|
26
|
-
"goal",
|
|
27
|
-
"target_profile",
|
|
28
|
-
"execution_targets",
|
|
29
|
-
"source_paths",
|
|
30
|
-
"context_refs"
|
|
31
|
-
],
|
|
32
|
-
"properties": {
|
|
33
|
-
"id": { "$ref": "#/$defs/key" },
|
|
34
|
-
"title": { "$ref": "#/$defs/nonEmpty" },
|
|
35
|
-
"goal": { "$ref": "#/$defs/nonEmpty" },
|
|
36
|
-
"target_profile": { "$ref": "#/$defs/targetProfile" },
|
|
37
|
-
"execution_targets": {
|
|
38
|
-
"type": "array",
|
|
39
|
-
"minItems": 1,
|
|
40
|
-
"items": { "$ref": "#/$defs/executionTarget" }
|
|
41
|
-
},
|
|
42
|
-
"source_paths": {
|
|
43
|
-
"type": "array",
|
|
44
|
-
"minItems": 1,
|
|
45
|
-
"items": { "$ref": "#/$defs/nonEmpty" }
|
|
46
|
-
},
|
|
47
|
-
"context_refs": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
48
|
-
"context_snapshot_mode": { "const": "full", "default": "full" }
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"source_claims": {
|
|
52
|
-
"type": "array",
|
|
53
|
-
"minItems": 1,
|
|
54
|
-
"items": { "$ref": "#/$defs/sourceClaim" }
|
|
55
|
-
},
|
|
56
|
-
"compact_semantic_carrier": {
|
|
57
|
-
"$ref": "#/$defs/longTaskCompactCarrier"
|
|
58
|
-
},
|
|
59
|
-
"stages": {
|
|
60
|
-
"type": "array",
|
|
61
|
-
"minItems": 1,
|
|
62
|
-
"items": { "$ref": "#/$defs/stage" }
|
|
63
|
-
},
|
|
64
|
-
"risk": { "$ref": "#/$defs/risk" },
|
|
65
|
-
"global": { "$ref": "#/$defs/global" },
|
|
66
|
-
"outcomes": {
|
|
67
|
-
"type": "array",
|
|
68
|
-
"items": { "$ref": "#/$defs/outcome" },
|
|
69
|
-
"minItems": 1
|
|
70
|
-
},
|
|
71
|
-
"outcome_files": { "$ref": "#/$defs/nonEmptyStrings" }
|
|
72
|
-
},
|
|
73
|
-
"allOf": [
|
|
74
|
-
{
|
|
75
|
-
"oneOf": [
|
|
76
|
-
{
|
|
77
|
-
"required": ["source_claims"],
|
|
78
|
-
"not": { "required": ["compact_semantic_carrier"] }
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"required": ["compact_semantic_carrier", "outcomes"],
|
|
82
|
-
"not": {
|
|
83
|
-
"anyOf": [
|
|
84
|
-
{ "required": ["source_claims"] },
|
|
85
|
-
{ "required": ["outcome_files"] }
|
|
86
|
-
]
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
]
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
"oneOf": [
|
|
93
|
-
{ "required": ["outcomes"], "not": { "required": ["outcome_files"] } },
|
|
94
|
-
{ "required": ["outcome_files"], "not": { "required": ["outcomes"] } }
|
|
95
|
-
]
|
|
96
|
-
}
|
|
97
|
-
],
|
|
98
|
-
"$defs": {
|
|
99
|
-
"key": { "type": "string", "pattern": "^[a-z0-9][a-z0-9-]*$" },
|
|
100
|
-
"designFactKey": { "type": "string", "pattern": "^[a-z0-9][a-z0-9._-]*$" },
|
|
101
|
-
"designFactRefs": {
|
|
102
|
-
"type": "array",
|
|
103
|
-
"items": { "$ref": "#/$defs/designFactKey" },
|
|
104
|
-
"uniqueItems": true
|
|
105
|
-
},
|
|
106
|
-
"semanticRef": {
|
|
107
|
-
"type": "string",
|
|
108
|
-
"pattern": "^[a-z0-9][a-z0-9._:-]*$"
|
|
109
|
-
},
|
|
110
|
-
"semanticFactManifestRef": {
|
|
111
|
-
"type": "object",
|
|
112
|
-
"additionalProperties": false,
|
|
113
|
-
"required": ["key", "source_path", "sha256"],
|
|
114
|
-
"properties": {
|
|
115
|
-
"key": { "$ref": "#/$defs/semanticRef" },
|
|
116
|
-
"source_path": { "$ref": "#/$defs/nonEmpty" },
|
|
117
|
-
"sha256": { "$ref": "#/$defs/sha256" }
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
"compactTable": {
|
|
121
|
-
"type": "object",
|
|
122
|
-
"additionalProperties": false,
|
|
123
|
-
"required": ["defaults", "columns", "rows"],
|
|
124
|
-
"properties": {
|
|
125
|
-
"defaults": { "type": "object" },
|
|
126
|
-
"columns": {
|
|
127
|
-
"type": "array",
|
|
128
|
-
"uniqueItems": true,
|
|
129
|
-
"items": { "type": "string", "pattern": "^[a-z][a-z0-9_]*$" }
|
|
130
|
-
},
|
|
131
|
-
"rows": {
|
|
132
|
-
"type": "array",
|
|
133
|
-
"items": { "type": "array" }
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
"compactFactSet": {
|
|
138
|
-
"type": "object",
|
|
139
|
-
"additionalProperties": false,
|
|
140
|
-
"required": ["key", "defaults", "columns", "rows"],
|
|
141
|
-
"properties": {
|
|
142
|
-
"key": { "$ref": "#/$defs/semanticRef" },
|
|
143
|
-
"defaults": { "type": "object" },
|
|
144
|
-
"columns": {
|
|
145
|
-
"type": "array",
|
|
146
|
-
"uniqueItems": true,
|
|
147
|
-
"items": { "type": "string", "pattern": "^[a-z][a-z0-9_]*$" }
|
|
148
|
-
},
|
|
149
|
-
"rows": {
|
|
150
|
-
"type": "array",
|
|
151
|
-
"items": { "type": "array" }
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
},
|
|
155
|
-
"longTaskCompactCapacityCounts": {
|
|
156
|
-
"type": "object",
|
|
157
|
-
"additionalProperties": false,
|
|
158
|
-
"required": [
|
|
159
|
-
"claims",
|
|
160
|
-
"claim_projections",
|
|
161
|
-
"selector_members",
|
|
162
|
-
"structure_families",
|
|
163
|
-
"structure_references",
|
|
164
|
-
"structure_arguments",
|
|
165
|
-
"facts",
|
|
166
|
-
"obligations",
|
|
167
|
-
"assertions",
|
|
168
|
-
"canonical_bytes"
|
|
169
|
-
],
|
|
170
|
-
"properties": {
|
|
171
|
-
"claims": { "type": "integer", "minimum": 0, "maximum": 1000000 },
|
|
172
|
-
"claim_projections": {
|
|
173
|
-
"type": "integer",
|
|
174
|
-
"minimum": 0,
|
|
175
|
-
"maximum": 2000000
|
|
176
|
-
},
|
|
177
|
-
"selector_members": {
|
|
178
|
-
"type": "integer",
|
|
179
|
-
"minimum": 0,
|
|
180
|
-
"maximum": 5000000
|
|
181
|
-
},
|
|
182
|
-
"structure_families": {
|
|
183
|
-
"type": "integer",
|
|
184
|
-
"minimum": 0,
|
|
185
|
-
"maximum": 1000000
|
|
186
|
-
},
|
|
187
|
-
"structure_references": {
|
|
188
|
-
"type": "integer",
|
|
189
|
-
"minimum": 0,
|
|
190
|
-
"maximum": 10000000
|
|
191
|
-
},
|
|
192
|
-
"structure_arguments": {
|
|
193
|
-
"type": "integer",
|
|
194
|
-
"minimum": 0,
|
|
195
|
-
"maximum": 50000000
|
|
196
|
-
},
|
|
197
|
-
"facts": { "type": "integer", "minimum": 0, "maximum": 1000000 },
|
|
198
|
-
"obligations": { "type": "integer", "minimum": 0, "maximum": 2000000 },
|
|
199
|
-
"assertions": { "type": "integer", "minimum": 0, "maximum": 5000000 },
|
|
200
|
-
"canonical_bytes": {
|
|
201
|
-
"type": "integer",
|
|
202
|
-
"minimum": 0,
|
|
203
|
-
"maximum": 268435456
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
},
|
|
207
|
-
"longTaskCompactCarrier": {
|
|
208
|
-
"type": "object",
|
|
209
|
-
"additionalProperties": false,
|
|
210
|
-
"required": [
|
|
211
|
-
"schema_version",
|
|
212
|
-
"capacity",
|
|
213
|
-
"selectors",
|
|
214
|
-
"shared_structures",
|
|
215
|
-
"claim_catalog",
|
|
216
|
-
"claim_projections",
|
|
217
|
-
"fact_sets",
|
|
218
|
-
"proof_templates",
|
|
219
|
-
"obligations",
|
|
220
|
-
"assertion_projections",
|
|
221
|
-
"exceptions"
|
|
222
|
-
],
|
|
223
|
-
"properties": {
|
|
224
|
-
"schema_version": { "const": "long-task-compact-carrier-v1" },
|
|
225
|
-
"capacity": {
|
|
226
|
-
"type": "object",
|
|
227
|
-
"additionalProperties": false,
|
|
228
|
-
"required": ["theoretical_ground_universe", "measured", "maximum"],
|
|
229
|
-
"properties": {
|
|
230
|
-
"theoretical_ground_universe": { "const": "not_materialized" },
|
|
231
|
-
"measured": { "$ref": "#/$defs/longTaskCompactCapacityCounts" },
|
|
232
|
-
"maximum": { "$ref": "#/$defs/longTaskCompactCapacityCounts" }
|
|
233
|
-
}
|
|
234
|
-
},
|
|
235
|
-
"selectors": {
|
|
236
|
-
"type": "array",
|
|
237
|
-
"items": {
|
|
238
|
-
"type": "object",
|
|
239
|
-
"additionalProperties": false,
|
|
240
|
-
"required": ["key", "members"],
|
|
241
|
-
"properties": {
|
|
242
|
-
"key": { "$ref": "#/$defs/semanticRef" },
|
|
243
|
-
"members": {
|
|
244
|
-
"type": "array",
|
|
245
|
-
"uniqueItems": true,
|
|
246
|
-
"items": { "$ref": "#/$defs/semanticRef" }
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
},
|
|
251
|
-
"shared_structures": {
|
|
252
|
-
"type": "array",
|
|
253
|
-
"items": {
|
|
254
|
-
"type": "object",
|
|
255
|
-
"additionalProperties": false,
|
|
256
|
-
"required": [
|
|
257
|
-
"key",
|
|
258
|
-
"digest",
|
|
259
|
-
"boundary",
|
|
260
|
-
"parameter_count",
|
|
261
|
-
"template"
|
|
262
|
-
],
|
|
263
|
-
"properties": {
|
|
264
|
-
"key": {
|
|
265
|
-
"type": "string",
|
|
266
|
-
"pattern": "^structure\\.[a-f0-9]{24}$"
|
|
267
|
-
},
|
|
268
|
-
"digest": { "$ref": "#/$defs/sha256" },
|
|
269
|
-
"boundary": { "$ref": "#/$defs/semanticRef" },
|
|
270
|
-
"parameter_count": { "type": "integer", "minimum": 0 },
|
|
271
|
-
"template": {}
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
},
|
|
275
|
-
"claim_catalog": { "$ref": "#/$defs/compactTable" },
|
|
276
|
-
"claim_projections": { "$ref": "#/$defs/compactTable" },
|
|
277
|
-
"fact_sets": {
|
|
278
|
-
"type": "array",
|
|
279
|
-
"items": { "$ref": "#/$defs/compactFactSet" }
|
|
280
|
-
},
|
|
281
|
-
"proof_templates": {
|
|
282
|
-
"type": "array",
|
|
283
|
-
"items": {
|
|
284
|
-
"type": "object",
|
|
285
|
-
"additionalProperties": false,
|
|
286
|
-
"required": ["key", "binding"],
|
|
287
|
-
"properties": {
|
|
288
|
-
"key": { "$ref": "#/$defs/semanticRef" },
|
|
289
|
-
"binding": { "type": "object" }
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
},
|
|
293
|
-
"obligations": { "$ref": "#/$defs/compactTable" },
|
|
294
|
-
"assertion_projections": { "$ref": "#/$defs/compactTable" },
|
|
295
|
-
"exceptions": {
|
|
296
|
-
"type": "array",
|
|
297
|
-
"items": {
|
|
298
|
-
"type": "object",
|
|
299
|
-
"additionalProperties": false,
|
|
300
|
-
"required": ["key", "target_ref", "rationale"],
|
|
301
|
-
"properties": {
|
|
302
|
-
"key": { "$ref": "#/$defs/semanticRef" },
|
|
303
|
-
"target_ref": { "$ref": "#/$defs/semanticRef" },
|
|
304
|
-
"rationale": { "$ref": "#/$defs/nonEmpty" }
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
}
|
|
309
|
-
},
|
|
310
|
-
"semanticFactBindings": {
|
|
311
|
-
"type": "object",
|
|
312
|
-
"additionalProperties": false,
|
|
313
|
-
"required": ["manifest_ref", "facts", "proofs"],
|
|
314
|
-
"properties": {
|
|
315
|
-
"manifest_ref": { "$ref": "#/$defs/semanticRef" },
|
|
316
|
-
"facts": {
|
|
317
|
-
"type": "array",
|
|
318
|
-
"minItems": 1,
|
|
319
|
-
"items": {
|
|
320
|
-
"type": "object",
|
|
321
|
-
"additionalProperties": false,
|
|
322
|
-
"required": ["fact_ref", "claim_ref", "applicability_ref"],
|
|
323
|
-
"properties": {
|
|
324
|
-
"fact_ref": { "$ref": "#/$defs/semanticRef" },
|
|
325
|
-
"fact_revision_digest": { "$ref": "#/$defs/sha256" },
|
|
326
|
-
"claim_ref": { "$ref": "#/$defs/semanticRef" },
|
|
327
|
-
"applicability_ref": { "$ref": "#/$defs/semanticRef" }
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
},
|
|
331
|
-
"proofs": {
|
|
332
|
-
"type": "array",
|
|
333
|
-
"minItems": 1,
|
|
334
|
-
"items": {
|
|
335
|
-
"oneOf": [
|
|
336
|
-
{
|
|
337
|
-
"type": "object",
|
|
338
|
-
"additionalProperties": false,
|
|
339
|
-
"required": [
|
|
340
|
-
"proof_ref",
|
|
341
|
-
"fact_ref",
|
|
342
|
-
"method",
|
|
343
|
-
"proof_surface",
|
|
344
|
-
"evidence_capabilities",
|
|
345
|
-
"authority",
|
|
346
|
-
"check_ref",
|
|
347
|
-
"assertion_ref"
|
|
348
|
-
],
|
|
349
|
-
"properties": {
|
|
350
|
-
"proof_ref": { "$ref": "#/$defs/semanticRef" },
|
|
351
|
-
"obligation_revision_digest": { "$ref": "#/$defs/sha256" },
|
|
352
|
-
"fact_ref": { "$ref": "#/$defs/semanticRef" },
|
|
353
|
-
"method": { "$ref": "#/$defs/semanticRef" },
|
|
354
|
-
"proof_surface": { "$ref": "#/$defs/proofSurface" },
|
|
355
|
-
"evidence_capabilities": {
|
|
356
|
-
"type": "array",
|
|
357
|
-
"minItems": 1,
|
|
358
|
-
"uniqueItems": true,
|
|
359
|
-
"items": { "$ref": "#/$defs/evidenceCapability" }
|
|
360
|
-
},
|
|
361
|
-
"authority": { "const": "machine" },
|
|
362
|
-
"check_ref": { "$ref": "#/$defs/semanticRef" },
|
|
363
|
-
"assertion_ref": { "$ref": "#/$defs/semanticRef" }
|
|
364
|
-
}
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
"type": "object",
|
|
368
|
-
"additionalProperties": false,
|
|
369
|
-
"required": [
|
|
370
|
-
"proof_ref",
|
|
371
|
-
"fact_ref",
|
|
372
|
-
"method",
|
|
373
|
-
"proof_surface",
|
|
374
|
-
"evidence_capabilities",
|
|
375
|
-
"authority",
|
|
376
|
-
"confirmation_ref"
|
|
377
|
-
],
|
|
378
|
-
"properties": {
|
|
379
|
-
"proof_ref": { "$ref": "#/$defs/semanticRef" },
|
|
380
|
-
"obligation_revision_digest": { "$ref": "#/$defs/sha256" },
|
|
381
|
-
"fact_ref": { "$ref": "#/$defs/semanticRef" },
|
|
382
|
-
"method": { "$ref": "#/$defs/semanticRef" },
|
|
383
|
-
"proof_surface": { "$ref": "#/$defs/proofSurface" },
|
|
384
|
-
"evidence_capabilities": {
|
|
385
|
-
"type": "array",
|
|
386
|
-
"minItems": 1,
|
|
387
|
-
"uniqueItems": true,
|
|
388
|
-
"items": { "$ref": "#/$defs/evidenceCapability" }
|
|
389
|
-
},
|
|
390
|
-
"authority": { "const": "external_confirmation" },
|
|
391
|
-
"confirmation_ref": { "$ref": "#/$defs/semanticRef" }
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
]
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
}
|
|
398
|
-
},
|
|
399
|
-
"semanticFactGlobalBindings": {
|
|
400
|
-
"type": "object",
|
|
401
|
-
"additionalProperties": false,
|
|
402
|
-
"required": ["manifest_ref", "obligations"],
|
|
403
|
-
"properties": {
|
|
404
|
-
"manifest_ref": { "$ref": "#/$defs/semanticRef" },
|
|
405
|
-
"obligations": {
|
|
406
|
-
"type": "array",
|
|
407
|
-
"minItems": 1,
|
|
408
|
-
"items": {
|
|
409
|
-
"type": "object",
|
|
410
|
-
"additionalProperties": false,
|
|
411
|
-
"required": [
|
|
412
|
-
"claim_ref",
|
|
413
|
-
"applicability_ref",
|
|
414
|
-
"target_ref",
|
|
415
|
-
"outcome_ref",
|
|
416
|
-
"fact_ref",
|
|
417
|
-
"proof_ref",
|
|
418
|
-
"method",
|
|
419
|
-
"required_polarity"
|
|
420
|
-
],
|
|
421
|
-
"properties": {
|
|
422
|
-
"claim_ref": { "$ref": "#/$defs/semanticRef" },
|
|
423
|
-
"applicability_ref": { "$ref": "#/$defs/semanticRef" },
|
|
424
|
-
"target_ref": { "$ref": "#/$defs/semanticRef" },
|
|
425
|
-
"outcome_ref": { "$ref": "#/$defs/semanticRef" },
|
|
426
|
-
"fact_ref": { "$ref": "#/$defs/semanticRef" },
|
|
427
|
-
"proof_ref": { "$ref": "#/$defs/semanticRef" },
|
|
428
|
-
"method": { "$ref": "#/$defs/semanticRef" },
|
|
429
|
-
"required_polarity": { "enum": ["positive", "negative"] }
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
}
|
|
433
|
-
}
|
|
434
|
-
},
|
|
435
|
-
"sha256": { "type": "string", "pattern": "^[a-f0-9]{64}$" },
|
|
436
|
-
"nonEmpty": { "type": "string", "minLength": 1 },
|
|
437
|
-
"nonEmptyStrings": {
|
|
438
|
-
"type": "array",
|
|
439
|
-
"items": { "$ref": "#/$defs/nonEmpty" }
|
|
440
|
-
},
|
|
441
|
-
"executionTargetCapability": {
|
|
442
|
-
"enum": [
|
|
443
|
-
"browser-runtime",
|
|
444
|
-
"native-runtime",
|
|
445
|
-
"desktop-runtime",
|
|
446
|
-
"service-runtime",
|
|
447
|
-
"process-runtime",
|
|
448
|
-
"external-runtime",
|
|
449
|
-
"cold-start",
|
|
450
|
-
"production-root",
|
|
451
|
-
"pointer-input",
|
|
452
|
-
"keyboard-input",
|
|
453
|
-
"touch-input",
|
|
454
|
-
"viewport-control",
|
|
455
|
-
"pixel-density-observation",
|
|
456
|
-
"safe-area-observation",
|
|
457
|
-
"motion-observation",
|
|
458
|
-
"reduced-motion",
|
|
459
|
-
"color-scheme-control",
|
|
460
|
-
"text-scale-control",
|
|
461
|
-
"localization-control",
|
|
462
|
-
"rtl-control",
|
|
463
|
-
"assistive-technology",
|
|
464
|
-
"screen-reader",
|
|
465
|
-
"physical-device",
|
|
466
|
-
"device-orientation",
|
|
467
|
-
"sensor-input",
|
|
468
|
-
"camera-input",
|
|
469
|
-
"haptic-output",
|
|
470
|
-
"audio-output",
|
|
471
|
-
"reduced-transparency",
|
|
472
|
-
"increased-contrast",
|
|
473
|
-
"bold-text-control",
|
|
474
|
-
"button-shapes-control",
|
|
475
|
-
"system-ui-observation",
|
|
476
|
-
"ime-control",
|
|
477
|
-
"permission-control",
|
|
478
|
-
"network-state-control",
|
|
479
|
-
"lifecycle-control",
|
|
480
|
-
"window-state-control",
|
|
481
|
-
"fold-state-control",
|
|
482
|
-
"thermal-observation",
|
|
483
|
-
"power-mode-control",
|
|
484
|
-
"persistent-storage",
|
|
485
|
-
"network-boundary"
|
|
486
|
-
]
|
|
487
|
-
},
|
|
488
|
-
"targetProfile": {
|
|
489
|
-
"type": "object",
|
|
490
|
-
"additionalProperties": false,
|
|
491
|
-
"required": [
|
|
492
|
-
"key",
|
|
493
|
-
"description",
|
|
494
|
-
"required_state",
|
|
495
|
-
"required_target_refs"
|
|
496
|
-
],
|
|
497
|
-
"properties": {
|
|
498
|
-
"key": { "$ref": "#/$defs/key" },
|
|
499
|
-
"description": { "$ref": "#/$defs/nonEmpty" },
|
|
500
|
-
"required_state": {
|
|
501
|
-
"enum": [
|
|
502
|
-
"implementation_complete",
|
|
503
|
-
"target_profile_usable",
|
|
504
|
-
"production_release_ready"
|
|
505
|
-
]
|
|
506
|
-
},
|
|
507
|
-
"required_target_refs": { "$ref": "#/$defs/keys" },
|
|
508
|
-
"completion_authority": {
|
|
509
|
-
"enum": ["machine_only", "declared_authorities"],
|
|
510
|
-
"default": "machine_only"
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
},
|
|
514
|
-
"executionTarget": {
|
|
515
|
-
"type": "object",
|
|
516
|
-
"additionalProperties": false,
|
|
517
|
-
"required": [
|
|
518
|
-
"key",
|
|
519
|
-
"description",
|
|
520
|
-
"role",
|
|
521
|
-
"runtime_family",
|
|
522
|
-
"root_entrypoint",
|
|
523
|
-
"capabilities"
|
|
524
|
-
],
|
|
525
|
-
"properties": {
|
|
526
|
-
"key": { "$ref": "#/$defs/key" },
|
|
527
|
-
"description": { "$ref": "#/$defs/nonEmpty" },
|
|
528
|
-
"role": { "enum": ["product", "support", "observer"] },
|
|
529
|
-
"runtime_family": {
|
|
530
|
-
"enum": [
|
|
531
|
-
"browser",
|
|
532
|
-
"native",
|
|
533
|
-
"desktop",
|
|
534
|
-
"service",
|
|
535
|
-
"process",
|
|
536
|
-
"external"
|
|
537
|
-
]
|
|
538
|
-
},
|
|
539
|
-
"root_entrypoint": { "$ref": "#/$defs/nonEmpty" },
|
|
540
|
-
"root_argv": {
|
|
541
|
-
"type": "array",
|
|
542
|
-
"items": { "type": "string", "pattern": "^[^\\u0000]*$" }
|
|
543
|
-
},
|
|
544
|
-
"capabilities": {
|
|
545
|
-
"type": "array",
|
|
546
|
-
"minItems": 1,
|
|
547
|
-
"uniqueItems": true,
|
|
548
|
-
"items": { "$ref": "#/$defs/executionTargetCapability" }
|
|
549
|
-
}
|
|
550
|
-
}
|
|
551
|
-
},
|
|
552
|
-
"stage": {
|
|
553
|
-
"type": "object",
|
|
554
|
-
"additionalProperties": false,
|
|
555
|
-
"required": ["key", "title", "depends_on", "gate_outcome"],
|
|
556
|
-
"properties": {
|
|
557
|
-
"key": { "$ref": "#/$defs/key" },
|
|
558
|
-
"title": { "$ref": "#/$defs/nonEmpty" },
|
|
559
|
-
"depends_on": { "$ref": "#/$defs/keys" },
|
|
560
|
-
"gate_outcome": { "$ref": "#/$defs/key" }
|
|
561
|
-
}
|
|
562
|
-
},
|
|
563
|
-
"keyedStatement": {
|
|
564
|
-
"type": "object",
|
|
565
|
-
"additionalProperties": false,
|
|
566
|
-
"required": ["key", "statement"],
|
|
567
|
-
"properties": {
|
|
568
|
-
"key": { "$ref": "#/$defs/key" },
|
|
569
|
-
"statement": { "$ref": "#/$defs/nonEmpty" }
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
"applicableStatement": {
|
|
573
|
-
"type": "object",
|
|
574
|
-
"additionalProperties": false,
|
|
575
|
-
"required": ["key", "statement", "applicability_refs"],
|
|
576
|
-
"properties": {
|
|
577
|
-
"key": { "$ref": "#/$defs/key" },
|
|
578
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
579
|
-
"applicability_refs": {
|
|
580
|
-
"type": "array",
|
|
581
|
-
"minItems": 1,
|
|
582
|
-
"uniqueItems": true,
|
|
583
|
-
"items": { "$ref": "#/$defs/key" }
|
|
584
|
-
}
|
|
585
|
-
}
|
|
586
|
-
},
|
|
587
|
-
"claimApplicability": {
|
|
588
|
-
"type": "object",
|
|
589
|
-
"additionalProperties": false,
|
|
590
|
-
"required": [
|
|
591
|
-
"key",
|
|
592
|
-
"target_ref",
|
|
593
|
-
"journey_role",
|
|
594
|
-
"dimensions",
|
|
595
|
-
"given_refs",
|
|
596
|
-
"when_refs"
|
|
597
|
-
],
|
|
598
|
-
"properties": {
|
|
599
|
-
"key": { "$ref": "#/$defs/key" },
|
|
600
|
-
"target_ref": { "$ref": "#/$defs/key" },
|
|
601
|
-
"journey_role": {
|
|
602
|
-
"enum": [
|
|
603
|
-
"success",
|
|
604
|
-
"degradation",
|
|
605
|
-
"recovery",
|
|
606
|
-
"stage_gate",
|
|
607
|
-
"conformance"
|
|
608
|
-
]
|
|
609
|
-
},
|
|
610
|
-
"dimensions": {
|
|
611
|
-
"type": "array",
|
|
612
|
-
"minItems": 1,
|
|
613
|
-
"items": {
|
|
614
|
-
"type": "object",
|
|
615
|
-
"additionalProperties": false,
|
|
616
|
-
"required": ["key", "value"],
|
|
617
|
-
"properties": {
|
|
618
|
-
"key": { "$ref": "#/$defs/semanticRef" },
|
|
619
|
-
"value": { "$ref": "#/$defs/semanticRef" }
|
|
620
|
-
}
|
|
621
|
-
}
|
|
622
|
-
},
|
|
623
|
-
"given_refs": {
|
|
624
|
-
"type": "array",
|
|
625
|
-
"minItems": 1,
|
|
626
|
-
"uniqueItems": true,
|
|
627
|
-
"items": { "$ref": "#/$defs/key" }
|
|
628
|
-
},
|
|
629
|
-
"when_refs": {
|
|
630
|
-
"type": "array",
|
|
631
|
-
"minItems": 1,
|
|
632
|
-
"uniqueItems": true,
|
|
633
|
-
"items": { "$ref": "#/$defs/key" }
|
|
634
|
-
}
|
|
635
|
-
}
|
|
636
|
-
},
|
|
637
|
-
"keyedPath": {
|
|
638
|
-
"type": "object",
|
|
639
|
-
"additionalProperties": false,
|
|
640
|
-
"required": ["key", "path"],
|
|
641
|
-
"properties": {
|
|
642
|
-
"key": { "$ref": "#/$defs/key" },
|
|
643
|
-
"path": { "$ref": "#/$defs/nonEmpty" }
|
|
644
|
-
}
|
|
645
|
-
},
|
|
646
|
-
"sourceClaim": {
|
|
647
|
-
"type": "object",
|
|
648
|
-
"additionalProperties": false,
|
|
649
|
-
"required": ["key", "source_ref", "statement", "disposition"],
|
|
650
|
-
"properties": {
|
|
651
|
-
"key": { "$ref": "#/$defs/key" },
|
|
652
|
-
"source_ref": { "type": "string", "pattern": "^[^#]+(?:#[^#]+)?$" },
|
|
653
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
654
|
-
"judgment_basis": {
|
|
655
|
-
"type": "object",
|
|
656
|
-
"additionalProperties": false,
|
|
657
|
-
"required": ["kind", "claim_ref", "applicability_refs"],
|
|
658
|
-
"properties": {
|
|
659
|
-
"kind": {
|
|
660
|
-
"enum": [
|
|
661
|
-
"subjective_preference",
|
|
662
|
-
"expert_assessment",
|
|
663
|
-
"authorization"
|
|
664
|
-
]
|
|
665
|
-
},
|
|
666
|
-
"claim_ref": { "$ref": "#/$defs/nonEmpty" },
|
|
667
|
-
"applicability_refs": { "$ref": "#/$defs/nonEmptyStrings" }
|
|
668
|
-
}
|
|
669
|
-
},
|
|
670
|
-
"disposition": {
|
|
671
|
-
"oneOf": [
|
|
672
|
-
{
|
|
673
|
-
"type": "object",
|
|
674
|
-
"additionalProperties": false,
|
|
675
|
-
"required": ["type", "refs"],
|
|
676
|
-
"properties": {
|
|
677
|
-
"type": {
|
|
678
|
-
"enum": [
|
|
679
|
-
"claim",
|
|
680
|
-
"global_constraint",
|
|
681
|
-
"risk_fact",
|
|
682
|
-
"external_confirmation"
|
|
683
|
-
]
|
|
684
|
-
},
|
|
685
|
-
"refs": { "$ref": "#/$defs/nonEmptyStrings" }
|
|
686
|
-
}
|
|
687
|
-
},
|
|
688
|
-
{
|
|
689
|
-
"type": "object",
|
|
690
|
-
"additionalProperties": false,
|
|
691
|
-
"required": ["type", "refs"],
|
|
692
|
-
"properties": {
|
|
693
|
-
"type": { "const": "acceptance" },
|
|
694
|
-
"refs": {
|
|
695
|
-
"type": "array",
|
|
696
|
-
"minItems": 1,
|
|
697
|
-
"maxItems": 1,
|
|
698
|
-
"items": { "$ref": "#/$defs/nonEmpty" }
|
|
699
|
-
}
|
|
700
|
-
}
|
|
701
|
-
},
|
|
702
|
-
{
|
|
703
|
-
"type": "object",
|
|
704
|
-
"additionalProperties": false,
|
|
705
|
-
"required": ["type", "ref"],
|
|
706
|
-
"properties": {
|
|
707
|
-
"type": { "const": "outcome_result" },
|
|
708
|
-
"ref": { "$ref": "#/$defs/nonEmpty" }
|
|
709
|
-
}
|
|
710
|
-
},
|
|
711
|
-
{
|
|
712
|
-
"type": "object",
|
|
713
|
-
"additionalProperties": false,
|
|
714
|
-
"required": ["type", "reason"],
|
|
715
|
-
"properties": {
|
|
716
|
-
"type": { "const": "decision_required" },
|
|
717
|
-
"reason": { "$ref": "#/$defs/nonEmpty" }
|
|
718
|
-
}
|
|
719
|
-
}
|
|
720
|
-
]
|
|
721
|
-
}
|
|
722
|
-
}
|
|
723
|
-
},
|
|
724
|
-
"risk": {
|
|
725
|
-
"type": "object",
|
|
726
|
-
"additionalProperties": false,
|
|
727
|
-
"required": ["facts"],
|
|
728
|
-
"properties": {
|
|
729
|
-
"requested_level": {
|
|
730
|
-
"enum": ["auto", "standard", "strict"],
|
|
731
|
-
"default": "auto"
|
|
732
|
-
},
|
|
733
|
-
"facts": {
|
|
734
|
-
"type": "object",
|
|
735
|
-
"additionalProperties": false,
|
|
736
|
-
"properties": {
|
|
737
|
-
"public_api_or_schema_change": {
|
|
738
|
-
"$ref": "#/$defs/keys",
|
|
739
|
-
"default": []
|
|
740
|
-
},
|
|
741
|
-
"persistent_data_change": { "$ref": "#/$defs/keys", "default": [] },
|
|
742
|
-
"data_migration": { "$ref": "#/$defs/keys", "default": [] },
|
|
743
|
-
"security_boundary_change": {
|
|
744
|
-
"$ref": "#/$defs/keys",
|
|
745
|
-
"default": []
|
|
746
|
-
},
|
|
747
|
-
"permission_boundary_change": {
|
|
748
|
-
"$ref": "#/$defs/keys",
|
|
749
|
-
"default": []
|
|
750
|
-
},
|
|
751
|
-
"irreversible_external_effect": {
|
|
752
|
-
"$ref": "#/$defs/keys",
|
|
753
|
-
"default": []
|
|
754
|
-
},
|
|
755
|
-
"critical_user_path": { "$ref": "#/$defs/keys", "default": [] },
|
|
756
|
-
"full_population_operation": {
|
|
757
|
-
"$ref": "#/$defs/keys",
|
|
758
|
-
"default": []
|
|
759
|
-
},
|
|
760
|
-
"multi_repository_change": {
|
|
761
|
-
"$ref": "#/$defs/keys",
|
|
762
|
-
"default": []
|
|
763
|
-
},
|
|
764
|
-
"weak_observability": { "$ref": "#/$defs/keys", "default": [] }
|
|
765
|
-
}
|
|
766
|
-
}
|
|
767
|
-
}
|
|
768
|
-
},
|
|
769
|
-
"keys": {
|
|
770
|
-
"type": "array",
|
|
771
|
-
"items": { "$ref": "#/$defs/key" },
|
|
772
|
-
"uniqueItems": true
|
|
773
|
-
},
|
|
774
|
-
"global": {
|
|
775
|
-
"type": "object",
|
|
776
|
-
"additionalProperties": false,
|
|
777
|
-
"properties": {
|
|
778
|
-
"applicability": {
|
|
779
|
-
"type": "array",
|
|
780
|
-
"items": { "$ref": "#/$defs/claimApplicability" },
|
|
781
|
-
"default": []
|
|
782
|
-
},
|
|
783
|
-
"semantic_fact_bindings": {
|
|
784
|
-
"$ref": "#/$defs/semanticFactGlobalBindings"
|
|
785
|
-
},
|
|
786
|
-
"product": {
|
|
787
|
-
"type": "object",
|
|
788
|
-
"additionalProperties": false,
|
|
789
|
-
"properties": {
|
|
790
|
-
"non_goals": {
|
|
791
|
-
"type": "array",
|
|
792
|
-
"items": { "$ref": "#/$defs/applicableStatement" },
|
|
793
|
-
"default": []
|
|
794
|
-
}
|
|
795
|
-
},
|
|
796
|
-
"default": {}
|
|
797
|
-
},
|
|
798
|
-
"technical": {
|
|
799
|
-
"type": "object",
|
|
800
|
-
"additionalProperties": false,
|
|
801
|
-
"properties": {
|
|
802
|
-
"constraints": {
|
|
803
|
-
"type": "array",
|
|
804
|
-
"items": { "$ref": "#/$defs/applicableStatement" },
|
|
805
|
-
"default": []
|
|
806
|
-
},
|
|
807
|
-
"forbidden_paths": {
|
|
808
|
-
"type": "array",
|
|
809
|
-
"items": { "$ref": "#/$defs/keyedPath" },
|
|
810
|
-
"default": []
|
|
811
|
-
},
|
|
812
|
-
"forbidden_shortcuts": {
|
|
813
|
-
"type": "array",
|
|
814
|
-
"items": { "$ref": "#/$defs/applicableStatement" },
|
|
815
|
-
"default": []
|
|
816
|
-
}
|
|
817
|
-
},
|
|
818
|
-
"default": {}
|
|
819
|
-
},
|
|
820
|
-
"acceptance": {
|
|
821
|
-
"type": "object",
|
|
822
|
-
"additionalProperties": false,
|
|
823
|
-
"properties": {
|
|
824
|
-
"checks": {
|
|
825
|
-
"type": "array",
|
|
826
|
-
"items": { "$ref": "#/$defs/check" },
|
|
827
|
-
"default": []
|
|
828
|
-
},
|
|
829
|
-
"counterfactual_controls": {
|
|
830
|
-
"type": "array",
|
|
831
|
-
"items": { "$ref": "#/$defs/globalCounterfactual" },
|
|
832
|
-
"default": []
|
|
833
|
-
},
|
|
834
|
-
"external_confirmations": {
|
|
835
|
-
"type": "array",
|
|
836
|
-
"items": {
|
|
837
|
-
"type": "object",
|
|
838
|
-
"additionalProperties": false,
|
|
839
|
-
"required": [
|
|
840
|
-
"key",
|
|
841
|
-
"description",
|
|
842
|
-
"owner",
|
|
843
|
-
"kind",
|
|
844
|
-
"impact_claims",
|
|
845
|
-
"blocks_target"
|
|
846
|
-
],
|
|
847
|
-
"properties": {
|
|
848
|
-
"key": { "$ref": "#/$defs/key" },
|
|
849
|
-
"description": { "$ref": "#/$defs/nonEmpty" },
|
|
850
|
-
"owner": { "$ref": "#/$defs/nonEmpty" },
|
|
851
|
-
"kind": {
|
|
852
|
-
"enum": [
|
|
853
|
-
"functional_prerequisite",
|
|
854
|
-
"field_validation",
|
|
855
|
-
"production_release_gate",
|
|
856
|
-
"commercial_activation",
|
|
857
|
-
"expert_authority"
|
|
858
|
-
]
|
|
859
|
-
},
|
|
860
|
-
"impact_claims": {
|
|
861
|
-
"type": "array",
|
|
862
|
-
"minItems": 1,
|
|
863
|
-
"uniqueItems": true,
|
|
864
|
-
"items": { "$ref": "#/$defs/nonEmpty" }
|
|
865
|
-
},
|
|
866
|
-
"blocks_target": { "type": "boolean" },
|
|
867
|
-
"actor": {
|
|
868
|
-
"type": "object",
|
|
869
|
-
"additionalProperties": false,
|
|
870
|
-
"required": ["id", "role", "authority_kind"],
|
|
871
|
-
"properties": {
|
|
872
|
-
"id": { "$ref": "#/$defs/nonEmpty" },
|
|
873
|
-
"role": { "$ref": "#/$defs/nonEmpty" },
|
|
874
|
-
"authority_kind": {
|
|
875
|
-
"enum": ["human", "expert", "external_system"]
|
|
876
|
-
},
|
|
877
|
-
"identity_assurance": {
|
|
878
|
-
"oneOf": [
|
|
879
|
-
{
|
|
880
|
-
"type": "object",
|
|
881
|
-
"additionalProperties": false,
|
|
882
|
-
"required": ["scheme", "key_id", "public_key_ref"],
|
|
883
|
-
"properties": {
|
|
884
|
-
"scheme": { "const": "ed25519" },
|
|
885
|
-
"key_id": { "$ref": "#/$defs/key" },
|
|
886
|
-
"public_key_ref": { "$ref": "#/$defs/nonEmpty" }
|
|
887
|
-
}
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
"type": "object",
|
|
891
|
-
"additionalProperties": false,
|
|
892
|
-
"required": ["scheme"],
|
|
893
|
-
"properties": {
|
|
894
|
-
"scheme": { "const": "declared_only" }
|
|
895
|
-
}
|
|
896
|
-
}
|
|
897
|
-
]
|
|
898
|
-
}
|
|
899
|
-
}
|
|
900
|
-
},
|
|
901
|
-
"target_ref": { "$ref": "#/$defs/key" },
|
|
902
|
-
"environment_identity": { "$ref": "#/$defs/nonEmpty" },
|
|
903
|
-
"scenario": { "$ref": "#/$defs/scenario" },
|
|
904
|
-
"evidence_requirements": {
|
|
905
|
-
"type": "array",
|
|
906
|
-
"minItems": 1,
|
|
907
|
-
"uniqueItems": true,
|
|
908
|
-
"items": { "$ref": "#/$defs/keyedStatement" }
|
|
909
|
-
},
|
|
910
|
-
"obligations": {
|
|
911
|
-
"type": "array",
|
|
912
|
-
"minItems": 1,
|
|
913
|
-
"items": { "$ref": "#/$defs/externalObligation" }
|
|
914
|
-
}
|
|
915
|
-
}
|
|
916
|
-
},
|
|
917
|
-
"default": []
|
|
918
|
-
}
|
|
919
|
-
},
|
|
920
|
-
"default": {}
|
|
921
|
-
}
|
|
922
|
-
}
|
|
923
|
-
},
|
|
924
|
-
"externalObligation": {
|
|
925
|
-
"type": "object",
|
|
926
|
-
"additionalProperties": false,
|
|
927
|
-
"required": [
|
|
928
|
-
"key",
|
|
929
|
-
"claim_ref",
|
|
930
|
-
"applicability_ref",
|
|
931
|
-
"fact_ref",
|
|
932
|
-
"proof_ref",
|
|
933
|
-
"method",
|
|
934
|
-
"proof_surface",
|
|
935
|
-
"evidence_capabilities",
|
|
936
|
-
"expected_authority_ref",
|
|
937
|
-
"result_kind"
|
|
938
|
-
],
|
|
939
|
-
"properties": {
|
|
940
|
-
"key": { "$ref": "#/$defs/key" },
|
|
941
|
-
"claim_ref": { "$ref": "#/$defs/nonEmpty" },
|
|
942
|
-
"applicability_ref": { "$ref": "#/$defs/key" },
|
|
943
|
-
"fact_ref": {
|
|
944
|
-
"oneOf": [{ "type": "null" }, { "$ref": "#/$defs/nonEmpty" }]
|
|
945
|
-
},
|
|
946
|
-
"proof_ref": {
|
|
947
|
-
"oneOf": [{ "type": "null" }, { "$ref": "#/$defs/nonEmpty" }]
|
|
948
|
-
},
|
|
949
|
-
"method": { "$ref": "#/$defs/nonEmpty" },
|
|
950
|
-
"proof_surface": { "$ref": "#/$defs/proofSurface" },
|
|
951
|
-
"evidence_capabilities": {
|
|
952
|
-
"type": "array",
|
|
953
|
-
"uniqueItems": true,
|
|
954
|
-
"items": { "$ref": "#/$defs/evidenceCapability" }
|
|
955
|
-
},
|
|
956
|
-
"expected_authority_ref": { "$ref": "#/$defs/nonEmpty" },
|
|
957
|
-
"result_kind": { "enum": ["actual", "judgment"] },
|
|
958
|
-
"judgment_basis": {
|
|
959
|
-
"type": "object",
|
|
960
|
-
"additionalProperties": false,
|
|
961
|
-
"required": ["kind", "source_ref"],
|
|
962
|
-
"properties": {
|
|
963
|
-
"kind": {
|
|
964
|
-
"enum": [
|
|
965
|
-
"subjective_preference",
|
|
966
|
-
"expert_assessment",
|
|
967
|
-
"authorization"
|
|
968
|
-
]
|
|
969
|
-
},
|
|
970
|
-
"source_ref": { "$ref": "#/$defs/key" }
|
|
971
|
-
}
|
|
972
|
-
}
|
|
973
|
-
}
|
|
974
|
-
},
|
|
975
|
-
"outcome": {
|
|
976
|
-
"type": "object",
|
|
977
|
-
"additionalProperties": false,
|
|
978
|
-
"required": [
|
|
979
|
-
"key",
|
|
980
|
-
"title",
|
|
981
|
-
"stage",
|
|
982
|
-
"applicability",
|
|
983
|
-
"semantic_fact_bindings",
|
|
984
|
-
"product",
|
|
985
|
-
"technical",
|
|
986
|
-
"acceptance"
|
|
987
|
-
],
|
|
988
|
-
"properties": {
|
|
989
|
-
"key": { "$ref": "#/$defs/key" },
|
|
990
|
-
"title": { "$ref": "#/$defs/nonEmpty" },
|
|
991
|
-
"stage": { "$ref": "#/$defs/key" },
|
|
992
|
-
"depends_on": { "$ref": "#/$defs/keys", "default": [] },
|
|
993
|
-
"applicability": {
|
|
994
|
-
"type": "array",
|
|
995
|
-
"minItems": 1,
|
|
996
|
-
"items": { "$ref": "#/$defs/claimApplicability" }
|
|
997
|
-
},
|
|
998
|
-
"semantic_fact_bindings": {
|
|
999
|
-
"$ref": "#/$defs/semanticFactBindings"
|
|
1000
|
-
},
|
|
1001
|
-
"product": { "$ref": "#/$defs/product" },
|
|
1002
|
-
"technical": { "$ref": "#/$defs/technical" },
|
|
1003
|
-
"acceptance": { "$ref": "#/$defs/acceptance" }
|
|
1004
|
-
}
|
|
1005
|
-
},
|
|
1006
|
-
"product": {
|
|
1007
|
-
"type": "object",
|
|
1008
|
-
"additionalProperties": false,
|
|
1009
|
-
"required": [
|
|
1010
|
-
"observable_result",
|
|
1011
|
-
"result_applicability_refs",
|
|
1012
|
-
"success_path_required",
|
|
1013
|
-
"degradation_path_required",
|
|
1014
|
-
"owner",
|
|
1015
|
-
"control_relation_closure"
|
|
1016
|
-
],
|
|
1017
|
-
"properties": {
|
|
1018
|
-
"observable_result": { "$ref": "#/$defs/nonEmpty" },
|
|
1019
|
-
"result_applicability_refs": {
|
|
1020
|
-
"type": "array",
|
|
1021
|
-
"minItems": 1,
|
|
1022
|
-
"uniqueItems": true,
|
|
1023
|
-
"items": { "$ref": "#/$defs/key" }
|
|
1024
|
-
},
|
|
1025
|
-
"success_path_required": { "type": "boolean" },
|
|
1026
|
-
"degradation_path_required": { "type": "boolean" },
|
|
1027
|
-
"owner": {
|
|
1028
|
-
"type": "object",
|
|
1029
|
-
"additionalProperties": false,
|
|
1030
|
-
"required": ["label", "context_refs", "path_globs"],
|
|
1031
|
-
"properties": {
|
|
1032
|
-
"label": { "$ref": "#/$defs/nonEmpty" },
|
|
1033
|
-
"context_refs": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
1034
|
-
"path_globs": { "$ref": "#/$defs/nonEmptyStrings" }
|
|
1035
|
-
}
|
|
1036
|
-
},
|
|
1037
|
-
"requirements": {
|
|
1038
|
-
"type": "array",
|
|
1039
|
-
"items": { "$ref": "#/$defs/requirement" },
|
|
1040
|
-
"default": []
|
|
1041
|
-
},
|
|
1042
|
-
"owner_surfaces": { "$ref": "#/$defs/nonEmptyStrings", "default": [] },
|
|
1043
|
-
"controls": {
|
|
1044
|
-
"type": "array",
|
|
1045
|
-
"items": { "$ref": "#/$defs/control" },
|
|
1046
|
-
"default": []
|
|
1047
|
-
},
|
|
1048
|
-
"control_relation_closure": {
|
|
1049
|
-
"$ref": "#/$defs/controlRelationClosure"
|
|
1050
|
-
},
|
|
1051
|
-
"control_relations": {
|
|
1052
|
-
"type": "array",
|
|
1053
|
-
"items": { "$ref": "#/$defs/controlRelation" },
|
|
1054
|
-
"default": []
|
|
1055
|
-
},
|
|
1056
|
-
"surface_bindings": {
|
|
1057
|
-
"type": "array",
|
|
1058
|
-
"items": { "$ref": "#/$defs/surfaceBinding" },
|
|
1059
|
-
"default": []
|
|
1060
|
-
},
|
|
1061
|
-
"non_completing_outcomes": {
|
|
1062
|
-
"type": "array",
|
|
1063
|
-
"items": { "$ref": "#/$defs/applicableStatement" },
|
|
1064
|
-
"default": []
|
|
1065
|
-
}
|
|
1066
|
-
},
|
|
1067
|
-
"allOf": [
|
|
1068
|
-
{
|
|
1069
|
-
"if": {
|
|
1070
|
-
"required": ["controls"],
|
|
1071
|
-
"properties": { "controls": { "minItems": 1 } }
|
|
1072
|
-
},
|
|
1073
|
-
"then": {
|
|
1074
|
-
"required": ["surface_bindings"],
|
|
1075
|
-
"properties": { "surface_bindings": { "minItems": 1 } }
|
|
1076
|
-
}
|
|
1077
|
-
}
|
|
1078
|
-
]
|
|
1079
|
-
},
|
|
1080
|
-
"requirement": {
|
|
1081
|
-
"type": "object",
|
|
1082
|
-
"additionalProperties": false,
|
|
1083
|
-
"required": [
|
|
1084
|
-
"key",
|
|
1085
|
-
"statement",
|
|
1086
|
-
"required_proof_surfaces",
|
|
1087
|
-
"applicability_refs"
|
|
1088
|
-
],
|
|
1089
|
-
"properties": {
|
|
1090
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1091
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
1092
|
-
"required_proof_surfaces": {
|
|
1093
|
-
"type": "array",
|
|
1094
|
-
"minItems": 1,
|
|
1095
|
-
"uniqueItems": true,
|
|
1096
|
-
"items": { "$ref": "#/$defs/proofSurface" }
|
|
1097
|
-
},
|
|
1098
|
-
"applicability_refs": {
|
|
1099
|
-
"type": "array",
|
|
1100
|
-
"minItems": 1,
|
|
1101
|
-
"uniqueItems": true,
|
|
1102
|
-
"items": { "$ref": "#/$defs/key" }
|
|
1103
|
-
}
|
|
1104
|
-
}
|
|
1105
|
-
},
|
|
1106
|
-
"control": {
|
|
1107
|
-
"type": "object",
|
|
1108
|
-
"additionalProperties": false,
|
|
1109
|
-
"required": ["key", "field_coverage"],
|
|
1110
|
-
"properties": {
|
|
1111
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1112
|
-
"surface": { "type": "string", "default": "" },
|
|
1113
|
-
"region": { "type": "string", "default": "" },
|
|
1114
|
-
"location": { "type": "string", "default": "" },
|
|
1115
|
-
"control_type": { "type": "string", "default": "" },
|
|
1116
|
-
"label_content": { "type": "string", "default": "" },
|
|
1117
|
-
"user_task": { "type": "string", "default": "" },
|
|
1118
|
-
"visibility": { "type": "string", "default": "" },
|
|
1119
|
-
"availability": { "type": "string", "default": "" },
|
|
1120
|
-
"trigger": { "type": "string", "default": "" },
|
|
1121
|
-
"input": { "type": "string", "default": "" },
|
|
1122
|
-
"validation": { "type": "string", "default": "" },
|
|
1123
|
-
"default_value": { "type": "string", "default": "" },
|
|
1124
|
-
"interaction": { "type": "string", "default": "" },
|
|
1125
|
-
"navigation_result": { "type": "string", "default": "" },
|
|
1126
|
-
"loading_state": { "type": "string", "default": "" },
|
|
1127
|
-
"empty_state": { "type": "string", "default": "" },
|
|
1128
|
-
"success_state": { "type": "string", "default": "" },
|
|
1129
|
-
"failure_state": { "type": "string", "default": "" },
|
|
1130
|
-
"recovery": { "type": "string", "default": "" },
|
|
1131
|
-
"permission": { "type": "string", "default": "" },
|
|
1132
|
-
"feedback": { "type": "string", "default": "" },
|
|
1133
|
-
"accessibility": { "type": "string", "default": "" },
|
|
1134
|
-
"field_coverage": {
|
|
1135
|
-
"type": "array",
|
|
1136
|
-
"minItems": 1,
|
|
1137
|
-
"items": { "$ref": "#/$defs/controlFieldCoverage" }
|
|
1138
|
-
}
|
|
1139
|
-
}
|
|
1140
|
-
},
|
|
1141
|
-
"controlField": {
|
|
1142
|
-
"enum": [
|
|
1143
|
-
"surface",
|
|
1144
|
-
"region",
|
|
1145
|
-
"location",
|
|
1146
|
-
"control_type",
|
|
1147
|
-
"label_content",
|
|
1148
|
-
"user_task",
|
|
1149
|
-
"visibility",
|
|
1150
|
-
"availability",
|
|
1151
|
-
"trigger",
|
|
1152
|
-
"input",
|
|
1153
|
-
"validation",
|
|
1154
|
-
"default_value",
|
|
1155
|
-
"interaction",
|
|
1156
|
-
"navigation_result",
|
|
1157
|
-
"loading_state",
|
|
1158
|
-
"empty_state",
|
|
1159
|
-
"success_state",
|
|
1160
|
-
"failure_state",
|
|
1161
|
-
"recovery",
|
|
1162
|
-
"permission",
|
|
1163
|
-
"feedback",
|
|
1164
|
-
"accessibility"
|
|
1165
|
-
]
|
|
1166
|
-
},
|
|
1167
|
-
"controlFieldCoverage": {
|
|
1168
|
-
"oneOf": [
|
|
1169
|
-
{
|
|
1170
|
-
"type": "object",
|
|
1171
|
-
"additionalProperties": false,
|
|
1172
|
-
"required": ["fields", "state", "applicability_refs"],
|
|
1173
|
-
"properties": {
|
|
1174
|
-
"fields": {
|
|
1175
|
-
"type": "array",
|
|
1176
|
-
"minItems": 1,
|
|
1177
|
-
"uniqueItems": true,
|
|
1178
|
-
"items": { "$ref": "#/$defs/controlField" }
|
|
1179
|
-
},
|
|
1180
|
-
"state": { "const": "specified" },
|
|
1181
|
-
"applicability_refs": {
|
|
1182
|
-
"type": "array",
|
|
1183
|
-
"minItems": 1,
|
|
1184
|
-
"uniqueItems": true,
|
|
1185
|
-
"items": { "$ref": "#/$defs/key" }
|
|
1186
|
-
}
|
|
1187
|
-
}
|
|
1188
|
-
},
|
|
1189
|
-
{
|
|
1190
|
-
"type": "object",
|
|
1191
|
-
"additionalProperties": false,
|
|
1192
|
-
"required": ["fields", "state", "statement", "applicability_refs"],
|
|
1193
|
-
"properties": {
|
|
1194
|
-
"fields": {
|
|
1195
|
-
"type": "array",
|
|
1196
|
-
"minItems": 1,
|
|
1197
|
-
"uniqueItems": true,
|
|
1198
|
-
"items": { "$ref": "#/$defs/controlField" }
|
|
1199
|
-
},
|
|
1200
|
-
"state": { "const": "not_applicable" },
|
|
1201
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
1202
|
-
"applicability_refs": {
|
|
1203
|
-
"type": "array",
|
|
1204
|
-
"minItems": 1,
|
|
1205
|
-
"uniqueItems": true,
|
|
1206
|
-
"items": { "$ref": "#/$defs/key" }
|
|
1207
|
-
}
|
|
1208
|
-
}
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
"type": "object",
|
|
1212
|
-
"additionalProperties": false,
|
|
1213
|
-
"required": ["fields", "state", "statement"],
|
|
1214
|
-
"properties": {
|
|
1215
|
-
"fields": {
|
|
1216
|
-
"type": "array",
|
|
1217
|
-
"minItems": 1,
|
|
1218
|
-
"uniqueItems": true,
|
|
1219
|
-
"items": { "$ref": "#/$defs/controlField" }
|
|
1220
|
-
},
|
|
1221
|
-
"state": { "const": "unresolved" },
|
|
1222
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
1223
|
-
"applicability_refs": { "type": "array", "maxItems": 0 }
|
|
1224
|
-
}
|
|
1225
|
-
}
|
|
1226
|
-
]
|
|
1227
|
-
},
|
|
1228
|
-
"controlRelationClosure": {
|
|
1229
|
-
"oneOf": [
|
|
1230
|
-
{
|
|
1231
|
-
"type": "object",
|
|
1232
|
-
"additionalProperties": false,
|
|
1233
|
-
"required": ["state", "statement", "applicability_refs"],
|
|
1234
|
-
"properties": {
|
|
1235
|
-
"state": { "const": "specified" },
|
|
1236
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
1237
|
-
"applicability_refs": {
|
|
1238
|
-
"type": "array",
|
|
1239
|
-
"minItems": 1,
|
|
1240
|
-
"uniqueItems": true,
|
|
1241
|
-
"items": { "$ref": "#/$defs/key" }
|
|
1242
|
-
}
|
|
1243
|
-
}
|
|
1244
|
-
},
|
|
1245
|
-
{
|
|
1246
|
-
"type": "object",
|
|
1247
|
-
"additionalProperties": false,
|
|
1248
|
-
"required": ["state", "statement", "applicability_refs"],
|
|
1249
|
-
"properties": {
|
|
1250
|
-
"state": { "const": "not_applicable" },
|
|
1251
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
1252
|
-
"applicability_refs": {
|
|
1253
|
-
"type": "array",
|
|
1254
|
-
"minItems": 1,
|
|
1255
|
-
"uniqueItems": true,
|
|
1256
|
-
"items": { "$ref": "#/$defs/key" }
|
|
1257
|
-
}
|
|
1258
|
-
}
|
|
1259
|
-
},
|
|
1260
|
-
{
|
|
1261
|
-
"type": "object",
|
|
1262
|
-
"additionalProperties": false,
|
|
1263
|
-
"required": ["state", "statement"],
|
|
1264
|
-
"properties": {
|
|
1265
|
-
"state": { "const": "unresolved" },
|
|
1266
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
1267
|
-
"applicability_refs": { "type": "array", "maxItems": 0 }
|
|
1268
|
-
}
|
|
1269
|
-
}
|
|
1270
|
-
]
|
|
1271
|
-
},
|
|
1272
|
-
"controlRelation": {
|
|
1273
|
-
"type": "object",
|
|
1274
|
-
"additionalProperties": false,
|
|
1275
|
-
"required": [
|
|
1276
|
-
"key",
|
|
1277
|
-
"statement",
|
|
1278
|
-
"control_refs",
|
|
1279
|
-
"required_proof_surfaces",
|
|
1280
|
-
"applicability_refs"
|
|
1281
|
-
],
|
|
1282
|
-
"properties": {
|
|
1283
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1284
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
1285
|
-
"control_refs": {
|
|
1286
|
-
"type": "array",
|
|
1287
|
-
"minItems": 2,
|
|
1288
|
-
"uniqueItems": true,
|
|
1289
|
-
"items": { "$ref": "#/$defs/key" }
|
|
1290
|
-
},
|
|
1291
|
-
"required_proof_surfaces": {
|
|
1292
|
-
"type": "array",
|
|
1293
|
-
"minItems": 1,
|
|
1294
|
-
"uniqueItems": true,
|
|
1295
|
-
"items": { "$ref": "#/$defs/proofSurface" }
|
|
1296
|
-
},
|
|
1297
|
-
"applicability_refs": {
|
|
1298
|
-
"type": "array",
|
|
1299
|
-
"minItems": 1,
|
|
1300
|
-
"uniqueItems": true,
|
|
1301
|
-
"items": { "$ref": "#/$defs/key" }
|
|
1302
|
-
}
|
|
1303
|
-
}
|
|
1304
|
-
},
|
|
1305
|
-
"surfaceBinding": {
|
|
1306
|
-
"type": "object",
|
|
1307
|
-
"additionalProperties": false,
|
|
1308
|
-
"required": [
|
|
1309
|
-
"key",
|
|
1310
|
-
"surface_ref",
|
|
1311
|
-
"target_ref",
|
|
1312
|
-
"control_refs",
|
|
1313
|
-
"route_binding_ref",
|
|
1314
|
-
"component_binding_refs",
|
|
1315
|
-
"root_journey_check_ref",
|
|
1316
|
-
"entry_action_ref",
|
|
1317
|
-
"design_targets",
|
|
1318
|
-
"acceptance_blockers"
|
|
1319
|
-
],
|
|
1320
|
-
"properties": {
|
|
1321
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1322
|
-
"surface_ref": { "$ref": "#/$defs/nonEmpty" },
|
|
1323
|
-
"target_ref": { "$ref": "#/$defs/key" },
|
|
1324
|
-
"control_refs": { "$ref": "#/$defs/keys" },
|
|
1325
|
-
"route_binding_ref": { "$ref": "#/$defs/key" },
|
|
1326
|
-
"component_binding_refs": { "$ref": "#/$defs/keys" },
|
|
1327
|
-
"root_journey_check_ref": { "$ref": "#/$defs/key" },
|
|
1328
|
-
"entry_action_ref": { "$ref": "#/$defs/key" },
|
|
1329
|
-
"design_targets": {
|
|
1330
|
-
"type": "array",
|
|
1331
|
-
"items": { "$ref": "#/$defs/designTarget" }
|
|
1332
|
-
},
|
|
1333
|
-
"acceptance_blockers": {
|
|
1334
|
-
"type": "array",
|
|
1335
|
-
"items": { "$ref": "#/$defs/designAcceptanceBlocker" }
|
|
1336
|
-
}
|
|
1337
|
-
}
|
|
1338
|
-
},
|
|
1339
|
-
"designTarget": {
|
|
1340
|
-
"type": "object",
|
|
1341
|
-
"additionalProperties": false,
|
|
1342
|
-
"required": [
|
|
1343
|
-
"key",
|
|
1344
|
-
"interpretation",
|
|
1345
|
-
"source_paths",
|
|
1346
|
-
"condition_keys",
|
|
1347
|
-
"claim_refs",
|
|
1348
|
-
"conformance_check_ref",
|
|
1349
|
-
"conformance_assertion_ref",
|
|
1350
|
-
"verification_method_bindings",
|
|
1351
|
-
"actual_artifact_path",
|
|
1352
|
-
"comparison_artifact_path"
|
|
1353
|
-
],
|
|
1354
|
-
"oneOf": [
|
|
1355
|
-
{
|
|
1356
|
-
"not": {
|
|
1357
|
-
"anyOf": [
|
|
1358
|
-
{ "required": ["fact_model"] },
|
|
1359
|
-
{ "required": ["symbolic_method_bindings"] },
|
|
1360
|
-
{ "required": ["symbolic_certificate_binding"] }
|
|
1361
|
-
]
|
|
1362
|
-
},
|
|
1363
|
-
"properties": {
|
|
1364
|
-
"verification_method_bindings": { "minItems": 1 }
|
|
1365
|
-
}
|
|
1366
|
-
},
|
|
1367
|
-
{
|
|
1368
|
-
"required": [
|
|
1369
|
-
"fact_model",
|
|
1370
|
-
"symbolic_method_bindings",
|
|
1371
|
-
"symbolic_certificate_binding"
|
|
1372
|
-
],
|
|
1373
|
-
"properties": {
|
|
1374
|
-
"fact_model": { "const": "symbolic_rules_v2" },
|
|
1375
|
-
"verification_method_bindings": { "maxItems": 0 },
|
|
1376
|
-
"symbolic_method_bindings": { "minItems": 1 }
|
|
1377
|
-
}
|
|
1378
|
-
}
|
|
1379
|
-
],
|
|
1380
|
-
"properties": {
|
|
1381
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1382
|
-
"fact_model": { "const": "symbolic_rules_v2" },
|
|
1383
|
-
"interpretation": { "enum": ["exact_target", "constraint"] },
|
|
1384
|
-
"source_paths": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
1385
|
-
"condition_keys": { "$ref": "#/$defs/keys" },
|
|
1386
|
-
"claim_refs": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
1387
|
-
"conformance_check_ref": { "$ref": "#/$defs/key" },
|
|
1388
|
-
"conformance_assertion_ref": { "$ref": "#/$defs/key" },
|
|
1389
|
-
"verification_method_bindings": {
|
|
1390
|
-
"type": "array",
|
|
1391
|
-
"uniqueItems": true,
|
|
1392
|
-
"items": {
|
|
1393
|
-
"type": "object",
|
|
1394
|
-
"additionalProperties": false,
|
|
1395
|
-
"required": ["method", "assertion_ref", "evidence_artifacts"],
|
|
1396
|
-
"properties": {
|
|
1397
|
-
"method": { "$ref": "#/$defs/designVerificationMethod" },
|
|
1398
|
-
"assertion_ref": { "$ref": "#/$defs/key" },
|
|
1399
|
-
"evidence_artifacts": {
|
|
1400
|
-
"type": "array",
|
|
1401
|
-
"minItems": 1,
|
|
1402
|
-
"items": {
|
|
1403
|
-
"type": "object",
|
|
1404
|
-
"additionalProperties": false,
|
|
1405
|
-
"required": [
|
|
1406
|
-
"condition_key",
|
|
1407
|
-
"path",
|
|
1408
|
-
"observation_path",
|
|
1409
|
-
"fact_refs",
|
|
1410
|
-
"fact_expectations"
|
|
1411
|
-
],
|
|
1412
|
-
"properties": {
|
|
1413
|
-
"condition_key": { "$ref": "#/$defs/key" },
|
|
1414
|
-
"path": { "$ref": "#/$defs/nonEmpty" },
|
|
1415
|
-
"observation_path": { "$ref": "#/$defs/nonEmpty" },
|
|
1416
|
-
"fact_refs": { "$ref": "#/$defs/designFactRefs" },
|
|
1417
|
-
"fact_expectations": {
|
|
1418
|
-
"type": "array",
|
|
1419
|
-
"minItems": 1,
|
|
1420
|
-
"items": { "$ref": "#/$defs/designFactExpectation" }
|
|
1421
|
-
}
|
|
1422
|
-
}
|
|
1423
|
-
}
|
|
1424
|
-
}
|
|
1425
|
-
}
|
|
1426
|
-
}
|
|
1427
|
-
},
|
|
1428
|
-
"symbolic_method_bindings": {
|
|
1429
|
-
"type": "array",
|
|
1430
|
-
"uniqueItems": true,
|
|
1431
|
-
"items": { "$ref": "#/$defs/designSymbolicVerificationBinding" }
|
|
1432
|
-
},
|
|
1433
|
-
"symbolic_certificate_binding": {
|
|
1434
|
-
"$ref": "#/$defs/designSymbolicCertificateBinding"
|
|
1435
|
-
},
|
|
1436
|
-
"actual_artifact_path": { "$ref": "#/$defs/nonEmpty" },
|
|
1437
|
-
"comparison_artifact_path": { "$ref": "#/$defs/nonEmpty" }
|
|
1438
|
-
}
|
|
1439
|
-
},
|
|
1440
|
-
"designTypedLocator": {
|
|
1441
|
-
"type": "object",
|
|
1442
|
-
"additionalProperties": false,
|
|
1443
|
-
"required": ["resource_ref", "kind", "value"],
|
|
1444
|
-
"properties": {
|
|
1445
|
-
"resource_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1446
|
-
"kind": {
|
|
1447
|
-
"enum": [
|
|
1448
|
-
"html_selector",
|
|
1449
|
-
"html_inner_html",
|
|
1450
|
-
"markdown_anchor",
|
|
1451
|
-
"json_pointer",
|
|
1452
|
-
"css_selector",
|
|
1453
|
-
"css_custom_property",
|
|
1454
|
-
"html_attribute",
|
|
1455
|
-
"css_declaration",
|
|
1456
|
-
"javascript_export",
|
|
1457
|
-
"svg_selector",
|
|
1458
|
-
"svg_inner_xml",
|
|
1459
|
-
"svg_attribute",
|
|
1460
|
-
"whole_resource"
|
|
1461
|
-
]
|
|
1462
|
-
},
|
|
1463
|
-
"value": { "$ref": "#/$defs/nonEmpty" }
|
|
1464
|
-
}
|
|
1465
|
-
},
|
|
1466
|
-
"designLocatedDigest": {
|
|
1467
|
-
"type": "object",
|
|
1468
|
-
"additionalProperties": false,
|
|
1469
|
-
"required": ["locator", "sha256"],
|
|
1470
|
-
"properties": {
|
|
1471
|
-
"locator": { "$ref": "#/$defs/designTypedLocator" },
|
|
1472
|
-
"sha256": { "$ref": "#/$defs/sha256" }
|
|
1473
|
-
}
|
|
1474
|
-
},
|
|
1475
|
-
"designFactExpectation": {
|
|
1476
|
-
"type": "object",
|
|
1477
|
-
"additionalProperties": false,
|
|
1478
|
-
"required": [
|
|
1479
|
-
"fact_ref",
|
|
1480
|
-
"subject_ref",
|
|
1481
|
-
"variation_ref",
|
|
1482
|
-
"property_ref",
|
|
1483
|
-
"observation_sensitivity",
|
|
1484
|
-
"expected",
|
|
1485
|
-
"comparison",
|
|
1486
|
-
"oracle",
|
|
1487
|
-
"environment"
|
|
1488
|
-
],
|
|
1489
|
-
"properties": {
|
|
1490
|
-
"fact_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1491
|
-
"subject_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1492
|
-
"variation_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1493
|
-
"property_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1494
|
-
"observation_sensitivity": { "enum": ["plain", "protected"] },
|
|
1495
|
-
"expected": { "$ref": "#/$defs/designLocatedDigest" },
|
|
1496
|
-
"comparison": {
|
|
1497
|
-
"type": "object",
|
|
1498
|
-
"additionalProperties": false,
|
|
1499
|
-
"required": ["comparator", "mode", "parameters", "tolerance", "mask"],
|
|
1500
|
-
"properties": {
|
|
1501
|
-
"comparator": {
|
|
1502
|
-
"type": "string",
|
|
1503
|
-
"pattern": "^(?:exact_value|numeric_delta|geometry_delta|pixel_diff|token_resolution|content_equal|state_equal|trace_equal|timeline_equal|reflow_equal|semantic_equal|asset_equal|custom\\.[a-z0-9][a-z0-9._-]*)$"
|
|
1504
|
-
},
|
|
1505
|
-
"mode": { "enum": ["exact", "tolerance"] },
|
|
1506
|
-
"parameters": { "$ref": "#/$defs/designLocatedDigest" },
|
|
1507
|
-
"tolerance": {
|
|
1508
|
-
"oneOf": [
|
|
1509
|
-
{ "type": "null" },
|
|
1510
|
-
{ "$ref": "#/$defs/designLocatedDigest" }
|
|
1511
|
-
]
|
|
1512
|
-
},
|
|
1513
|
-
"mask": {
|
|
1514
|
-
"oneOf": [
|
|
1515
|
-
{ "type": "null" },
|
|
1516
|
-
{ "$ref": "#/$defs/designLocatedDigest" }
|
|
1517
|
-
]
|
|
1518
|
-
}
|
|
1519
|
-
}
|
|
1520
|
-
},
|
|
1521
|
-
"oracle": {
|
|
1522
|
-
"type": "object",
|
|
1523
|
-
"additionalProperties": false,
|
|
1524
|
-
"required": ["key", "trust", "identity", "version", "sha256"],
|
|
1525
|
-
"properties": {
|
|
1526
|
-
"key": { "$ref": "#/$defs/designFactKey" },
|
|
1527
|
-
"trust": { "enum": ["frozen_executable", "named_external_tcb"] },
|
|
1528
|
-
"identity": { "$ref": "#/$defs/nonEmpty" },
|
|
1529
|
-
"version": { "$ref": "#/$defs/nonEmpty" },
|
|
1530
|
-
"sha256": {
|
|
1531
|
-
"oneOf": [{ "type": "null" }, { "$ref": "#/$defs/sha256" }]
|
|
1532
|
-
}
|
|
1533
|
-
}
|
|
1534
|
-
},
|
|
1535
|
-
"environment": {
|
|
1536
|
-
"type": "object",
|
|
1537
|
-
"additionalProperties": false,
|
|
1538
|
-
"required": ["key", "identity", "definition"],
|
|
1539
|
-
"properties": {
|
|
1540
|
-
"key": { "$ref": "#/$defs/designFactKey" },
|
|
1541
|
-
"identity": { "$ref": "#/$defs/nonEmpty" },
|
|
1542
|
-
"definition": { "$ref": "#/$defs/designLocatedDigest" }
|
|
1543
|
-
}
|
|
1544
|
-
}
|
|
1545
|
-
}
|
|
1546
|
-
},
|
|
1547
|
-
"designQuantifier": {
|
|
1548
|
-
"type": "object",
|
|
1549
|
-
"additionalProperties": false,
|
|
1550
|
-
"required": ["kind", "minimum", "maximum"],
|
|
1551
|
-
"properties": {
|
|
1552
|
-
"kind": {
|
|
1553
|
-
"enum": [
|
|
1554
|
-
"one",
|
|
1555
|
-
"all",
|
|
1556
|
-
"any",
|
|
1557
|
-
"none",
|
|
1558
|
-
"exactly",
|
|
1559
|
-
"at_least",
|
|
1560
|
-
"at_most",
|
|
1561
|
-
"range"
|
|
1562
|
-
]
|
|
1563
|
-
},
|
|
1564
|
-
"minimum": {
|
|
1565
|
-
"oneOf": [{ "type": "null" }, { "type": "integer", "minimum": 0 }]
|
|
1566
|
-
},
|
|
1567
|
-
"maximum": {
|
|
1568
|
-
"oneOf": [{ "type": "null" }, { "type": "integer", "minimum": 0 }]
|
|
1569
|
-
}
|
|
1570
|
-
}
|
|
1571
|
-
},
|
|
1572
|
-
"designSymbolicRuleExpectation": {
|
|
1573
|
-
"type": "object",
|
|
1574
|
-
"additionalProperties": false,
|
|
1575
|
-
"required": [
|
|
1576
|
-
"obligation_ref",
|
|
1577
|
-
"fact_rule_ref",
|
|
1578
|
-
"region_sha256",
|
|
1579
|
-
"subject_or_relation_ref",
|
|
1580
|
-
"property_ref",
|
|
1581
|
-
"population_ref",
|
|
1582
|
-
"quantifier",
|
|
1583
|
-
"observation_sensitivity",
|
|
1584
|
-
"expected",
|
|
1585
|
-
"proof_surface",
|
|
1586
|
-
"observation_boundary",
|
|
1587
|
-
"comparison",
|
|
1588
|
-
"oracle",
|
|
1589
|
-
"environment",
|
|
1590
|
-
"protected_value_policy",
|
|
1591
|
-
"completion_effect"
|
|
1592
|
-
],
|
|
1593
|
-
"properties": {
|
|
1594
|
-
"obligation_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1595
|
-
"fact_rule_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1596
|
-
"region_sha256": { "$ref": "#/$defs/sha256" },
|
|
1597
|
-
"subject_or_relation_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1598
|
-
"property_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1599
|
-
"population_ref": {
|
|
1600
|
-
"oneOf": [{ "type": "null" }, { "$ref": "#/$defs/designFactKey" }]
|
|
1601
|
-
},
|
|
1602
|
-
"quantifier": { "$ref": "#/$defs/designQuantifier" },
|
|
1603
|
-
"observation_sensitivity": { "enum": ["plain", "protected"] },
|
|
1604
|
-
"expected": { "$ref": "#/$defs/designLocatedDigest" },
|
|
1605
|
-
"proof_surface": { "$ref": "#/$defs/nonEmpty" },
|
|
1606
|
-
"observation_boundary": { "$ref": "#/$defs/nonEmpty" },
|
|
1607
|
-
"comparison": {
|
|
1608
|
-
"$ref": "#/$defs/designFactExpectation/properties/comparison"
|
|
1609
|
-
},
|
|
1610
|
-
"oracle": {
|
|
1611
|
-
"$ref": "#/$defs/designFactExpectation/properties/oracle"
|
|
1612
|
-
},
|
|
1613
|
-
"environment": {
|
|
1614
|
-
"$ref": "#/$defs/designFactExpectation/properties/environment"
|
|
1615
|
-
},
|
|
1616
|
-
"protected_value_policy": { "$ref": "#/$defs/nonEmpty" },
|
|
1617
|
-
"completion_effect": { "$ref": "#/$defs/nonEmpty" }
|
|
1618
|
-
}
|
|
1619
|
-
},
|
|
1620
|
-
"designSymbolicVerificationBinding": {
|
|
1621
|
-
"type": "object",
|
|
1622
|
-
"additionalProperties": false,
|
|
1623
|
-
"required": [
|
|
1624
|
-
"method",
|
|
1625
|
-
"assertion_ref",
|
|
1626
|
-
"artifact_path",
|
|
1627
|
-
"observation_path",
|
|
1628
|
-
"rule_expectations"
|
|
1629
|
-
],
|
|
1630
|
-
"properties": {
|
|
1631
|
-
"method": { "$ref": "#/$defs/designVerificationMethod" },
|
|
1632
|
-
"assertion_ref": { "$ref": "#/$defs/key" },
|
|
1633
|
-
"artifact_path": { "$ref": "#/$defs/nonEmpty" },
|
|
1634
|
-
"observation_path": { "$ref": "#/$defs/nonEmpty" },
|
|
1635
|
-
"rule_expectations": {
|
|
1636
|
-
"type": "array",
|
|
1637
|
-
"minItems": 1,
|
|
1638
|
-
"items": { "$ref": "#/$defs/designSymbolicRuleExpectation" }
|
|
1639
|
-
}
|
|
1640
|
-
}
|
|
1641
|
-
},
|
|
1642
|
-
"designSymbolicCertificateExpectation": {
|
|
1643
|
-
"type": "object",
|
|
1644
|
-
"additionalProperties": false,
|
|
1645
|
-
"required": [
|
|
1646
|
-
"certificate_ref",
|
|
1647
|
-
"fact_rule_refs",
|
|
1648
|
-
"omitted_axis_refs",
|
|
1649
|
-
"dependency_edge_refs",
|
|
1650
|
-
"canonical_rule_dag_sha256"
|
|
1651
|
-
],
|
|
1652
|
-
"properties": {
|
|
1653
|
-
"certificate_ref": { "$ref": "#/$defs/designFactKey" },
|
|
1654
|
-
"fact_rule_refs": { "$ref": "#/$defs/designFactRefs" },
|
|
1655
|
-
"omitted_axis_refs": { "$ref": "#/$defs/designFactRefs" },
|
|
1656
|
-
"dependency_edge_refs": { "$ref": "#/$defs/designFactRefs" },
|
|
1657
|
-
"canonical_rule_dag_sha256": { "$ref": "#/$defs/sha256" },
|
|
1658
|
-
"source_noninterference_proof_sha256": { "$ref": "#/$defs/sha256" },
|
|
1659
|
-
"production_noninterference_proof_sha256": { "$ref": "#/$defs/sha256" }
|
|
1660
|
-
}
|
|
1661
|
-
},
|
|
1662
|
-
"designSymbolicCertificateBinding": {
|
|
1663
|
-
"type": "object",
|
|
1664
|
-
"additionalProperties": false,
|
|
1665
|
-
"required": ["assertion_ref", "artifact_path", "expectations", "metrics"],
|
|
1666
|
-
"properties": {
|
|
1667
|
-
"assertion_ref": { "$ref": "#/$defs/key" },
|
|
1668
|
-
"artifact_path": { "$ref": "#/$defs/nonEmpty" },
|
|
1669
|
-
"expectations": {
|
|
1670
|
-
"type": "array",
|
|
1671
|
-
"minItems": 1,
|
|
1672
|
-
"items": {
|
|
1673
|
-
"$ref": "#/$defs/designSymbolicCertificateExpectation"
|
|
1674
|
-
}
|
|
1675
|
-
},
|
|
1676
|
-
"metrics": {
|
|
1677
|
-
"type": "object",
|
|
1678
|
-
"additionalProperties": false,
|
|
1679
|
-
"required": [
|
|
1680
|
-
"semantic_obligations",
|
|
1681
|
-
"certificate_obligations",
|
|
1682
|
-
"certificate_covered_omitted_axes",
|
|
1683
|
-
"certificate_covered_dependency_edges",
|
|
1684
|
-
"canonical_dag_nodes",
|
|
1685
|
-
"canonical_partition_edges",
|
|
1686
|
-
"canonical_bytes",
|
|
1687
|
-
"theoretical_ground_cardinality"
|
|
1688
|
-
],
|
|
1689
|
-
"properties": {
|
|
1690
|
-
"semantic_obligations": { "type": "integer", "minimum": 0 },
|
|
1691
|
-
"certificate_obligations": { "type": "integer", "minimum": 0 },
|
|
1692
|
-
"certificate_covered_omitted_axes": {
|
|
1693
|
-
"type": "integer",
|
|
1694
|
-
"minimum": 0
|
|
1695
|
-
},
|
|
1696
|
-
"certificate_covered_dependency_edges": {
|
|
1697
|
-
"type": "integer",
|
|
1698
|
-
"minimum": 0
|
|
1699
|
-
},
|
|
1700
|
-
"canonical_dag_nodes": { "type": "integer", "minimum": 0 },
|
|
1701
|
-
"canonical_partition_edges": {
|
|
1702
|
-
"type": "integer",
|
|
1703
|
-
"minimum": 0
|
|
1704
|
-
},
|
|
1705
|
-
"canonical_bytes": { "type": "integer", "minimum": 0 },
|
|
1706
|
-
"theoretical_ground_cardinality": {
|
|
1707
|
-
"type": "string",
|
|
1708
|
-
"pattern": "^[1-9][0-9]*$"
|
|
1709
|
-
}
|
|
1710
|
-
}
|
|
1711
|
-
}
|
|
1712
|
-
}
|
|
1713
|
-
},
|
|
1714
|
-
"designAcceptanceBlocker": {
|
|
1715
|
-
"type": "object",
|
|
1716
|
-
"additionalProperties": false,
|
|
1717
|
-
"required": [
|
|
1718
|
-
"key",
|
|
1719
|
-
"status",
|
|
1720
|
-
"refs",
|
|
1721
|
-
"source_item_refs",
|
|
1722
|
-
"verification_methods",
|
|
1723
|
-
"required_capabilities",
|
|
1724
|
-
"rationale"
|
|
1725
|
-
],
|
|
1726
|
-
"properties": {
|
|
1727
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1728
|
-
"status": { "enum": ["machine_claim", "external_confirmation"] },
|
|
1729
|
-
"refs": {
|
|
1730
|
-
"type": "array",
|
|
1731
|
-
"uniqueItems": true,
|
|
1732
|
-
"items": { "$ref": "#/$defs/nonEmpty" }
|
|
1733
|
-
},
|
|
1734
|
-
"source_item_refs": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
1735
|
-
"verification_methods": {
|
|
1736
|
-
"type": "array",
|
|
1737
|
-
"minItems": 1,
|
|
1738
|
-
"uniqueItems": true,
|
|
1739
|
-
"items": { "$ref": "#/$defs/designVerificationMethod" }
|
|
1740
|
-
},
|
|
1741
|
-
"required_capabilities": {
|
|
1742
|
-
"type": "array",
|
|
1743
|
-
"minItems": 1,
|
|
1744
|
-
"uniqueItems": true,
|
|
1745
|
-
"items": { "$ref": "#/$defs/executionTargetCapability" }
|
|
1746
|
-
},
|
|
1747
|
-
"rationale": { "$ref": "#/$defs/nonEmpty" }
|
|
1748
|
-
}
|
|
1749
|
-
},
|
|
1750
|
-
"designVerificationMethod": {
|
|
1751
|
-
"enum": [
|
|
1752
|
-
"layout_geometry",
|
|
1753
|
-
"visual_pixel",
|
|
1754
|
-
"design_token",
|
|
1755
|
-
"content",
|
|
1756
|
-
"component_state",
|
|
1757
|
-
"interaction_trace",
|
|
1758
|
-
"motion_timeline",
|
|
1759
|
-
"responsive_reflow",
|
|
1760
|
-
"input_method",
|
|
1761
|
-
"accessibility_semantics",
|
|
1762
|
-
"accessibility_navigation",
|
|
1763
|
-
"accessibility_visual",
|
|
1764
|
-
"gesture_trace",
|
|
1765
|
-
"scroll_navigation",
|
|
1766
|
-
"localization",
|
|
1767
|
-
"system_ui",
|
|
1768
|
-
"haptic_feedback",
|
|
1769
|
-
"sound_feedback",
|
|
1770
|
-
"asset_integrity"
|
|
1771
|
-
]
|
|
1772
|
-
},
|
|
1773
|
-
"technical": {
|
|
1774
|
-
"type": "object",
|
|
1775
|
-
"additionalProperties": false,
|
|
1776
|
-
"required": ["expected_change_paths"],
|
|
1777
|
-
"properties": {
|
|
1778
|
-
"obligations": {
|
|
1779
|
-
"type": "array",
|
|
1780
|
-
"items": { "$ref": "#/$defs/obligation" },
|
|
1781
|
-
"default": []
|
|
1782
|
-
},
|
|
1783
|
-
"expected_change_paths": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
1784
|
-
"allowed_support_paths": {
|
|
1785
|
-
"$ref": "#/$defs/nonEmptyStrings",
|
|
1786
|
-
"default": []
|
|
1787
|
-
},
|
|
1788
|
-
"forbidden_paths": { "$ref": "#/$defs/nonEmptyStrings", "default": [] },
|
|
1789
|
-
"forbidden_shortcuts": {
|
|
1790
|
-
"type": "array",
|
|
1791
|
-
"items": { "$ref": "#/$defs/applicableStatement" },
|
|
1792
|
-
"default": []
|
|
1793
|
-
},
|
|
1794
|
-
"bindings": {
|
|
1795
|
-
"type": "array",
|
|
1796
|
-
"items": { "$ref": "#/$defs/binding" },
|
|
1797
|
-
"default": []
|
|
1798
|
-
},
|
|
1799
|
-
"rollback_and_recovery": {
|
|
1800
|
-
"oneOf": [{ "type": "null" }, { "$ref": "#/$defs/rollback" }],
|
|
1801
|
-
"default": null
|
|
1802
|
-
}
|
|
1803
|
-
}
|
|
1804
|
-
},
|
|
1805
|
-
"obligation": {
|
|
1806
|
-
"type": "object",
|
|
1807
|
-
"additionalProperties": false,
|
|
1808
|
-
"required": [
|
|
1809
|
-
"key",
|
|
1810
|
-
"statement",
|
|
1811
|
-
"required_proof_surfaces",
|
|
1812
|
-
"applicability_refs"
|
|
1813
|
-
],
|
|
1814
|
-
"properties": {
|
|
1815
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1816
|
-
"statement": { "$ref": "#/$defs/nonEmpty" },
|
|
1817
|
-
"required_proof_surfaces": {
|
|
1818
|
-
"type": "array",
|
|
1819
|
-
"minItems": 1,
|
|
1820
|
-
"uniqueItems": true,
|
|
1821
|
-
"items": { "$ref": "#/$defs/proofSurface" }
|
|
1822
|
-
},
|
|
1823
|
-
"applicability_refs": {
|
|
1824
|
-
"type": "array",
|
|
1825
|
-
"minItems": 1,
|
|
1826
|
-
"uniqueItems": true,
|
|
1827
|
-
"items": { "$ref": "#/$defs/key" }
|
|
1828
|
-
}
|
|
1829
|
-
}
|
|
1830
|
-
},
|
|
1831
|
-
"proofSurface": {
|
|
1832
|
-
"enum": [
|
|
1833
|
-
"ui_browser",
|
|
1834
|
-
"runtime_behavior",
|
|
1835
|
-
"api_contract",
|
|
1836
|
-
"data_state",
|
|
1837
|
-
"security_boundary",
|
|
1838
|
-
"population_coverage",
|
|
1839
|
-
"implementation_structure"
|
|
1840
|
-
]
|
|
1841
|
-
},
|
|
1842
|
-
"binding": {
|
|
1843
|
-
"type": "object",
|
|
1844
|
-
"additionalProperties": false,
|
|
1845
|
-
"required": ["key", "kind", "target", "carrier_paths"],
|
|
1846
|
-
"properties": {
|
|
1847
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1848
|
-
"kind": { "enum": ["file", "path_glob", "verified"] },
|
|
1849
|
-
"target": { "$ref": "#/$defs/nonEmpty" },
|
|
1850
|
-
"carrier_paths": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
1851
|
-
"existence": { "enum": ["existing", "planned"] },
|
|
1852
|
-
"verification_check_key": { "$ref": "#/$defs/key" }
|
|
1853
|
-
}
|
|
1854
|
-
},
|
|
1855
|
-
"rollback": {
|
|
1856
|
-
"type": "object",
|
|
1857
|
-
"additionalProperties": false,
|
|
1858
|
-
"required": ["rollback", "recovery", "verification_check_keys"],
|
|
1859
|
-
"properties": {
|
|
1860
|
-
"rollback": { "$ref": "#/$defs/nonEmpty" },
|
|
1861
|
-
"recovery": { "$ref": "#/$defs/nonEmpty" },
|
|
1862
|
-
"verification_check_keys": { "$ref": "#/$defs/keys" }
|
|
1863
|
-
}
|
|
1864
|
-
},
|
|
1865
|
-
"acceptance": {
|
|
1866
|
-
"type": "object",
|
|
1867
|
-
"additionalProperties": false,
|
|
1868
|
-
"required": ["checks"],
|
|
1869
|
-
"properties": {
|
|
1870
|
-
"checks": { "type": "array", "items": { "$ref": "#/$defs/check" } },
|
|
1871
|
-
"population": {
|
|
1872
|
-
"oneOf": [{ "type": "null" }, { "$ref": "#/$defs/population" }],
|
|
1873
|
-
"default": null
|
|
1874
|
-
},
|
|
1875
|
-
"counterfactual_controls": {
|
|
1876
|
-
"type": "array",
|
|
1877
|
-
"items": { "$ref": "#/$defs/counterfactual" },
|
|
1878
|
-
"default": []
|
|
1879
|
-
}
|
|
1880
|
-
}
|
|
1881
|
-
},
|
|
1882
|
-
"check": {
|
|
1883
|
-
"type": "object",
|
|
1884
|
-
"additionalProperties": false,
|
|
1885
|
-
"required": [
|
|
1886
|
-
"key",
|
|
1887
|
-
"journey_roles",
|
|
1888
|
-
"execution_target",
|
|
1889
|
-
"scenario",
|
|
1890
|
-
"proof_surface",
|
|
1891
|
-
"runner",
|
|
1892
|
-
"verification_inputs"
|
|
1893
|
-
],
|
|
1894
|
-
"properties": {
|
|
1895
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1896
|
-
"journey_roles": {
|
|
1897
|
-
"type": "array",
|
|
1898
|
-
"minItems": 1,
|
|
1899
|
-
"uniqueItems": true,
|
|
1900
|
-
"items": {
|
|
1901
|
-
"enum": [
|
|
1902
|
-
"success",
|
|
1903
|
-
"degradation",
|
|
1904
|
-
"recovery",
|
|
1905
|
-
"stage_gate",
|
|
1906
|
-
"conformance"
|
|
1907
|
-
]
|
|
1908
|
-
}
|
|
1909
|
-
},
|
|
1910
|
-
"execution_target": {
|
|
1911
|
-
"type": "object",
|
|
1912
|
-
"additionalProperties": false,
|
|
1913
|
-
"required": ["target_ref", "entrypoint"],
|
|
1914
|
-
"properties": {
|
|
1915
|
-
"target_ref": { "$ref": "#/$defs/key" },
|
|
1916
|
-
"entrypoint": { "enum": ["root", "internal"] }
|
|
1917
|
-
}
|
|
1918
|
-
},
|
|
1919
|
-
"scenario": { "$ref": "#/$defs/scenario" },
|
|
1920
|
-
"proof_surface": { "$ref": "#/$defs/proofSurface" },
|
|
1921
|
-
"runner": { "$ref": "#/$defs/runner" },
|
|
1922
|
-
"verification_inputs": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
1923
|
-
"input_paths": { "$ref": "#/$defs/nonEmptyStrings", "default": [] },
|
|
1924
|
-
"expected_output_paths": {
|
|
1925
|
-
"$ref": "#/$defs/nonEmptyStrings",
|
|
1926
|
-
"default": []
|
|
1927
|
-
},
|
|
1928
|
-
"artifact_globs": { "$ref": "#/$defs/nonEmptyStrings", "default": [] },
|
|
1929
|
-
"positive_assertions": {
|
|
1930
|
-
"type": "array",
|
|
1931
|
-
"items": { "$ref": "#/$defs/assertion" },
|
|
1932
|
-
"default": []
|
|
1933
|
-
},
|
|
1934
|
-
"negative_assertions": {
|
|
1935
|
-
"type": "array",
|
|
1936
|
-
"items": { "$ref": "#/$defs/assertion" },
|
|
1937
|
-
"default": []
|
|
1938
|
-
},
|
|
1939
|
-
"environment_requirements": {
|
|
1940
|
-
"type": "array",
|
|
1941
|
-
"items": { "$ref": "#/$defs/environment" },
|
|
1942
|
-
"default": []
|
|
1943
|
-
}
|
|
1944
|
-
}
|
|
1945
|
-
},
|
|
1946
|
-
"runner": {
|
|
1947
|
-
"type": "object",
|
|
1948
|
-
"additionalProperties": false,
|
|
1949
|
-
"required": ["type", "target", "effect"],
|
|
1950
|
-
"properties": {
|
|
1951
|
-
"type": {
|
|
1952
|
-
"enum": [
|
|
1953
|
-
"package_script",
|
|
1954
|
-
"project_binary",
|
|
1955
|
-
"node_oracle",
|
|
1956
|
-
"playwright_test"
|
|
1957
|
-
]
|
|
1958
|
-
},
|
|
1959
|
-
"target": { "$ref": "#/$defs/nonEmpty" },
|
|
1960
|
-
"argv": { "$ref": "#/$defs/nonEmptyStrings", "default": [] },
|
|
1961
|
-
"cwd": { "$ref": "#/$defs/nonEmpty", "default": "." },
|
|
1962
|
-
"timeout_ms": {
|
|
1963
|
-
"type": "integer",
|
|
1964
|
-
"minimum": 100,
|
|
1965
|
-
"maximum": 3600000,
|
|
1966
|
-
"default": 30000
|
|
1967
|
-
},
|
|
1968
|
-
"effect": { "enum": ["read_only", "test_sandbox"] },
|
|
1969
|
-
"retry_policy": {
|
|
1970
|
-
"enum": ["none", "transient_once"],
|
|
1971
|
-
"default": "none"
|
|
1972
|
-
},
|
|
1973
|
-
"idempotent": { "type": "boolean", "default": false }
|
|
1974
|
-
}
|
|
1975
|
-
},
|
|
1976
|
-
"assertion": {
|
|
1977
|
-
"type": "object",
|
|
1978
|
-
"additionalProperties": false,
|
|
1979
|
-
"required": [
|
|
1980
|
-
"key",
|
|
1981
|
-
"claims",
|
|
1982
|
-
"observation",
|
|
1983
|
-
"operator",
|
|
1984
|
-
"evidence_capabilities"
|
|
1985
|
-
],
|
|
1986
|
-
"properties": {
|
|
1987
|
-
"key": { "$ref": "#/$defs/key" },
|
|
1988
|
-
"criterion": { "$ref": "#/$defs/nonEmpty" },
|
|
1989
|
-
"claims": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
1990
|
-
"applicability_ref": { "$ref": "#/$defs/key" },
|
|
1991
|
-
"expected_authority_ref": { "$ref": "#/$defs/nonEmpty" },
|
|
1992
|
-
"observation": { "$ref": "#/$defs/nonEmpty" },
|
|
1993
|
-
"evidence_capabilities": {
|
|
1994
|
-
"type": "array",
|
|
1995
|
-
"minItems": 1,
|
|
1996
|
-
"uniqueItems": true,
|
|
1997
|
-
"items": { "$ref": "#/$defs/evidenceCapability" }
|
|
1998
|
-
},
|
|
1999
|
-
"operator": {
|
|
2000
|
-
"enum": [
|
|
2001
|
-
"equals",
|
|
2002
|
-
"not_equals",
|
|
2003
|
-
"contains",
|
|
2004
|
-
"not_contains",
|
|
2005
|
-
"matches",
|
|
2006
|
-
"not_matches",
|
|
2007
|
-
"greater_than",
|
|
2008
|
-
"greater_or_equal",
|
|
2009
|
-
"less_than",
|
|
2010
|
-
"less_or_equal",
|
|
2011
|
-
"truthy",
|
|
2012
|
-
"falsy",
|
|
2013
|
-
"exists",
|
|
2014
|
-
"set_equals",
|
|
2015
|
-
"subset_of",
|
|
2016
|
-
"superset_of"
|
|
2017
|
-
]
|
|
2018
|
-
},
|
|
2019
|
-
"expected": true
|
|
2020
|
-
},
|
|
2021
|
-
"allOf": [
|
|
2022
|
-
{
|
|
2023
|
-
"if": { "properties": { "claims": { "minItems": 1 } } },
|
|
2024
|
-
"then": { "required": ["applicability_ref"] },
|
|
2025
|
-
"else": { "not": { "required": ["applicability_ref"] } }
|
|
2026
|
-
},
|
|
2027
|
-
{
|
|
2028
|
-
"if": {
|
|
2029
|
-
"properties": {
|
|
2030
|
-
"operator": {
|
|
2031
|
-
"enum": [
|
|
2032
|
-
"equals",
|
|
2033
|
-
"not_equals",
|
|
2034
|
-
"contains",
|
|
2035
|
-
"not_contains",
|
|
2036
|
-
"matches",
|
|
2037
|
-
"not_matches",
|
|
2038
|
-
"greater_than",
|
|
2039
|
-
"greater_or_equal",
|
|
2040
|
-
"less_than",
|
|
2041
|
-
"less_or_equal",
|
|
2042
|
-
"set_equals",
|
|
2043
|
-
"subset_of",
|
|
2044
|
-
"superset_of"
|
|
2045
|
-
]
|
|
2046
|
-
}
|
|
2047
|
-
}
|
|
2048
|
-
},
|
|
2049
|
-
"then": { "required": ["expected"] }
|
|
2050
|
-
},
|
|
2051
|
-
{
|
|
2052
|
-
"if": {
|
|
2053
|
-
"properties": {
|
|
2054
|
-
"operator": { "enum": ["exists", "truthy", "falsy"] }
|
|
2055
|
-
}
|
|
2056
|
-
},
|
|
2057
|
-
"then": { "not": { "required": ["expected"] } }
|
|
2058
|
-
},
|
|
2059
|
-
{
|
|
2060
|
-
"if": {
|
|
2061
|
-
"properties": { "operator": { "enum": ["matches", "not_matches"] } }
|
|
2062
|
-
},
|
|
2063
|
-
"then": {
|
|
2064
|
-
"properties": {
|
|
2065
|
-
"expected": { "type": "string", "format": "regex" }
|
|
2066
|
-
}
|
|
2067
|
-
}
|
|
2068
|
-
},
|
|
2069
|
-
{
|
|
2070
|
-
"if": {
|
|
2071
|
-
"properties": {
|
|
2072
|
-
"operator": {
|
|
2073
|
-
"enum": [
|
|
2074
|
-
"greater_than",
|
|
2075
|
-
"greater_or_equal",
|
|
2076
|
-
"less_than",
|
|
2077
|
-
"less_or_equal"
|
|
2078
|
-
]
|
|
2079
|
-
}
|
|
2080
|
-
}
|
|
2081
|
-
},
|
|
2082
|
-
"then": { "properties": { "expected": { "type": "number" } } }
|
|
2083
|
-
},
|
|
2084
|
-
{
|
|
2085
|
-
"if": {
|
|
2086
|
-
"properties": {
|
|
2087
|
-
"operator": { "enum": ["set_equals", "subset_of", "superset_of"] }
|
|
2088
|
-
}
|
|
2089
|
-
},
|
|
2090
|
-
"then": { "properties": { "expected": { "type": "array" } } }
|
|
2091
|
-
}
|
|
2092
|
-
]
|
|
2093
|
-
},
|
|
2094
|
-
"scenario": {
|
|
2095
|
-
"type": "object",
|
|
2096
|
-
"additionalProperties": false,
|
|
2097
|
-
"required": ["given", "when"],
|
|
2098
|
-
"properties": {
|
|
2099
|
-
"given": {
|
|
2100
|
-
"type": "array",
|
|
2101
|
-
"minItems": 1,
|
|
2102
|
-
"items": { "$ref": "#/$defs/keyedStatement" }
|
|
2103
|
-
},
|
|
2104
|
-
"when": {
|
|
2105
|
-
"type": "array",
|
|
2106
|
-
"minItems": 1,
|
|
2107
|
-
"items": { "$ref": "#/$defs/keyedStatement" }
|
|
2108
|
-
}
|
|
2109
|
-
}
|
|
2110
|
-
},
|
|
2111
|
-
"evidenceCapability": {
|
|
2112
|
-
"enum": [
|
|
2113
|
-
"presence",
|
|
2114
|
-
"interaction_trace",
|
|
2115
|
-
"state_delta",
|
|
2116
|
-
"cross_surface_consistency",
|
|
2117
|
-
"durable_readback",
|
|
2118
|
-
"boundary_invocation",
|
|
2119
|
-
"actual_provenance",
|
|
2120
|
-
"external_side_effect",
|
|
2121
|
-
"distinct_identity",
|
|
2122
|
-
"data_state",
|
|
2123
|
-
"population_coverage",
|
|
2124
|
-
"failure_injection",
|
|
2125
|
-
"recovery",
|
|
2126
|
-
"visual_render",
|
|
2127
|
-
"design_conformance",
|
|
2128
|
-
"design_method",
|
|
2129
|
-
"design_symbolic_certificate",
|
|
2130
|
-
"semantic_fact",
|
|
2131
|
-
"target_runtime",
|
|
2132
|
-
"input_variation"
|
|
2133
|
-
]
|
|
2134
|
-
},
|
|
2135
|
-
"environment": {
|
|
2136
|
-
"oneOf": [
|
|
2137
|
-
{
|
|
2138
|
-
"type": "object",
|
|
2139
|
-
"additionalProperties": false,
|
|
2140
|
-
"required": ["key", "kind", "target"],
|
|
2141
|
-
"properties": {
|
|
2142
|
-
"key": { "$ref": "#/$defs/key" },
|
|
2143
|
-
"kind": { "enum": ["executable", "file", "directory", "env_var"] },
|
|
2144
|
-
"target": { "$ref": "#/$defs/nonEmpty" }
|
|
2145
|
-
}
|
|
2146
|
-
},
|
|
2147
|
-
{
|
|
2148
|
-
"type": "object",
|
|
2149
|
-
"additionalProperties": false,
|
|
2150
|
-
"required": ["key", "kind", "host", "port", "timeout_ms"],
|
|
2151
|
-
"properties": {
|
|
2152
|
-
"key": { "$ref": "#/$defs/key" },
|
|
2153
|
-
"kind": { "const": "loopback_tcp" },
|
|
2154
|
-
"host": { "enum": ["127.0.0.1", "::1", "localhost"] },
|
|
2155
|
-
"port": { "type": "integer", "minimum": 1, "maximum": 65535 },
|
|
2156
|
-
"timeout_ms": { "type": "integer", "minimum": 10, "maximum": 60000 }
|
|
2157
|
-
}
|
|
2158
|
-
}
|
|
2159
|
-
]
|
|
2160
|
-
},
|
|
2161
|
-
"population": {
|
|
2162
|
-
"type": "object",
|
|
2163
|
-
"additionalProperties": false,
|
|
2164
|
-
"required": [
|
|
2165
|
-
"check_key",
|
|
2166
|
-
"universe_binding_key",
|
|
2167
|
-
"claims",
|
|
2168
|
-
"observations",
|
|
2169
|
-
"exclusion_rules"
|
|
2170
|
-
],
|
|
2171
|
-
"properties": {
|
|
2172
|
-
"check_key": { "$ref": "#/$defs/key" },
|
|
2173
|
-
"universe_binding_key": { "$ref": "#/$defs/key" },
|
|
2174
|
-
"claims": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
2175
|
-
"observations": {
|
|
2176
|
-
"type": "object",
|
|
2177
|
-
"additionalProperties": false,
|
|
2178
|
-
"required": [
|
|
2179
|
-
"universe_ids",
|
|
2180
|
-
"eligible_ids",
|
|
2181
|
-
"observed_ids",
|
|
2182
|
-
"excluded_items"
|
|
2183
|
-
],
|
|
2184
|
-
"properties": {
|
|
2185
|
-
"universe_ids": { "$ref": "#/$defs/nonEmpty" },
|
|
2186
|
-
"eligible_ids": { "$ref": "#/$defs/nonEmpty" },
|
|
2187
|
-
"observed_ids": { "$ref": "#/$defs/nonEmpty" },
|
|
2188
|
-
"excluded_items": { "$ref": "#/$defs/nonEmpty" }
|
|
2189
|
-
}
|
|
2190
|
-
},
|
|
2191
|
-
"exclusion_rules": {
|
|
2192
|
-
"type": "array",
|
|
2193
|
-
"items": { "$ref": "#/$defs/keyedStatement" }
|
|
2194
|
-
}
|
|
2195
|
-
}
|
|
2196
|
-
},
|
|
2197
|
-
"counterfactual": {
|
|
2198
|
-
"type": "object",
|
|
2199
|
-
"additionalProperties": false,
|
|
2200
|
-
"required": [
|
|
2201
|
-
"key",
|
|
2202
|
-
"binding_key",
|
|
2203
|
-
"claims",
|
|
2204
|
-
"check_key",
|
|
2205
|
-
"mutation",
|
|
2206
|
-
"expected_assertion_failures"
|
|
2207
|
-
],
|
|
2208
|
-
"properties": {
|
|
2209
|
-
"key": { "$ref": "#/$defs/key" },
|
|
2210
|
-
"binding_key": { "$ref": "#/$defs/key" },
|
|
2211
|
-
"claims": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
2212
|
-
"check_key": { "$ref": "#/$defs/key" },
|
|
2213
|
-
"expected_assertion_failures": { "$ref": "#/$defs/keys" },
|
|
2214
|
-
"preserved_assertions": { "$ref": "#/$defs/keys", "default": [] },
|
|
2215
|
-
"allowed_fanout_assertions": {
|
|
2216
|
-
"$ref": "#/$defs/keys",
|
|
2217
|
-
"default": []
|
|
2218
|
-
},
|
|
2219
|
-
"mutation": {
|
|
2220
|
-
"oneOf": [
|
|
2221
|
-
{
|
|
2222
|
-
"type": "object",
|
|
2223
|
-
"additionalProperties": false,
|
|
2224
|
-
"required": ["type", "paths"],
|
|
2225
|
-
"properties": {
|
|
2226
|
-
"type": { "const": "remove_paths" },
|
|
2227
|
-
"paths": { "$ref": "#/$defs/nonEmptyStrings" }
|
|
2228
|
-
}
|
|
2229
|
-
},
|
|
2230
|
-
{
|
|
2231
|
-
"type": "object",
|
|
2232
|
-
"additionalProperties": false,
|
|
2233
|
-
"required": ["type", "path", "fixture_path"],
|
|
2234
|
-
"properties": {
|
|
2235
|
-
"type": { "const": "replace_file" },
|
|
2236
|
-
"path": { "$ref": "#/$defs/nonEmpty" },
|
|
2237
|
-
"fixture_path": { "$ref": "#/$defs/nonEmpty" }
|
|
2238
|
-
}
|
|
2239
|
-
},
|
|
2240
|
-
{
|
|
2241
|
-
"type": "object",
|
|
2242
|
-
"additionalProperties": false,
|
|
2243
|
-
"required": ["type", "path", "pointer", "value"],
|
|
2244
|
-
"properties": {
|
|
2245
|
-
"type": { "const": "replace_json_value" },
|
|
2246
|
-
"path": { "$ref": "#/$defs/nonEmpty" },
|
|
2247
|
-
"pointer": {
|
|
2248
|
-
"type": "string",
|
|
2249
|
-
"pattern": "^/(?:[^~/]|~[01])+(?:/(?:[^~/]|~[01])+)*$"
|
|
2250
|
-
},
|
|
2251
|
-
"value": true
|
|
2252
|
-
}
|
|
2253
|
-
},
|
|
2254
|
-
{
|
|
2255
|
-
"type": "object",
|
|
2256
|
-
"additionalProperties": false,
|
|
2257
|
-
"required": ["type", "path", "match", "replacement"],
|
|
2258
|
-
"properties": {
|
|
2259
|
-
"type": { "const": "replace_text" },
|
|
2260
|
-
"path": { "$ref": "#/$defs/nonEmpty" },
|
|
2261
|
-
"match": { "$ref": "#/$defs/nonEmpty" },
|
|
2262
|
-
"replacement": { "type": "string" }
|
|
2263
|
-
}
|
|
2264
|
-
}
|
|
2265
|
-
]
|
|
2266
|
-
}
|
|
2267
|
-
}
|
|
2268
|
-
},
|
|
2269
|
-
"globalCounterfactual": {
|
|
2270
|
-
"type": "object",
|
|
2271
|
-
"additionalProperties": false,
|
|
2272
|
-
"required": [
|
|
2273
|
-
"key",
|
|
2274
|
-
"binding_ref",
|
|
2275
|
-
"claims",
|
|
2276
|
-
"check_key",
|
|
2277
|
-
"mutation",
|
|
2278
|
-
"expected_assertion_failures"
|
|
2279
|
-
],
|
|
2280
|
-
"properties": {
|
|
2281
|
-
"key": { "$ref": "#/$defs/key" },
|
|
2282
|
-
"binding_ref": {
|
|
2283
|
-
"type": "string",
|
|
2284
|
-
"pattern": "^[a-z0-9][a-z0-9-]*\\.[a-z0-9][a-z0-9-]*$"
|
|
2285
|
-
},
|
|
2286
|
-
"claims": {
|
|
2287
|
-
"type": "array",
|
|
2288
|
-
"minItems": 1,
|
|
2289
|
-
"items": { "$ref": "#/$defs/nonEmpty" }
|
|
2290
|
-
},
|
|
2291
|
-
"check_key": { "$ref": "#/$defs/key" },
|
|
2292
|
-
"expected_assertion_failures": {
|
|
2293
|
-
"type": "array",
|
|
2294
|
-
"minItems": 1,
|
|
2295
|
-
"items": { "$ref": "#/$defs/key" },
|
|
2296
|
-
"uniqueItems": true
|
|
2297
|
-
},
|
|
2298
|
-
"preserved_assertions": { "$ref": "#/$defs/keys", "default": [] },
|
|
2299
|
-
"allowed_fanout_assertions": {
|
|
2300
|
-
"$ref": "#/$defs/keys",
|
|
2301
|
-
"default": []
|
|
2302
|
-
},
|
|
2303
|
-
"mutation": {
|
|
2304
|
-
"oneOf": [
|
|
2305
|
-
{
|
|
2306
|
-
"type": "object",
|
|
2307
|
-
"additionalProperties": false,
|
|
2308
|
-
"required": ["type", "paths"],
|
|
2309
|
-
"properties": {
|
|
2310
|
-
"type": { "const": "remove_paths" },
|
|
2311
|
-
"paths": { "$ref": "#/$defs/nonEmptyStrings" }
|
|
2312
|
-
}
|
|
2313
|
-
},
|
|
2314
|
-
{
|
|
2315
|
-
"type": "object",
|
|
2316
|
-
"additionalProperties": false,
|
|
2317
|
-
"required": ["type", "path", "fixture_path"],
|
|
2318
|
-
"properties": {
|
|
2319
|
-
"type": { "const": "replace_file" },
|
|
2320
|
-
"path": { "$ref": "#/$defs/nonEmpty" },
|
|
2321
|
-
"fixture_path": { "$ref": "#/$defs/nonEmpty" }
|
|
2322
|
-
}
|
|
2323
|
-
},
|
|
2324
|
-
{
|
|
2325
|
-
"type": "object",
|
|
2326
|
-
"additionalProperties": false,
|
|
2327
|
-
"required": ["type", "path", "pointer", "value"],
|
|
2328
|
-
"properties": {
|
|
2329
|
-
"type": { "const": "replace_json_value" },
|
|
2330
|
-
"path": { "$ref": "#/$defs/nonEmpty" },
|
|
2331
|
-
"pointer": {
|
|
2332
|
-
"type": "string",
|
|
2333
|
-
"pattern": "^/(?:[^~/]|~[01])+(?:/(?:[^~/]|~[01])+)*$"
|
|
2334
|
-
},
|
|
2335
|
-
"value": true
|
|
2336
|
-
}
|
|
2337
|
-
},
|
|
2338
|
-
{
|
|
2339
|
-
"type": "object",
|
|
2340
|
-
"additionalProperties": false,
|
|
2341
|
-
"required": ["type", "path", "match", "replacement"],
|
|
2342
|
-
"properties": {
|
|
2343
|
-
"type": { "const": "replace_text" },
|
|
2344
|
-
"path": { "$ref": "#/$defs/nonEmpty" },
|
|
2345
|
-
"match": { "$ref": "#/$defs/nonEmpty" },
|
|
2346
|
-
"replacement": { "type": "string" }
|
|
2347
|
-
}
|
|
2348
|
-
}
|
|
2349
|
-
]
|
|
2350
|
-
}
|
|
2351
|
-
}
|
|
2352
|
-
}
|
|
2353
|
-
}
|
|
2354
|
-
}
|