@openplanr/protocol 0.2.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/LICENSE +21 -0
- package/README.md +82 -0
- package/lib/dashboard/closed-json-contract.mjs +141 -0
- package/lib/dashboard/generated/operate-experience-surface-schema-data.mjs +67 -0
- package/lib/dashboard/generated/operate-review-schema-data.mjs +35 -0
- package/lib/dashboard/generated/operate-schema-token-codec.mjs +127 -0
- package/lib/dashboard/operate-experience-audit-display-contract.d.mts +196 -0
- package/lib/dashboard/operate-experience-audit-display-contract.mjs +700 -0
- package/lib/dashboard/operate-experience-display-contract.d.mts +572 -0
- package/lib/dashboard/operate-experience-display-contract.mjs +1007 -0
- package/lib/dashboard/operate-experience-surface-contract.d.mts +157 -0
- package/lib/dashboard/operate-experience-surface-contract.mjs +91 -0
- package/lib/dashboard/operate-review-contract.d.mts +34 -0
- package/lib/dashboard/operate-review-contract.mjs +175 -0
- package/lib/dashboard/operate-review-display-workspace-contract.d.mts +54 -0
- package/lib/dashboard/operate-review-display-workspace-contract.mjs +258 -0
- package/lib/dashboard/operate-review-payload-safety.d.mts +7 -0
- package/lib/dashboard/operate-review-payload-safety.mjs +42 -0
- package/lib/dashboard/operate-review-workspace-projection-v2.d.mts +218 -0
- package/lib/protocol/index.d.ts +2638 -0
- package/package.json +115 -0
- package/registries/commands.json +1952 -0
- package/registries/diagram-grammars.json +2407 -0
- package/registries/diagram-semantic-patterns.json +111 -0
- package/registries/output-paths.json +40 -0
- package/registries/outputs.json +864 -0
- package/registries/roles.json +661 -0
- package/registries/rules.json +261 -0
- package/registries/skill-host-profiles.json +247 -0
- package/registries/skill-modules.json +1112 -0
- package/registries/skill-routing.json +389 -0
- package/registries/skills.json +1545 -0
- package/registries/task-kinds.json +220 -0
- package/registry/adapters.json +110 -0
- package/registry/artifact-theme.json +60 -0
- package/registry/evaluation-graders.json +303 -0
- package/registry/evaluation-host-profiles.json +131 -0
- package/registry/frozen-commands.json +15 -0
- package/registry/landing-operations.json +20 -0
- package/registry/landing-workflows.json +70 -0
- package/registry/live-evidence-providers.json +1 -0
- package/registry/operate-v2-contracts.json +5965 -0
- package/registry/professional-skills.json +115 -0
- package/registry/roles.json +14 -0
- package/registry/ship-review-specialists.json +42 -0
- package/schemas/v1.0.0/design-approved.schema.json +35 -0
- package/schemas/v1.0.0/design-feedback.schema.json +169 -0
- package/schemas/v1.0.0/design-manifest.schema.json +90 -0
- package/schemas/v1.0.0/design-session.schema.json +73 -0
- package/schemas/v1.0.0/graph.schema.json +100 -0
- package/schemas/v1.0.0/pipeline-shipped.schema.json +154 -0
- package/schemas/v1.0.0/run-manifest.schema.json +81 -0
- package/schemas/v1.0.0/spec.schema.json +120 -0
- package/schemas/v1.0.0/stack.schema.json +184 -0
- package/schemas/v1.0.0/story.schema.json +95 -0
- package/schemas/v1.0.0/task.schema.json +171 -0
- package/schemas/v1.0.0/taste-profile.schema.json +96 -0
- package/schemas/v1.1.0/adapter-registry.schema.json +72 -0
- package/schemas/v1.1.0/artifact-envelope.schema.json +142 -0
- package/schemas/v1.1.0/artifact-paste.schema.json +49 -0
- package/schemas/v1.1.0/artifact-review.schema.json +97 -0
- package/schemas/v1.1.0/artifact-room-descriptor.schema.json +39 -0
- package/schemas/v1.1.0/artifact-room-event.schema.json +184 -0
- package/schemas/v1.1.0/artifact-room-signed-event.schema.json +58 -0
- package/schemas/v1.1.0/artifact-theme.schema.json +139 -0
- package/schemas/v1.1.0/browser-qa-gate.schema.json +21 -0
- package/schemas/v1.1.0/browser-qa-result.schema.json +24 -0
- package/schemas/v1.1.0/browser-qa-session.schema.json +12 -0
- package/schemas/v1.1.0/ecosystem-manifest.schema.json +46 -0
- package/schemas/v1.1.0/investigation-diagnosis.schema.json +12 -0
- package/schemas/v1.1.0/investigation-event.schema.json +15 -0
- package/schemas/v1.1.0/investigation-experiment.schema.json +17 -0
- package/schemas/v1.1.0/investigation-fix.schema.json +11 -0
- package/schemas/v1.1.0/investigation-hypothesis.schema.json +6 -0
- package/schemas/v1.1.0/investigation-observation.schema.json +10 -0
- package/schemas/v1.1.0/investigation-receipt.schema.json +7 -0
- package/schemas/v1.1.0/investigation-record.schema.json +7 -0
- package/schemas/v1.1.0/investigation-request.schema.json +34 -0
- package/schemas/v1.1.0/planning-review-event.schema.json +64 -0
- package/schemas/v1.1.0/planning-review-receipt.schema.json +19 -0
- package/schemas/v1.1.0/planning-review-record.schema.json +176 -0
- package/schemas/v1.1.0/planning-review-state.schema.json +19 -0
- package/schemas/v1.1.0/professional-skills.schema.json +105 -0
- package/schemas/v1.1.0/professional-specification.schema.json +111 -0
- package/schemas/v1.1.0/provenance-event.schema.json +82 -0
- package/schemas/v1.1.0/role-registry.schema.json +28 -0
- package/schemas/v1.1.0/runtime-lock.schema.json +39 -0
- package/schemas/v1.1.0/ship-closure.schema.json +353 -0
- package/schemas/v1.1.0/ship-review-specialist-registry.schema.json +29 -0
- package/schemas/v1.1.0/ship-risk-classification.schema.json +48 -0
- package/schemas/v1.1.0/specialist-review-result.schema.json +19 -0
- package/schemas/v1.10.0/design-review-bundle.schema.json +584 -0
- package/schemas/v1.10.0/design-review-context.schema.json +191 -0
- package/schemas/v1.10.0/design-review-handoff.schema.json +407 -0
- package/schemas/v1.10.0/design-review-metadata-payload.schema.json +106 -0
- package/schemas/v1.11.0/design-review-metadata-payload.schema.json +107 -0
- package/schemas/v1.12.0/enterprise-access-context.schema.json +217 -0
- package/schemas/v1.12.0/enterprise-agent-handoff.schema.json +508 -0
- package/schemas/v1.12.0/enterprise-artifact-revision.schema.json +87 -0
- package/schemas/v1.12.0/enterprise-change-proposal.schema.json +359 -0
- package/schemas/v1.12.0/enterprise-evidence-reference.schema.json +147 -0
- package/schemas/v1.12.0/enterprise-review-thread.schema.json +278 -0
- package/schemas/v1.12.0/enterprise-sync-state.schema.json +169 -0
- package/schemas/v1.2.0/adapter-registry.schema.json +83 -0
- package/schemas/v1.2.0/dashboard-bootstrap.schema.json +219 -0
- package/schemas/v1.2.0/ecosystem-release-operation.schema.json +90 -0
- package/schemas/v1.2.0/ecosystem-saga.schema.json +54 -0
- package/schemas/v1.2.0/evidence-diagnostic.schema.json +77 -0
- package/schemas/v1.2.0/guided-answer-envelope.schema.json +73 -0
- package/schemas/v1.2.0/guided-confirmation.schema.json +128 -0
- package/schemas/v1.2.0/guided-question.schema.json +242 -0
- package/schemas/v1.2.0/guided-questionnaire.schema.json +278 -0
- package/schemas/v1.2.0/guided-session.schema.json +141 -0
- package/schemas/v1.2.0/landing-confirmation.schema.json +17 -0
- package/schemas/v1.2.0/landing-event.schema.json +12 -0
- package/schemas/v1.2.0/landing-operation-registry.schema.json +16 -0
- package/schemas/v1.2.0/landing-phase-receipt.schema.json +19 -0
- package/schemas/v1.2.0/landing-plan.schema.json +36 -0
- package/schemas/v1.2.0/landing-receipt.schema.json +12 -0
- package/schemas/v1.2.0/landing-workflow-catalog.schema.json +143 -0
- package/schemas/v1.2.0/operate-action-display-workspace.schema.json +119 -0
- package/schemas/v1.2.0/operate-cycle-display-workspace.schema.json +109 -0
- package/schemas/v1.2.0/operate-executive-board-display-surface.schema.json +72 -0
- package/schemas/v1.2.0/operate-experience-audit-display-surface.schema.json +328 -0
- package/schemas/v1.2.0/operate-experience-display-surface.schema.json +46 -0
- package/schemas/v1.2.0/operate-experience-surface.schema.json +590 -0
- package/schemas/v1.2.0/operate-recovery-display-surface.schema.json +85 -0
- package/schemas/v1.2.0/structured-action.schema.json +91 -0
- package/schemas/v1.3.0/adapter-registry.schema.json +84 -0
- package/schemas/v1.3.0/ecosystem-manifest.schema.json +120 -0
- package/schemas/v1.3.0/release-compatibility-claim.schema.json +46 -0
- package/schemas/v1.3.0/release-ledger-receipt.schema.json +45 -0
- package/schemas/v1.3.0/release-ledger.schema.json +60 -0
- package/schemas/v1.4.0/adapter-registry.schema.json +62 -0
- package/schemas/v1.4.0/evaluation-aggregate-report.schema.json +166 -0
- package/schemas/v1.4.0/evaluation-budget.schema.json +49 -0
- package/schemas/v1.4.0/evaluation-corpus.schema.json +93 -0
- package/schemas/v1.4.0/evaluation-fixture.schema.json +64 -0
- package/schemas/v1.4.0/evaluation-gate-policy.schema.json +33 -0
- package/schemas/v1.4.0/evaluation-grader-registration.schema.json +141 -0
- package/schemas/v1.4.0/evaluation-grader-registry.schema.json +20 -0
- package/schemas/v1.4.0/evaluation-host-profile-registry.schema.json +20 -0
- package/schemas/v1.4.0/evaluation-host-profile.schema.json +73 -0
- package/schemas/v1.4.0/evaluation-observation.schema.json +76 -0
- package/schemas/v1.4.0/evaluation-run-result.schema.json +84 -0
- package/schemas/v1.4.0/evaluation-scenario.schema.json +231 -0
- package/schemas/v1.4.0/evaluation-waiver.schema.json +65 -0
- package/schemas/v1.4.0/skill-certification-receipt.schema.json +103 -0
- package/schemas/v1.5.0/command-catalog.schema.json +296 -0
- package/schemas/v1.5.0/common.schema.json +261 -0
- package/schemas/v1.5.0/generated-asset-manifest.schema.json +313 -0
- package/schemas/v1.5.0/implementation-result.schema.json +152 -0
- package/schemas/v1.5.0/migration-preservation-manifest.schema.json +749 -0
- package/schemas/v1.5.0/output-catalog.schema.json +210 -0
- package/schemas/v1.5.0/output-path-catalog.schema.json +81 -0
- package/schemas/v1.5.0/role-registry.schema.json +261 -0
- package/schemas/v1.5.0/rule-catalog.schema.json +130 -0
- package/schemas/v1.5.0/skill-catalog.schema.json +303 -0
- package/schemas/v1.5.0/task-kind-registry.schema.json +167 -0
- package/schemas/v1.5.0/task-manifest.schema.json +373 -0
- package/schemas/v1.5.0/task-output-manifest.schema.json +462 -0
- package/schemas/v1.6.0/common.schema.json +462 -0
- package/schemas/v1.6.0/diagram-consumer-reference.schema.json +167 -0
- package/schemas/v1.6.0/diagram-document.schema.json +699 -0
- package/schemas/v1.6.0/diagram-fidelity-report.schema.json +137 -0
- package/schemas/v1.6.0/diagram-manifest.schema.json +162 -0
- package/schemas/v1.6.0/diagram-quality-report.schema.json +148 -0
- package/schemas/v1.6.0/diagram-review-binding.schema.json +132 -0
- package/schemas/v1.6.0/diagram-semantic-pattern-registry.schema.json +90 -0
- package/schemas/v1.6.0/diagram-type-registry.schema.json +373 -0
- package/schemas/v1.6.0/generated-asset-manifest.schema.json +103 -0
- package/schemas/v1.6.0/skill-catalog.schema.json +84 -0
- package/schemas/v1.6.0/skill-completion-receipt.schema.json +72 -0
- package/schemas/v1.6.0/skill-consent-record.schema.json +74 -0
- package/schemas/v1.6.0/skill-host-profile-registry.schema.json +526 -0
- package/schemas/v1.6.0/skill-learning-record.schema.json +116 -0
- package/schemas/v1.6.0/skill-module-registry.schema.json +108 -0
- package/schemas/v1.6.0/skill-routing-registry.schema.json +93 -0
- package/schemas/v1.6.0/skill-session.schema.json +73 -0
- package/schemas/v1.6.0/skill-source.schema.json +169 -0
- package/schemas/v1.7.0/common.schema.json +464 -0
- package/schemas/v1.7.0/generated-asset-manifest.schema.json +103 -0
- package/schemas/v1.7.0/planning-id-sequence.schema.json +50 -0
- package/schemas/v1.7.0/request-authority.schema.json +71 -0
- package/schemas/v1.7.0/skill-catalog.schema.json +84 -0
- package/schemas/v1.7.0/skill-completion-receipt.schema.json +72 -0
- package/schemas/v1.7.0/skill-consent-record.schema.json +74 -0
- package/schemas/v1.7.0/skill-host-profile-registry.schema.json +526 -0
- package/schemas/v1.7.0/skill-learning-record.schema.json +116 -0
- package/schemas/v1.7.0/skill-module-registry.schema.json +108 -0
- package/schemas/v1.7.0/skill-routing-registry.schema.json +93 -0
- package/schemas/v1.7.0/skill-session.schema.json +73 -0
- package/schemas/v1.7.0/skill-source.schema.json +169 -0
- package/schemas/v1.7.0/spec.schema.json +117 -0
- package/schemas/v1.7.0/story.schema.json +107 -0
- package/schemas/v1.7.0/task.schema.json +217 -0
- package/schemas/v1.8.0/common.schema.json +96 -0
- package/schemas/v1.8.0/skill-package.schema.json +63 -0
- package/schemas/v1.8.0/utility-command-catalog.schema.json +82 -0
- package/schemas/v1.9.0/design-document.schema.json +306 -0
- package/schemas/v1.9.0/design-review-bundle.schema.json +346 -0
- package/schemas/v1.9.0/design-review-workspace.schema.json +108 -0
- package/schemas/v1.9.0/design-workspace-create.schema.json +170 -0
- package/schemas/v1.9.0/design-workspace-event.schema.json +97 -0
- package/schemas/v1.9.0/design-workspace-revision.schema.json +56 -0
- package/schemas/v2.0.0/agent-runtime-manifest.schema.json +59 -0
- package/schemas/v2.0.0/business-operating-snapshot-projection.schema.json +14 -0
- package/schemas/v2.0.0/operate-allowed-action.schema.json +181 -0
- package/schemas/v2.0.0/operate-api-envelope.schema.json +225 -0
- package/schemas/v2.0.0/operate-capability-provider-registration.schema.json +30 -0
- package/schemas/v2.0.0/operate-domain-registration.schema.json +284 -0
- package/schemas/v2.0.0/operate-evidence-provider-registration.schema.json +55 -0
- package/schemas/v2.0.0/operate-evidence-resolver-registration.schema.json +46 -0
- package/schemas/v2.0.0/operate-executor-registration.schema.json +27 -0
- package/schemas/v2.0.0/operate-experience-live-patch.schema.json +47 -0
- package/schemas/v2.0.0/operate-experience-preview.schema.json +51 -0
- package/schemas/v2.0.0/operate-experience-view.schema.json +281 -0
- package/schemas/v2.0.0/operate-live-evidence-provider-registration.schema.json +48 -0
- package/schemas/v2.0.0/operate-live-evidence-provider-registry.schema.json +17 -0
- package/schemas/v2.0.0/operate-metric-provider-registration.schema.json +12 -0
- package/schemas/v2.0.0/operate-policy-provider-registration.schema.json +33 -0
- package/schemas/v2.0.0/operate-review-bound-submission.schema.json +29 -0
- package/schemas/v2.0.0/operate-review-display-workspace.schema.json +390 -0
- package/schemas/v2.0.0/operate-snapshot-provider-registration.schema.json +16 -0
- package/schemas/v2.0.0/operate-tool-call.schema.json +172 -0
- package/schemas/v2.0.0/operate-verification-provider-registration.schema.json +12 -0
- package/schemas/v2.0.0/operating-action-policy.schema.json +31 -0
- package/schemas/v2.0.0/operating-action-verification-plan.schema.json +13 -0
- package/schemas/v2.0.0/operating-action.schema.json +86 -0
- package/schemas/v2.0.0/operating-advisor-result.schema.json +394 -0
- package/schemas/v2.0.0/operating-approval-record.schema.json +23 -0
- package/schemas/v2.0.0/operating-approval-requirement.schema.json +31 -0
- package/schemas/v2.0.0/operating-artifact.schema.json +52 -0
- package/schemas/v2.0.0/operating-assignment.schema.json +437 -0
- package/schemas/v2.0.0/operating-assumption.schema.json +16 -0
- package/schemas/v2.0.0/operating-capability-availability.schema.json +15 -0
- package/schemas/v2.0.0/operating-capability-grant.schema.json +14 -0
- package/schemas/v2.0.0/operating-challenger-review.schema.json +204 -0
- package/schemas/v2.0.0/operating-checkpoint.schema.json +43 -0
- package/schemas/v2.0.0/operating-claim.schema.json +17 -0
- package/schemas/v2.0.0/operating-connector-checkpoint.schema.json +28 -0
- package/schemas/v2.0.0/operating-context-capture.schema.json +74 -0
- package/schemas/v2.0.0/operating-cycle-input-binding.schema.json +30 -0
- package/schemas/v2.0.0/operating-cycle.schema.json +42 -0
- package/schemas/v2.0.0/operating-decision-ledger.schema.json +237 -0
- package/schemas/v2.0.0/operating-decision.schema.json +137 -0
- package/schemas/v2.0.0/operating-delivery-evidence.schema.json +46 -0
- package/schemas/v2.0.0/operating-delivery-route.schema.json +43 -0
- package/schemas/v2.0.0/operating-delta.schema.json +13 -0
- package/schemas/v2.0.0/operating-domain-projection.schema.json +15 -0
- package/schemas/v2.0.0/operating-event-trigger.schema.json +11 -0
- package/schemas/v2.0.0/operating-event.schema.json +505 -0
- package/schemas/v2.0.0/operating-evidence-candidate.schema.json +88 -0
- package/schemas/v2.0.0/operating-evidence-edge.schema.json +39 -0
- package/schemas/v2.0.0/operating-evidence-graph.schema.json +25 -0
- package/schemas/v2.0.0/operating-evidence-observation.schema.json +48 -0
- package/schemas/v2.0.0/operating-evidence-ref.schema.json +51 -0
- package/schemas/v2.0.0/operating-evidence-resolution.schema.json +54 -0
- package/schemas/v2.0.0/operating-execution-result.schema.json +23 -0
- package/schemas/v2.0.0/operating-executive-board.schema.json +78 -0
- package/schemas/v2.0.0/operating-finding.schema.json +116 -0
- package/schemas/v2.0.0/operating-governed-operation.schema.json +54 -0
- package/schemas/v2.0.0/operating-intelligence-input-bundle.schema.json +128 -0
- package/schemas/v2.0.0/operating-intelligence-plan.schema.json +302 -0
- package/schemas/v2.0.0/operating-learning-receipt.schema.json +31 -0
- package/schemas/v2.0.0/operating-learning.schema.json +13 -0
- package/schemas/v2.0.0/operating-live-evidence-consent-record.schema.json +42 -0
- package/schemas/v2.0.0/operating-live-evidence-ingestion.schema.json +31 -0
- package/schemas/v2.0.0/operating-measurement-plan.schema.json +18 -0
- package/schemas/v2.0.0/operating-measurement-schedule-receipt.schema.json +7 -0
- package/schemas/v2.0.0/operating-measurement-schedule.schema.json +16 -0
- package/schemas/v2.0.0/operating-metric-observation.schema.json +15 -0
- package/schemas/v2.0.0/operating-metric.schema.json +18 -0
- package/schemas/v2.0.0/operating-model-state.schema.json +36 -0
- package/schemas/v2.0.0/operating-objective.schema.json +21 -0
- package/schemas/v2.0.0/operating-origin.schema.json +31 -0
- package/schemas/v2.0.0/operating-outcome-evaluation.schema.json +46 -0
- package/schemas/v2.0.0/operating-outcome.schema.json +13 -0
- package/schemas/v2.0.0/operating-planning-proposal.schema.json +45 -0
- package/schemas/v2.0.0/operating-policy-evaluation.schema.json +28 -0
- package/schemas/v2.0.0/operating-review-read.schema.json +217 -0
- package/schemas/v2.0.0/operating-review-receipt.schema.json +64 -0
- package/schemas/v2.0.0/operating-review.schema.json +47 -0
- package/schemas/v2.0.0/operating-risk.schema.json +96 -0
- package/schemas/v2.0.0/operating-rollback-plan.schema.json +10 -0
- package/schemas/v2.0.0/operating-rollback-result.schema.json +20 -0
- package/schemas/v2.0.0/operating-runtime-state.schema.json +289 -0
- package/schemas/v2.0.0/operating-scenario.schema.json +13 -0
- package/schemas/v2.0.0/operating-snapshot.schema.json +38 -0
- package/schemas/v2.0.0/operating-submission.schema.json +34 -0
- package/schemas/v2.0.0/operating-trace-matrix.schema.json +176 -0
- package/schemas/v2.0.0/operating-work-change-set.schema.json +89 -0
- package/schemas/v2.0.0/operating-work-ledger.schema.json +40 -0
- package/schemas/v2.0.0/software-operating-snapshot-projection.schema.json +14 -0
- package/src/browser-contracts.d.mts +5 -0
- package/src/browser-contracts.mjs +40 -0
- package/src/canonical-json.d.mts +5 -0
- package/src/canonical-json.mjs +142 -0
- package/src/compat/live-evidence-v2.mjs +1019 -0
- package/src/compat/operate-experience-live-patch.mjs +66 -0
- package/src/compat/operating-planning-contracts.mjs +114 -0
- package/src/contracts.d.mts +42 -0
- package/src/contracts.mjs +990 -0
- package/src/design-contracts.d.mts +62 -0
- package/src/design-contracts.mjs +186 -0
- package/src/design-publication-contracts.d.mts +4 -0
- package/src/design-publication-contracts.mjs +85 -0
- package/src/diagram-contracts.d.mts +19 -0
- package/src/diagram-contracts.mjs +28 -0
- package/src/enterprise-contracts.d.mts +107 -0
- package/src/enterprise-contracts.mjs +463 -0
- package/src/errors.d.mts +11 -0
- package/src/errors.mjs +109 -0
- package/src/generated/canonical-registries.mjs +5554 -0
- package/src/generated/contract-catalog-v2.mjs +7076 -0
- package/src/generated/diagram-registries.mjs +2529 -0
- package/src/index.d.mts +10 -0
- package/src/index.mjs +40 -0
- package/src/json-schema.d.mts +7 -0
- package/src/json-schema.mjs +283 -0
- package/src/planning-contracts.d.mts +10 -0
- package/src/planning-contracts.mjs +53 -0
- package/src/registries.d.mts +40 -0
- package/src/registries.mjs +261 -0
- package/src/review-experience-contracts.d.mts +11 -0
- package/src/review-experience-contracts.mjs +103 -0
- package/src/semver.d.mts +2 -0
- package/src/semver.mjs +7 -0
- package/src/skill-source-contracts.d.mts +25 -0
- package/src/skill-source-contracts.mjs +105 -0
- package/src/task-contracts.d.mts +7 -0
- package/src/task-contracts.mjs +130 -0
- package/src/workspace-contracts.d.mts +26 -0
- package/src/workspace-contracts.mjs +83 -0
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-challenger-review.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-challenger-review", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 challenger review",
|
|
6
|
+
"description": "A closed, source-targeted critique of the exact accepted Advisor Artifacts issued to one Challenger Assignment.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": [
|
|
10
|
+
"kind", "schemaVersion", "protocolVersion", "assignmentId", "roleId", "roleVersion",
|
|
11
|
+
"analysisProfile", "intelligencePlanId", "snapshotId", "scopeId", "domainId", "domainVersion",
|
|
12
|
+
"summary", "analysisMarkdown", "inputAbsenceIds", "advisorArtifactIds", "reviewedClaims", "questionCoverage",
|
|
13
|
+
"findings", "missingAlternatives", "dissent", "gaps"
|
|
14
|
+
],
|
|
15
|
+
"properties": {
|
|
16
|
+
"kind": { "const": "operating-challenger-review" },
|
|
17
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
18
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
19
|
+
"assignmentId": { "$ref": "#/$defs/assignmentId" },
|
|
20
|
+
"roleId": { "$ref": "#/$defs/identifier" },
|
|
21
|
+
"roleVersion": { "$ref": "#/$defs/version" },
|
|
22
|
+
"analysisProfile": { "$ref": "#/$defs/analysisProfile" },
|
|
23
|
+
"intelligencePlanId": { "$ref": "#/$defs/planId" },
|
|
24
|
+
"snapshotId": { "$ref": "#/$defs/snapshotId" },
|
|
25
|
+
"scopeId": { "$ref": "#/$defs/id" },
|
|
26
|
+
"domainId": { "$ref": "#/$defs/identifier" },
|
|
27
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
28
|
+
"summary": { "$ref": "#/$defs/text" },
|
|
29
|
+
"analysisMarkdown": { "$ref": "#/$defs/analysisMarkdown" },
|
|
30
|
+
"inputAbsenceIds": { "type": "array", "maxItems": 2048, "uniqueItems": true, "items": { "$ref": "#/$defs/absenceId" } },
|
|
31
|
+
"advisorArtifactIds": { "type": "array", "minItems": 1, "maxItems": 16, "uniqueItems": true, "items": { "$ref": "#/$defs/artifactId" } },
|
|
32
|
+
"reviewedClaims": { "type": "array", "maxItems": 2048, "items": { "$ref": "#/$defs/claimTarget" } },
|
|
33
|
+
"questionCoverage": { "type": "array", "minItems": 1, "maxItems": 16, "items": { "$ref": "#/$defs/questionCoverage" } },
|
|
34
|
+
"findings": { "type": "array", "maxItems": 256, "items": { "$ref": "#/$defs/finding" } },
|
|
35
|
+
"missingAlternatives": { "type": "array", "maxItems": 64, "items": { "$ref": "#/$defs/missingAlternative" } },
|
|
36
|
+
"dissent": { "type": "array", "maxItems": 128, "items": { "$ref": "#/$defs/dissent" } },
|
|
37
|
+
"gaps": { "type": "array", "maxItems": 128, "items": { "$ref": "#/$defs/gap" } }
|
|
38
|
+
},
|
|
39
|
+
"$defs": {
|
|
40
|
+
"id": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
41
|
+
"identifier": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
42
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" },
|
|
43
|
+
"assignmentId": { "type": "string", "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
44
|
+
"planId": { "type": "string", "pattern": "^ipl_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
45
|
+
"snapshotId": { "type": "string", "pattern": "^snp_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
46
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
47
|
+
"evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
48
|
+
"absenceId": { "type": "string", "pattern": "^abs_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
49
|
+
"advisorClaimId": { "type": "string", "pattern": "^claim:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
50
|
+
"advisorAnalysisId": { "type": "string", "pattern": "^analysis:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
51
|
+
"advisorMeasurementId": { "type": "string", "pattern": "^measurement:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
52
|
+
"advisorRiskId": { "type": "string", "pattern": "^risk:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
53
|
+
"advisorRecommendationId": { "type": "string", "pattern": "^recommendation:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:1$" },
|
|
54
|
+
"findingId": { "type": "string", "pattern": "^finding:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
55
|
+
"alternativeId": { "type": "string", "pattern": "^alternative:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
56
|
+
"dissentId": { "type": "string", "pattern": "^dissent:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
57
|
+
"gapId": { "type": "string", "pattern": "^gap:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
58
|
+
"text": { "type": "string", "minLength": 1, "maxLength": 4096, "pattern": "^[\\s\\S]*\\S[\\s\\S]*$" },
|
|
59
|
+
"title": { "type": "string", "minLength": 1, "maxLength": 256, "pattern": "^\\S(?:[\\s\\S]*\\S)?$", "not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" } },
|
|
60
|
+
"analysisMarkdown": { "type": "string", "minLength": 1, "maxLength": 32768, "pattern": "^[\\s\\S]*\\S[\\s\\S]*$" },
|
|
61
|
+
"evidenceRefIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } },
|
|
62
|
+
"analysisProfile": {
|
|
63
|
+
"type": "object", "additionalProperties": false, "required": ["id", "version", "questionIds"],
|
|
64
|
+
"properties": {
|
|
65
|
+
"id": { "$ref": "#/$defs/identifier" }, "version": { "$ref": "#/$defs/version" },
|
|
66
|
+
"questionIds": { "type": "array", "minItems": 1, "maxItems": 16, "uniqueItems": true, "items": { "$ref": "#/$defs/identifier" } }
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"claimTarget": {
|
|
70
|
+
"type": "object", "additionalProperties": false, "required": ["advisorArtifactId", "localClaimId"],
|
|
71
|
+
"properties": { "advisorArtifactId": { "$ref": "#/$defs/artifactId" }, "localClaimId": { "$ref": "#/$defs/advisorClaimId" } }
|
|
72
|
+
},
|
|
73
|
+
"questionCoverage": {
|
|
74
|
+
"type": "object", "additionalProperties": false,
|
|
75
|
+
"required": ["questionId", "disposition", "answer", "findingIds", "alternativeIds", "dissentIds", "gapIds", "justification"],
|
|
76
|
+
"properties": {
|
|
77
|
+
"questionId": { "$ref": "#/$defs/identifier" },
|
|
78
|
+
"disposition": { "enum": ["answered", "gap", "not-applicable"] },
|
|
79
|
+
"answer": { "$ref": "#/$defs/text" },
|
|
80
|
+
"findingIds": { "type": "array", "maxItems": 256, "uniqueItems": true, "items": { "$ref": "#/$defs/findingId" } },
|
|
81
|
+
"alternativeIds": { "type": "array", "maxItems": 64, "uniqueItems": true, "items": { "$ref": "#/$defs/alternativeId" } },
|
|
82
|
+
"dissentIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/dissentId" } },
|
|
83
|
+
"gapIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/gapId" } },
|
|
84
|
+
"justification": { "oneOf": [{ "type": "null" }, { "$ref": "#/$defs/text" }] }
|
|
85
|
+
},
|
|
86
|
+
"allOf": [
|
|
87
|
+
{
|
|
88
|
+
"if": { "properties": { "disposition": { "const": "answered" } }, "required": ["disposition"] },
|
|
89
|
+
"then": {
|
|
90
|
+
"properties": { "gapIds": { "maxItems": 0 }, "justification": { "const": null } },
|
|
91
|
+
"anyOf": [
|
|
92
|
+
{ "properties": { "findingIds": { "minItems": 1 } } },
|
|
93
|
+
{ "properties": { "alternativeIds": { "minItems": 1 } } },
|
|
94
|
+
{ "properties": { "dissentIds": { "minItems": 1 } } }
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"if": { "properties": { "disposition": { "const": "gap" } }, "required": ["disposition"] },
|
|
100
|
+
"then": {
|
|
101
|
+
"properties": {
|
|
102
|
+
"findingIds": { "maxItems": 0 }, "alternativeIds": { "maxItems": 0 }, "dissentIds": { "maxItems": 0 },
|
|
103
|
+
"gapIds": { "minItems": 1 }, "justification": { "const": null }
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"if": { "properties": { "disposition": { "const": "not-applicable" } }, "required": ["disposition"] },
|
|
109
|
+
"then": {
|
|
110
|
+
"properties": {
|
|
111
|
+
"findingIds": { "maxItems": 0 }, "alternativeIds": { "maxItems": 0 }, "dissentIds": { "maxItems": 0 },
|
|
112
|
+
"gapIds": { "maxItems": 0 }, "justification": { "$ref": "#/$defs/text" }
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
"target": {
|
|
119
|
+
"type": "object", "additionalProperties": false,
|
|
120
|
+
"required": ["advisorArtifactId", "analysisIds", "claimIds", "measurementIds", "riskIds", "recommendationIds"],
|
|
121
|
+
"properties": {
|
|
122
|
+
"advisorArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
123
|
+
"analysisIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/advisorAnalysisId" } },
|
|
124
|
+
"claimIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/advisorClaimId" } },
|
|
125
|
+
"measurementIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/advisorMeasurementId" } },
|
|
126
|
+
"riskIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/advisorRiskId" } },
|
|
127
|
+
"recommendationIds": { "type": "array", "maxItems": 1, "uniqueItems": true, "items": { "$ref": "#/$defs/advisorRecommendationId" } }
|
|
128
|
+
},
|
|
129
|
+
"anyOf": [
|
|
130
|
+
{ "properties": { "analysisIds": { "minItems": 1 } } },
|
|
131
|
+
{ "properties": { "claimIds": { "minItems": 1 } } },
|
|
132
|
+
{ "properties": { "measurementIds": { "minItems": 1 } } },
|
|
133
|
+
{ "properties": { "riskIds": { "minItems": 1 } } },
|
|
134
|
+
{ "properties": { "recommendationIds": { "minItems": 1 } } }
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
"finding": {
|
|
138
|
+
"type": "object", "additionalProperties": false,
|
|
139
|
+
"required": ["localFindingId", "title", "statement", "type", "severity", "confidence", "targets", "supportingEvidenceRefIds", "contradictingEvidenceRefIds", "rationale", "correctionCondition"],
|
|
140
|
+
"properties": {
|
|
141
|
+
"localFindingId": { "$ref": "#/$defs/findingId" },
|
|
142
|
+
"title": { "$ref": "#/$defs/title" },
|
|
143
|
+
"statement": { "$ref": "#/$defs/text" },
|
|
144
|
+
"type": { "enum": ["unsupported", "contradicted", "correlated-reasoning", "missing-alternative", "unpriced-downside", "irreversibility-mismatch", "overconfidence", "scope-violation"] },
|
|
145
|
+
"severity": { "enum": ["low", "medium", "high", "critical"] },
|
|
146
|
+
"confidence": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
147
|
+
"targets": { "type": "array", "minItems": 1, "maxItems": 64, "items": { "$ref": "#/$defs/target" } },
|
|
148
|
+
"supportingEvidenceRefIds": { "$ref": "#/$defs/evidenceRefIds" },
|
|
149
|
+
"contradictingEvidenceRefIds": { "$ref": "#/$defs/evidenceRefIds" },
|
|
150
|
+
"rationale": { "$ref": "#/$defs/text" },
|
|
151
|
+
"correctionCondition": { "$ref": "#/$defs/text" }
|
|
152
|
+
},
|
|
153
|
+
"allOf": [
|
|
154
|
+
{ "if": { "properties": { "type": { "const": "contradicted" } }, "required": ["type"] }, "then": { "properties": { "contradictingEvidenceRefIds": { "minItems": 1 } } } },
|
|
155
|
+
{ "if": { "properties": { "type": { "const": "correlated-reasoning" } }, "required": ["type"] }, "then": { "properties": { "targets": { "minItems": 2 } } } }
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
"missingAlternative": {
|
|
159
|
+
"type": "object", "additionalProperties": false,
|
|
160
|
+
"required": ["localAlternativeId", "title", "description", "targets", "evidenceRefIds", "tradeoffs"],
|
|
161
|
+
"properties": {
|
|
162
|
+
"localAlternativeId": { "$ref": "#/$defs/alternativeId" }, "title": { "$ref": "#/$defs/title" },
|
|
163
|
+
"description": { "$ref": "#/$defs/text" }, "targets": { "type": "array", "minItems": 1, "maxItems": 64, "items": { "$ref": "#/$defs/target" } },
|
|
164
|
+
"evidenceRefIds": { "$ref": "#/$defs/evidenceRefIds" }, "tradeoffs": { "type": "array", "minItems": 1, "maxItems": 64, "items": { "$ref": "#/$defs/text" } }
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"dissent": {
|
|
168
|
+
"type": "object", "additionalProperties": false,
|
|
169
|
+
"required": ["localDissentId", "findingIds", "statement", "evidenceRefIds", "resolutionCondition"],
|
|
170
|
+
"properties": {
|
|
171
|
+
"localDissentId": { "$ref": "#/$defs/dissentId" },
|
|
172
|
+
"findingIds": { "type": "array", "minItems": 1, "maxItems": 256, "uniqueItems": true, "items": { "$ref": "#/$defs/findingId" } },
|
|
173
|
+
"statement": { "$ref": "#/$defs/text" }, "evidenceRefIds": { "$ref": "#/$defs/evidenceRefIds" },
|
|
174
|
+
"resolutionCondition": { "$ref": "#/$defs/text" }
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"gap": {
|
|
178
|
+
"oneOf": [
|
|
179
|
+
{ "$ref": "#/$defs/roleGap" },
|
|
180
|
+
{ "$ref": "#/$defs/evidenceGap" }
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
"roleGap": {
|
|
184
|
+
"type": "object", "additionalProperties": false,
|
|
185
|
+
"required": ["localGapId", "inputAbsenceId", "kind", "roleId", "roleKind", "roleVersion", "sourceAssignmentId", "impact", "recoveryPath"],
|
|
186
|
+
"properties": {
|
|
187
|
+
"localGapId": { "$ref": "#/$defs/gapId" }, "inputAbsenceId": { "$ref": "#/$defs/absenceId" },
|
|
188
|
+
"kind": { "const": "role" }, "roleId": { "$ref": "#/$defs/identifier" },
|
|
189
|
+
"roleKind": { "enum": ["advisor", "challenger", "chair"] }, "roleVersion": { "$ref": "#/$defs/version" },
|
|
190
|
+
"sourceAssignmentId": { "type": ["string", "null"], "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
191
|
+
"impact": { "$ref": "#/$defs/text" }, "recoveryPath": { "$ref": "#/$defs/text" }
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"evidenceGap": {
|
|
195
|
+
"type": "object", "additionalProperties": false,
|
|
196
|
+
"required": ["localGapId", "inputAbsenceId", "kind", "requirementId", "impact", "recoveryPath"],
|
|
197
|
+
"properties": {
|
|
198
|
+
"localGapId": { "$ref": "#/$defs/gapId" }, "inputAbsenceId": { "$ref": "#/$defs/absenceId" },
|
|
199
|
+
"kind": { "const": "evidence" }, "requirementId": { "$ref": "#/$defs/identifier" },
|
|
200
|
+
"impact": { "$ref": "#/$defs/text" }, "recoveryPath": { "$ref": "#/$defs/text" }
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-checkpoint.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-checkpoint", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 runtime checkpoint",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "createdAt", "eventHead", "runtimeStateHash", "eventReplayIndexHash", "recordDigests", "blobHashes", "recoveryVersion"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-checkpoint" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"createdAt": { "type": "string", "format": "date-time" },
|
|
14
|
+
"eventHead": {
|
|
15
|
+
"type": "object", "additionalProperties": false, "required": ["sequence", "hash", "protocolVersions"],
|
|
16
|
+
"properties": {
|
|
17
|
+
"sequence": { "type": "integer", "minimum": 0 },
|
|
18
|
+
"hash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
19
|
+
"protocolVersions": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"minItems": 1,
|
|
22
|
+
"maxItems": 1,
|
|
23
|
+
"items": { "const": "2.0.0" }
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"runtimeStateHash": { "$ref": "#/$defs/hash" },
|
|
28
|
+
"eventReplayIndexHash": {
|
|
29
|
+
"$ref": "#/$defs/hash",
|
|
30
|
+
"description": "SHA-256 JCS digest of the durable runtime state's complete eventReplayIndex at this checkpoint."
|
|
31
|
+
},
|
|
32
|
+
"operationReplayIndexHash": { "$ref": "#/$defs/hash" },
|
|
33
|
+
"authorityHistoryHash": { "$ref": "#/$defs/hash" },
|
|
34
|
+
"recordDigests": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/hash" } },
|
|
35
|
+
"blobHashes": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/hash" } },
|
|
36
|
+
"recoveryVersion": { "type": "string", "minLength": 1, "maxLength": 64 }
|
|
37
|
+
},
|
|
38
|
+
"allOf": [
|
|
39
|
+
{ "if": { "required": ["operationReplayIndexHash"] }, "then": { "required": ["authorityHistoryHash"] } },
|
|
40
|
+
{ "if": { "required": ["authorityHistoryHash"] }, "then": { "required": ["operationReplayIndexHash"] } }
|
|
41
|
+
],
|
|
42
|
+
"$defs": { "hash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" } }
|
|
43
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-claim.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-claim", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 evidence-linked claim",
|
|
6
|
+
"description": "A material claim links typed supporting and/or contradicting EvidenceRefs. It is not arbitrary citation prose.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "claimId", "scopeId", "domainId", "domainVersion", "statement", "epistemicStatus", "confidence", "supportingEvidenceRefIds", "contradictingEvidenceRefIds", "assumptionIds", "changeCondition", "sourceArtifactId", "createdAt"],
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": { "const": "operating-claim" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" }, "claimId": { "$ref": "#/$defs/claimId" }, "scopeId": { "$ref": "#/$defs/id" }, "domainId": { "$ref": "#/$defs/id" }, "domainVersion": { "$ref": "#/$defs/version" }, "statement": { "$ref": "#/$defs/text" }, "epistemicStatus": { "enum": ["known", "strongly-supported", "probable", "speculative", "unknown"] }, "confidence": { "type": "number", "minimum": 0, "maximum": 1 }, "supportingEvidenceRefIds": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } }, "contradictingEvidenceRefIds": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } }, "assumptionIds": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/assumptionId" } }, "changeCondition": { "$ref": "#/$defs/text" }, "sourceArtifactId": { "$ref": "#/$defs/artifactId" }, "createdAt": { "type": "string", "format": "date-time" }
|
|
12
|
+
},
|
|
13
|
+
"allOf": [{ "if": { "properties": { "epistemicStatus": { "enum": ["known", "strongly-supported", "probable"] } } }, "then": { "anyOf": [{ "properties": { "supportingEvidenceRefIds": { "minItems": 1 } } }, { "properties": { "contradictingEvidenceRefIds": { "minItems": 1 } } }] } }],
|
|
14
|
+
"$defs": {
|
|
15
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "assumptionId": { "type": "string", "pattern": "^asm_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "claimId": { "type": "string", "pattern": "^clm_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "id": { "type": "string", "minLength": 1, "maxLength": 128 }, "text": { "type": "string", "minLength": 1, "maxLength": 4096, "pattern": "^[\\s\\S]*\\S[\\s\\S]*$" }, "version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" }
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-connector-checkpoint.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-connector-checkpoint", "version": "2.0.0" },
|
|
5
|
+
"title": "Operating Connector Checkpoint",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "checkpointId", "generation", "lastEventId", "lastEventHash", "state", "requestId", "requestHash", "effect", "provider", "providerRegistrationHash", "adapterVersion", "sourceIdentityHash", "consentRecordId", "consentRecordHash", "consentExpiresAt", "runtimeCapabilityHash", "credentialRefHash", "boundsHash", "queryHash", "windowHash", "health", "redactionVersion", "predecessorDigest", "watermarkDigest", "artifactId", "artifactHash", "absenceDigest", "createdAt", "updatedAt", "checkpointHash"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-connector-checkpoint" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" },
|
|
11
|
+
"checkpointId": { "type": "string", "pattern": "^lchk_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "generation": { "type": "integer", "minimum": 0 }, "lastEventId": { "type": ["string", "null"], "pattern": "^lcev_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "lastEventHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
12
|
+
"state": { "enum": ["prepared", "requesting", "materialized", "committed", "absent", "uncertain"] },
|
|
13
|
+
"requestId": { "type": "string", "pattern": "^lreq_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "requestHash": { "$ref": "#/$defs/hash" }, "effect": { "const": "provider-call" },
|
|
14
|
+
"provider": { "$ref": "#/$defs/versionedId" }, "providerRegistrationHash": { "$ref": "#/$defs/hash" }, "adapterVersion": { "$ref": "#/$defs/version" }, "sourceIdentityHash": { "$ref": "#/$defs/hash" },
|
|
15
|
+
"consentRecordId": { "type": ["string", "null"], "pattern": "^lcon_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "consentRecordHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" }, "consentExpiresAt": { "type": ["string", "null"], "format": "date-time" }, "runtimeCapabilityHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" }, "credentialRefHash": { "$ref": "#/$defs/hash" }, "boundsHash": { "$ref": "#/$defs/hash" }, "queryHash": { "$ref": "#/$defs/hash" }, "windowHash": { "$ref": "#/$defs/hash" }, "health": { "$ref": "#/$defs/health" }, "redactionVersion": { "$ref": "#/$defs/version" },
|
|
16
|
+
"predecessorDigest": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" }, "watermarkDigest": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
17
|
+
"artifactId": { "type": ["string", "null"], "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "artifactHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" }, "absenceDigest": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
18
|
+
"createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "checkpointHash": { "$ref": "#/$defs/hash" }
|
|
19
|
+
},
|
|
20
|
+
"allOf": [
|
|
21
|
+
{ "if": { "properties": { "state": { "const": "prepared" } }, "required": ["state"] }, "then": { "properties": { "consentRecordId": { "const": null }, "consentRecordHash": { "const": null }, "consentExpiresAt": { "const": null }, "runtimeCapabilityHash": { "const": null }, "artifactId": { "const": null }, "artifactHash": { "const": null }, "absenceDigest": { "const": null } } } },
|
|
22
|
+
{ "if": { "properties": { "state": { "enum": ["requesting", "materialized", "committed"] } }, "required": ["state"] }, "then": { "properties": { "consentRecordId": { "type": "string" }, "consentRecordHash": { "type": "string" }, "consentExpiresAt": { "type": "string" }, "runtimeCapabilityHash": { "type": "string" }, "absenceDigest": { "const": null } } } },
|
|
23
|
+
{ "if": { "properties": { "state": { "const": "requesting" } }, "required": ["state"] }, "then": { "properties": { "artifactId": { "const": null }, "artifactHash": { "const": null } } } },
|
|
24
|
+
{ "if": { "properties": { "state": { "enum": ["materialized", "committed"] } }, "required": ["state"] }, "then": { "properties": { "health": { "properties": { "status": { "const": "available" } } }, "artifactId": { "type": "string" }, "artifactHash": { "type": "string" } } } },
|
|
25
|
+
{ "if": { "properties": { "state": { "enum": ["absent", "uncertain"] } }, "required": ["state"] }, "then": { "properties": { "artifactId": { "const": null }, "artifactHash": { "const": null }, "absenceDigest": { "type": "string" } } } }
|
|
26
|
+
],
|
|
27
|
+
"$defs": { "id": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" }, "version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" }, "hash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }, "versionedId": { "type": "object", "additionalProperties": false, "required": ["id", "version"], "properties": { "id": { "$ref": "#/$defs/id" }, "version": { "$ref": "#/$defs/version" } } }, "health": { "type": "object", "additionalProperties": false, "required": ["status", "checkedAt", "freshUntil", "proofDigest"], "properties": { "status": { "enum": ["available", "degraded", "unavailable"] }, "checkedAt": { "type": "string", "format": "date-time" }, "freshUntil": { "type": "string", "format": "date-time" }, "proofDigest": { "$ref": "#/$defs/hash" } } } }
|
|
28
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-context-capture.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-context-capture", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 context-capture result",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "contextKind", "scope"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-context-capture" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"contextKind": { "enum": ["cycle-evidence", "cycle-manifest"] },
|
|
14
|
+
"scope": { "$ref": "#/$defs/scope" },
|
|
15
|
+
"focus": {
|
|
16
|
+
"type": "array", "uniqueItems": true,
|
|
17
|
+
"items": { "type": "string", "minLength": 1, "maxLength": 128 }
|
|
18
|
+
},
|
|
19
|
+
"trigger": { "$ref": "./operating-cycle.schema.json#/properties/trigger" },
|
|
20
|
+
"evidenceCandidates": {
|
|
21
|
+
"type": "array", "uniqueItems": true,
|
|
22
|
+
"items": { "$ref": "./operating-evidence-candidate.schema.json" }
|
|
23
|
+
},
|
|
24
|
+
"evidenceClaimLinks": {
|
|
25
|
+
"type": "array", "uniqueItems": true,
|
|
26
|
+
"items": { "$ref": "#/$defs/evidenceClaimLink" }
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"allOf": [
|
|
30
|
+
{
|
|
31
|
+
"if": { "properties": { "contextKind": { "const": "cycle-evidence" } }, "required": ["contextKind"] },
|
|
32
|
+
"then": {
|
|
33
|
+
"required": ["focus", "trigger"],
|
|
34
|
+
"allOf": [
|
|
35
|
+
{ "not": { "required": ["evidenceCandidates"] } },
|
|
36
|
+
{ "not": { "required": ["evidenceClaimLinks"] } }
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"if": { "properties": { "contextKind": { "const": "cycle-manifest" } }, "required": ["contextKind"] },
|
|
42
|
+
"then": {
|
|
43
|
+
"required": ["evidenceCandidates", "evidenceClaimLinks"],
|
|
44
|
+
"allOf": [
|
|
45
|
+
{ "not": { "required": ["focus"] } },
|
|
46
|
+
{ "not": { "required": ["trigger"] } }
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"$defs": {
|
|
52
|
+
"scope": {
|
|
53
|
+
"type": "object",
|
|
54
|
+
"additionalProperties": false,
|
|
55
|
+
"required": ["scopeId", "domainId", "domainVersion"],
|
|
56
|
+
"properties": {
|
|
57
|
+
"scopeId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
58
|
+
"domainId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
59
|
+
"domainVersion": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" }
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"evidenceClaimLink": {
|
|
63
|
+
"type": "object",
|
|
64
|
+
"additionalProperties": false,
|
|
65
|
+
"required": ["sourceArtifactId", "localClaimId", "relation", "confidence"],
|
|
66
|
+
"properties": {
|
|
67
|
+
"sourceArtifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
68
|
+
"localClaimId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
69
|
+
"relation": { "enum": ["supportedBy", "contradictedBy"] },
|
|
70
|
+
"confidence": { "type": "number", "minimum": 0, "maximum": 1 }
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-cycle-input-binding.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-cycle-input-binding", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 cycle input binding",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "inputBindingId", "cycleId", "scopeId", "domainId", "domainVersion", "sourceArtifactIds", "runtimeBinding", "capturedAt"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-cycle-input-binding" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"inputBindingId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
14
|
+
"cycleId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
15
|
+
"scopeId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
16
|
+
"domainId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
17
|
+
"domainVersion": { "type": "string", "minLength": 1, "maxLength": 64 },
|
|
18
|
+
"sourceArtifactIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } },
|
|
19
|
+
"runtimeBinding": {
|
|
20
|
+
"type": "object",
|
|
21
|
+
"additionalProperties": false,
|
|
22
|
+
"required": ["runtime", "adapterVersion"],
|
|
23
|
+
"properties": {
|
|
24
|
+
"runtime": { "type": "string", "enum": ["codex", "claude-code", "cursor"] },
|
|
25
|
+
"adapterVersion": { "type": "string", "minLength": 1, "maxLength": 64 }
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"capturedAt": { "type": "string", "format": "date-time" }
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-cycle.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-cycle", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 Phase 1 operating cycle",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "cycleId", "scopeId", "domainId", "domainVersion", "state", "inputBindingId", "contractVersions", "trigger", "focus", "health", "activeReviewId", "createdAt", "updatedAt"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-cycle" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"cycleId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
14
|
+
"scopeId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
15
|
+
"domainId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
16
|
+
"domainVersion": { "type": "string", "minLength": 1, "maxLength": 64 },
|
|
17
|
+
"state": { "type": "string", "enum": ["created", "observing", "advising", "challenging", "synthesizing", "awaiting_review", "approved", "executing", "verifying", "closed", "blocked", "failed", "cancelled"] },
|
|
18
|
+
"inputBindingId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
19
|
+
"contractVersions": { "type": "object", "additionalProperties": { "type": "string", "minLength": 1 } },
|
|
20
|
+
"trigger": {
|
|
21
|
+
"type": "object",
|
|
22
|
+
"additionalProperties": false,
|
|
23
|
+
"required": ["kind"],
|
|
24
|
+
"properties": { "kind": { "const": "manual" } }
|
|
25
|
+
},
|
|
26
|
+
"focus": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1, "maxLength": 128 } },
|
|
27
|
+
"health": { "type": "string", "enum": ["normal", "quiet", "partial", "blocked"] },
|
|
28
|
+
"activeReviewId": { "type": ["string", "null"], "pattern": "^rev_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
29
|
+
"createdAt": { "type": "string", "format": "date-time" },
|
|
30
|
+
"updatedAt": { "type": "string", "format": "date-time" },
|
|
31
|
+
"closedAt": { "type": ["string", "null"], "format": "date-time" }
|
|
32
|
+
},
|
|
33
|
+
"allOf": [
|
|
34
|
+
{
|
|
35
|
+
"if": { "properties": { "state": { "const": "closed" } } },
|
|
36
|
+
"then": {
|
|
37
|
+
"required": ["closedAt"],
|
|
38
|
+
"properties": { "activeReviewId": { "const": null }, "closedAt": { "type": "string", "format": "date-time" } }
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|