@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,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-evidence-candidate.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-evidence-candidate", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 evidence candidate",
|
|
6
|
+
"description": "An untrusted, source-Artifact-local request that only the runtime may resolve. It is not evidence, an Artifact, an Event, or a durable Claim.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "candidateId", "scopeId", "domainId", "domainVersion", "sourceArtifactId", "evidenceKind", "locator", "provider", "resolver"],
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": { "const": "operating-evidence-candidate" },
|
|
12
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
13
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
14
|
+
"candidateId": { "$ref": "#/$defs/candidateId" },
|
|
15
|
+
"scopeId": { "$ref": "#/$defs/identifier" },
|
|
16
|
+
"domainId": { "$ref": "#/$defs/identifier" },
|
|
17
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
18
|
+
"sourceArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
19
|
+
"evidenceKind": { "$ref": "#/$defs/evidenceKind" },
|
|
20
|
+
"locator": {},
|
|
21
|
+
"provider": { "$ref": "#/$defs/implementationRef" },
|
|
22
|
+
"resolver": { "$ref": "#/$defs/implementationRef" }
|
|
23
|
+
},
|
|
24
|
+
"allOf": [
|
|
25
|
+
{ "if": { "properties": { "evidenceKind": { "const": "git" } } }, "then": { "properties": { "locator": { "$ref": "#/$defs/gitLocator" } } } },
|
|
26
|
+
{ "if": { "properties": { "evidenceKind": { "const": "filesystem" } } }, "then": { "properties": { "locator": { "$ref": "#/$defs/filesystemLocator" } } } },
|
|
27
|
+
{ "if": { "properties": { "evidenceKind": { "const": "planr" } } }, "then": { "properties": { "locator": { "$ref": "#/$defs/planrLocator" } } } },
|
|
28
|
+
{ "if": { "properties": { "evidenceKind": { "const": "operate-artifact" } } }, "then": { "properties": { "locator": { "$ref": "#/$defs/operateArtifactLocator" } } } }
|
|
29
|
+
],
|
|
30
|
+
"$defs": {
|
|
31
|
+
"identifier": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
32
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" },
|
|
33
|
+
"candidateId": { "type": "string", "pattern": "^evc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
34
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
35
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
36
|
+
"safeRelativePath": { "type": "string", "minLength": 1, "maxLength": 1024, "pattern": "^(?!/)(?!.*(?:^|/)\\.\\.(?:/|$))[A-Za-z0-9.][A-Za-z0-9._/-]*$" },
|
|
37
|
+
"evidenceKind": { "enum": ["git", "filesystem", "planr", "operate-artifact"] },
|
|
38
|
+
"implementationRef": {
|
|
39
|
+
"type": "object", "additionalProperties": false, "required": ["id", "version"],
|
|
40
|
+
"properties": { "id": { "$ref": "#/$defs/identifier" }, "version": { "$ref": "#/$defs/version" } }
|
|
41
|
+
},
|
|
42
|
+
"gitLocator": {
|
|
43
|
+
"type": "object", "additionalProperties": false, "required": ["repositoryId", "revision"],
|
|
44
|
+
"properties": {
|
|
45
|
+
"repositoryId": { "$ref": "#/$defs/identifier" },
|
|
46
|
+
"revision": { "type": "string", "minLength": 1, "maxLength": 256, "pattern": "^[A-Za-z0-9][A-Za-z0-9._/@+-]*$" },
|
|
47
|
+
"objectType": { "enum": ["commit", "tree", "blob", "tag"] },
|
|
48
|
+
"path": { "$ref": "#/$defs/safeRelativePath" },
|
|
49
|
+
"lines": {
|
|
50
|
+
"type": "object", "additionalProperties": false, "required": ["start", "end"],
|
|
51
|
+
"properties": { "start": { "type": "integer", "minimum": 1 }, "end": { "type": "integer", "minimum": 1 } }
|
|
52
|
+
},
|
|
53
|
+
"ancestry": {
|
|
54
|
+
"type": "object", "additionalProperties": false, "required": ["ancestorRevision"],
|
|
55
|
+
"properties": { "ancestorRevision": { "type": "string", "minLength": 1, "maxLength": 256, "pattern": "^[A-Za-z0-9][A-Za-z0-9._/@+-]*$" } }
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"allOf": [
|
|
59
|
+
{ "if": { "required": ["lines"] }, "then": { "required": ["path"] } }
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"filesystemLocator": {
|
|
63
|
+
"type": "object", "additionalProperties": false, "required": ["sourceRootId", "path"],
|
|
64
|
+
"properties": { "sourceRootId": { "$ref": "#/$defs/identifier" }, "path": { "$ref": "#/$defs/safeRelativePath" } }
|
|
65
|
+
},
|
|
66
|
+
"planrLocator": {
|
|
67
|
+
"type": "object", "additionalProperties": false, "required": ["projectId", "artifactId", "artifactType"],
|
|
68
|
+
"properties": {
|
|
69
|
+
"projectId": { "$ref": "#/$defs/identifier" },
|
|
70
|
+
"artifactId": { "type": "string", "minLength": 1, "maxLength": 128, "pattern": "^[A-Za-z][A-Za-z0-9._-]*$" },
|
|
71
|
+
"artifactType": { "$ref": "#/$defs/identifier" },
|
|
72
|
+
"path": { "$ref": "#/$defs/safeRelativePath" },
|
|
73
|
+
"contentHash": { "$ref": "#/$defs/digest" }
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"operateArtifactLocator": {
|
|
77
|
+
"type": "object", "additionalProperties": false, "required": ["artifactId", "expectedArtifactType", "expectedSchemaId", "expectedSchemaVersion"],
|
|
78
|
+
"properties": {
|
|
79
|
+
"artifactId": { "$ref": "#/$defs/artifactId" },
|
|
80
|
+
"expectedArtifactType": { "$ref": "#/$defs/identifier" },
|
|
81
|
+
"expectedSchemaId": { "$ref": "#/$defs/identifier" },
|
|
82
|
+
"expectedSchemaVersion": { "$ref": "#/$defs/version" },
|
|
83
|
+
"expectedRawHash": { "$ref": "#/$defs/digest" },
|
|
84
|
+
"expectedCanonicalHash": { "$ref": "#/$defs/digest" }
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-evidence-edge.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-evidence-edge", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 source-Artifact-local evidence edge",
|
|
6
|
+
"description": "A read-only proof link from a local claim proposal to a resolved EvidenceRef. It is not a durable Claim, Finding, Decision, Action, policy, approval, or executor record.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "edgeId", "scopeId", "domainId", "domainVersion", "sourceArtifactId", "localClaimId", "relation", "evidenceRefId", "createdBy", "createdAt", "confidence", "classification"],
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": { "const": "operating-evidence-edge" },
|
|
12
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
13
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
14
|
+
"edgeId": { "$ref": "#/$defs/edgeId" },
|
|
15
|
+
"scopeId": { "$ref": "#/$defs/identifier" },
|
|
16
|
+
"domainId": { "$ref": "#/$defs/identifier" },
|
|
17
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
18
|
+
"sourceArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
19
|
+
"localClaimId": { "$ref": "#/$defs/localClaimId" },
|
|
20
|
+
"relation": { "enum": ["supportedBy", "contradictedBy"] },
|
|
21
|
+
"evidenceRefId": { "$ref": "#/$defs/evidenceRefId" },
|
|
22
|
+
"createdBy": { "$ref": "#/$defs/runtimeActor" },
|
|
23
|
+
"createdAt": { "type": "string", "format": "date-time" },
|
|
24
|
+
"confidence": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
25
|
+
"classification": { "enum": ["public", "internal", "confidential", "restricted"] }
|
|
26
|
+
},
|
|
27
|
+
"$defs": {
|
|
28
|
+
"identifier": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
29
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" },
|
|
30
|
+
"edgeId": { "type": "string", "pattern": "^eve_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
31
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
32
|
+
"evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
33
|
+
"localClaimId": { "type": "string", "pattern": "^local-claim-[A-Za-z0-9][A-Za-z0-9._-]{0,119}$" },
|
|
34
|
+
"runtimeActor": {
|
|
35
|
+
"type": "object", "additionalProperties": false, "required": ["kind", "id"],
|
|
36
|
+
"properties": { "kind": { "const": "runtime" }, "id": { "type": "string", "minLength": 1, "maxLength": 128 } }
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-evidence-graph.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-evidence-graph", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 rebuildable evidence graph",
|
|
6
|
+
"description": "A read-only scope/domain projection containing resolved EvidenceRefs and source-Artifact-local support or contradiction edges only.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "scopeId", "domainId", "domainVersion", "generatedAt", "evidenceRefs", "edges"],
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": { "const": "operating-evidence-graph" },
|
|
12
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
13
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
14
|
+
"scopeId": { "$ref": "#/$defs/identifier" },
|
|
15
|
+
"domainId": { "$ref": "#/$defs/identifier" },
|
|
16
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
17
|
+
"generatedAt": { "type": "string", "format": "date-time" },
|
|
18
|
+
"evidenceRefs": { "type": "array", "uniqueItems": true, "items": { "$ref": "operating-evidence-ref.schema.json" } },
|
|
19
|
+
"edges": { "type": "array", "uniqueItems": true, "items": { "$ref": "operating-evidence-edge.schema.json" } }
|
|
20
|
+
},
|
|
21
|
+
"$defs": {
|
|
22
|
+
"identifier": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
23
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" }
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-evidence-observation.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-evidence-observation", "version": "2.0.0" },
|
|
5
|
+
"title": "Operating Evidence Observation",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "evidenceObservationId", "measurementPlan", "metricId", "metricObservation", "provider", "providerRegistrationHash", "checkpoint", "ingestion", "artifact", "evidenceRefs", "value", "unit", "dimension", "observedAt", "freshUntil", "classification", "status", "providerConfidence", "absences", "contradictions", "observationHash"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-evidence-observation" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"evidenceObservationId": { "type": "string", "pattern": "^eobs_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
14
|
+
"measurementPlan": { "allOf": [{ "$ref": "#/$defs/recordRef" }, { "properties": { "contractId": { "const": "operating-measurement-plan" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" }, "recordId": { "type": "string", "pattern": "^mpln_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } } }] },
|
|
15
|
+
"metricId": { "type": "string", "pattern": "^met_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
16
|
+
"metricObservation": { "oneOf": [{ "type": "null" }, { "allOf": [{ "$ref": "#/$defs/recordRef" }, { "properties": { "contractId": { "const": "operating-metric-observation" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" }, "recordId": { "type": "string", "pattern": "^mob_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } } }] }] },
|
|
17
|
+
"provider": { "$ref": "#/$defs/versionedId" },
|
|
18
|
+
"providerRegistrationHash": { "$ref": "#/$defs/hash" },
|
|
19
|
+
"checkpoint": { "type": "object", "additionalProperties": false, "required": ["checkpointId", "checkpointHash"], "properties": { "checkpointId": { "type": "string", "pattern": "^lchk_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "checkpointHash": { "$ref": "#/$defs/hash" } } },
|
|
20
|
+
"ingestion": { "type": "object", "additionalProperties": false, "required": ["ingestionId", "ingestionHash"], "properties": { "ingestionId": { "type": "string", "pattern": "^ling_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "ingestionHash": { "$ref": "#/$defs/hash" } } },
|
|
21
|
+
"artifact": { "type": "object", "additionalProperties": false, "required": ["artifactId", "recordDigest"], "properties": { "artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "recordDigest": { "$ref": "#/$defs/hash" } } },
|
|
22
|
+
"evidenceRefs": { "type": "array", "minItems": 1, "maxItems": 128, "uniqueItems": true, "items": { "type": "object", "additionalProperties": false, "required": ["evidenceRefId", "recordDigest"], "properties": { "evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "recordDigest": { "$ref": "#/$defs/hash" } } } },
|
|
23
|
+
"value": { "type": ["number", "null"] },
|
|
24
|
+
"unit": { "$ref": "#/$defs/id" },
|
|
25
|
+
"dimension": { "$ref": "#/$defs/id" },
|
|
26
|
+
"observedAt": { "type": "string", "format": "date-time" },
|
|
27
|
+
"freshUntil": { "type": "string", "format": "date-time" },
|
|
28
|
+
"classification": { "enum": ["public", "internal", "confidential", "restricted"] },
|
|
29
|
+
"status": { "enum": ["observed", "absent", "contradicted"] },
|
|
30
|
+
"providerConfidence": { "type": ["number", "null"], "minimum": 0, "maximum": 1 },
|
|
31
|
+
"absences": { "type": "array", "maxItems": 32, "items": { "$ref": "#/$defs/absence" } },
|
|
32
|
+
"contradictions": { "type": "array", "maxItems": 32, "uniqueItems": true, "items": { "$ref": "#/$defs/hash" } },
|
|
33
|
+
"observationHash": { "$ref": "#/$defs/hash" }
|
|
34
|
+
},
|
|
35
|
+
"allOf": [
|
|
36
|
+
{ "if": { "properties": { "status": { "const": "observed" } }, "required": ["status"] }, "then": { "properties": { "metricObservation": { "type": "object" }, "value": { "type": "number" }, "absences": { "maxItems": 0 }, "contradictions": { "maxItems": 0 } } } },
|
|
37
|
+
{ "if": { "properties": { "status": { "const": "absent" } }, "required": ["status"] }, "then": { "properties": { "metricObservation": { "const": null }, "value": { "const": null }, "absences": { "minItems": 1 }, "contradictions": { "maxItems": 0 } } } },
|
|
38
|
+
{ "if": { "properties": { "status": { "const": "contradicted" } }, "required": ["status"] }, "then": { "properties": { "metricObservation": { "const": null }, "contradictions": { "minItems": 1 } } } }
|
|
39
|
+
],
|
|
40
|
+
"$defs": {
|
|
41
|
+
"id": { "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
|
+
"hash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
44
|
+
"versionedId": { "type": "object", "additionalProperties": false, "required": ["id", "version"], "properties": { "id": { "$ref": "#/$defs/id" }, "version": { "$ref": "#/$defs/version" } } },
|
|
45
|
+
"recordRef": { "type": "object", "additionalProperties": false, "required": ["contractId", "schemaVersion", "protocolVersion", "recordId", "recordDigest"], "properties": { "contractId": { "$ref": "#/$defs/id" }, "schemaVersion": { "$ref": "#/$defs/version" }, "protocolVersion": { "$ref": "#/$defs/version" }, "recordId": { "type": "string", "minLength": 1, "maxLength": 128 }, "recordDigest": { "$ref": "#/$defs/hash" } } },
|
|
46
|
+
"absence": { "type": "object", "additionalProperties": false, "required": ["kind", "reasonCode", "detailsHash"], "properties": { "kind": { "enum": ["missing-consent", "missing-credential", "stale", "unhealthy", "provider-unavailable", "rate-limited", "insufficient-evidence", "unsupported"] }, "reasonCode": { "type": "string", "pattern": "^[A-Z][A-Z0-9_]*$" }, "detailsHash": { "$ref": "#/$defs/hash" } } }
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-evidence-ref.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-evidence-ref", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 resolved evidence reference",
|
|
6
|
+
"description": "Runtime-issued, immutable evidence identity. Its sourceContract is asserted by the selected registered resolver after validating the captured bytes; an untrusted candidate or locator cannot author it.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "evidenceRefId", "candidateId", "scopeId", "domainId", "domainVersion", "sourceArtifactId", "evidenceKind", "sourceContract", "locator", "provider", "resolver", "classification", "freshness", "evidenceArtifactId", "evidenceArtifactRawHash", "evidenceArtifactCanonicalHash", "resolvedAt"],
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": { "const": "operating-evidence-ref" },
|
|
12
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
13
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
14
|
+
"evidenceRefId": { "$ref": "#/$defs/evidenceRefId" },
|
|
15
|
+
"candidateId": { "$ref": "#/$defs/candidateId" },
|
|
16
|
+
"scopeId": { "$ref": "#/$defs/identifier" },
|
|
17
|
+
"domainId": { "$ref": "#/$defs/identifier" },
|
|
18
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
19
|
+
"sourceArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
20
|
+
"evidenceKind": { "$ref": "#/$defs/evidenceKind" },
|
|
21
|
+
"sourceContract": { "$ref": "#/$defs/sourceContract" },
|
|
22
|
+
"locator": {},
|
|
23
|
+
"provider": { "$ref": "operating-evidence-candidate.schema.json#/$defs/implementationRef" },
|
|
24
|
+
"resolver": { "$ref": "operating-evidence-candidate.schema.json#/$defs/implementationRef" },
|
|
25
|
+
"classification": { "enum": ["public", "internal", "confidential", "restricted"] },
|
|
26
|
+
"freshness": { "enum": ["current", "historical", "stale"] },
|
|
27
|
+
"evidenceArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
28
|
+
"evidenceArtifactRawHash": { "$ref": "#/$defs/digest" },
|
|
29
|
+
"evidenceArtifactCanonicalHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
30
|
+
"resolvedAt": { "type": "string", "format": "date-time" }
|
|
31
|
+
},
|
|
32
|
+
"allOf": [
|
|
33
|
+
{ "if": { "properties": { "evidenceKind": { "const": "git" } } }, "then": { "properties": { "locator": { "$ref": "operating-evidence-candidate.schema.json#/$defs/gitLocator" } } } },
|
|
34
|
+
{ "if": { "properties": { "evidenceKind": { "const": "filesystem" } } }, "then": { "properties": { "locator": { "$ref": "operating-evidence-candidate.schema.json#/$defs/filesystemLocator" } } } },
|
|
35
|
+
{ "if": { "properties": { "evidenceKind": { "const": "planr" } } }, "then": { "properties": { "locator": { "$ref": "operating-evidence-candidate.schema.json#/$defs/planrLocator" } } } },
|
|
36
|
+
{ "if": { "properties": { "evidenceKind": { "const": "operate-artifact" } } }, "then": { "properties": { "locator": { "$ref": "operating-evidence-candidate.schema.json#/$defs/operateArtifactLocator" } } } }
|
|
37
|
+
],
|
|
38
|
+
"$defs": {
|
|
39
|
+
"identifier": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
40
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" },
|
|
41
|
+
"candidateId": { "type": "string", "pattern": "^evc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
42
|
+
"evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
43
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
44
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
45
|
+
"evidenceKind": { "enum": ["git", "filesystem", "planr", "operate-artifact"] },
|
|
46
|
+
"sourceContract": {
|
|
47
|
+
"type": "object", "additionalProperties": false, "required": ["id", "version"],
|
|
48
|
+
"properties": { "id": { "$ref": "#/$defs/identifier" }, "version": { "$ref": "#/$defs/version" } }
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-evidence-resolution.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-evidence-resolution", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 evidence resolution outcome",
|
|
6
|
+
"description": "Runtime-owned outcome envelope. A rejection contains safe structured context only; a resolution binds one immutable evidence Artifact.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "resolutionId", "candidateId", "scopeId", "domainId", "domainVersion", "sourceArtifactId", "evidenceKind", "sourceContract", "provider", "resolver", "outcome", "evidenceRefId", "evidenceArtifactId", "error", "resolvedAt"],
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": { "const": "operating-evidence-resolution" },
|
|
12
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
13
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
14
|
+
"resolutionId": { "$ref": "#/$defs/resolutionId" },
|
|
15
|
+
"candidateId": { "$ref": "#/$defs/candidateId" },
|
|
16
|
+
"scopeId": { "$ref": "#/$defs/identifier" },
|
|
17
|
+
"domainId": { "$ref": "#/$defs/identifier" },
|
|
18
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
19
|
+
"sourceArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
20
|
+
"evidenceKind": { "enum": ["git", "filesystem", "planr", "operate-artifact"] },
|
|
21
|
+
"sourceContract": { "oneOf": [{ "type": "null" }, { "$ref": "#/$defs/sourceContract" }] },
|
|
22
|
+
"provider": { "$ref": "operating-evidence-candidate.schema.json#/$defs/implementationRef" },
|
|
23
|
+
"resolver": { "$ref": "operating-evidence-candidate.schema.json#/$defs/implementationRef" },
|
|
24
|
+
"outcome": { "enum": ["resolved", "rejected"] },
|
|
25
|
+
"evidenceRefId": { "type": ["string", "null"], "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
26
|
+
"evidenceArtifactId": { "type": ["string", "null"], "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
27
|
+
"error": { "type": ["object", "null"], "additionalProperties": false, "required": ["code", "retryable", "context"], "properties": { "code": { "$ref": "#/$defs/errorCode" }, "retryable": { "type": "boolean" }, "context": { "$ref": "#/$defs/safeErrorContext" } } },
|
|
28
|
+
"resolvedAt": { "type": "string", "format": "date-time" }
|
|
29
|
+
},
|
|
30
|
+
"allOf": [
|
|
31
|
+
{ "if": { "properties": { "outcome": { "const": "resolved" } } }, "then": { "properties": { "sourceContract": { "$ref": "#/$defs/sourceContract" }, "evidenceRefId": { "type": "string" }, "evidenceArtifactId": { "type": "string" }, "error": { "const": null } } } },
|
|
32
|
+
{ "if": { "properties": { "outcome": { "const": "rejected" } } }, "then": { "properties": { "sourceContract": { "const": null }, "evidenceRefId": { "const": null }, "evidenceArtifactId": { "const": null }, "error": { "type": "object" } } } }
|
|
33
|
+
],
|
|
34
|
+
"$defs": {
|
|
35
|
+
"identifier": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
36
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" },
|
|
37
|
+
"resolutionId": { "type": "string", "pattern": "^evs_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
38
|
+
"candidateId": { "type": "string", "pattern": "^evc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
39
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
40
|
+
"sourceContract": { "type": "object", "additionalProperties": false, "required": ["id", "version"], "properties": { "id": { "$ref": "#/$defs/identifier" }, "version": { "$ref": "#/$defs/version" } } },
|
|
41
|
+
"errorCode": { "enum": ["SOURCE_NOT_FOUND", "REVISION_NOT_FOUND", "OBJECT_TYPE_MISMATCH", "PATH_NOT_FOUND", "LINE_RANGE_INVALID", "ANCESTRY_MISMATCH", "ARTIFACT_NOT_FOUND", "ARTIFACT_HASH_MISMATCH", "SOURCE_UNTRACKED", "SOURCE_STALE", "CAPABILITY_DENIED", "CONSENT_REQUIRED", "SENSITIVITY_BLOCKED", "SECRET_DETECTED", "UNSUPPORTED_EVIDENCE_KIND", "EVIDENCE_PROVIDER_UNAVAILABLE", "EVIDENCE_RESOLVER_UNREGISTERED", "EVIDENCE_RESOLVER_UNAVAILABLE", "EVIDENCE_RESOLVER_VERSION_UNSUPPORTED", "EVIDENCE_SOURCE_SCOPE_MISMATCH", "EVIDENCE_LOCATOR_INVALID"] },
|
|
42
|
+
"safeErrorContext": {
|
|
43
|
+
"type": "object", "additionalProperties": false,
|
|
44
|
+
"properties": {
|
|
45
|
+
"evidenceKind": { "enum": ["git", "filesystem", "planr", "operate-artifact"] },
|
|
46
|
+
"repositoryId": { "$ref": "#/$defs/identifier" },
|
|
47
|
+
"sourceRootId": { "$ref": "#/$defs/identifier" },
|
|
48
|
+
"projectId": { "$ref": "#/$defs/identifier" },
|
|
49
|
+
"artifactId": { "$ref": "#/$defs/artifactId" },
|
|
50
|
+
"resolverId": { "$ref": "#/$defs/identifier" }
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-execution-result.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-execution-result", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 execution result",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "resultId", "operationId", "operationKind", "requestFingerprint", "action", "assignmentId", "evaluationId", "approvalIds", "grantId", "capability", "target", "effectClass", "executor", "connector", "status", "targetBeforeHash", "targetAfterHash", "baselineArtifactId", "baselineHash", "inputArtifactIds", "outputArtifactIds", "effectSummary", "resultArtifactId", "verificationPlanId", "rollbackPlanId", "eventIds", "completedAt", "resultHash"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-execution-result" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" },
|
|
11
|
+
"resultId": { "type": "string", "pattern": "^xres_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "operationId": { "type": "string", "pattern": "^op_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "operationKind": { "const": "execute" }, "requestFingerprint": { "$ref": "#/$defs/hash" },
|
|
12
|
+
"action": { "$ref": "#/$defs/action" }, "assignmentId": { "type": "string", "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "evaluationId": { "type": "string", "pattern": "^pevl_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "approvalIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "pattern": "^aprv_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } }, "grantId": { "type": "string", "pattern": "^cgr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
13
|
+
"capability": { "$ref": "#/$defs/versionedId" }, "target": { "$ref": "#/$defs/target" }, "effectClass": { "$ref": "#/$defs/effect" }, "executor": { "$ref": "#/$defs/executor" }, "connector": { "oneOf": [{ "type": "null" }, { "$ref": "#/$defs/versionedId" }] },
|
|
14
|
+
"status": { "enum": ["succeeded", "failed", "partial", "uncertain", "blocked"] }, "targetBeforeHash": { "$ref": "#/$defs/hash" }, "targetAfterHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" }, "baselineArtifactId": { "type": ["string", "null"], "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "baselineHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
15
|
+
"inputArtifactIds": { "$ref": "#/$defs/artifactIds" }, "outputArtifactIds": { "$ref": "#/$defs/artifactIds" }, "effectSummary": { "$ref": "#/$defs/effectSummary" }, "resultArtifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "verificationPlanId": { "type": "string", "pattern": "^vfy_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "rollbackPlanId": { "type": ["string", "null"], "pattern": "^rbp_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "eventIds": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "pattern": "^evt_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } }, "completedAt": { "type": "string", "format": "date-time" }, "resultHash": { "$ref": "#/$defs/hash" }
|
|
16
|
+
},
|
|
17
|
+
"$defs": {
|
|
18
|
+
"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}$" }, "effect": { "enum": ["read-only", "machine-local-write", "project-write", "provider-call", "external-effect", "destructive"] },
|
|
19
|
+
"versionedId": { "type": "object", "additionalProperties": false, "required": ["id", "version"], "properties": { "id": { "$ref": "#/$defs/id" }, "version": { "$ref": "#/$defs/version" } } }, "artifactIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } },
|
|
20
|
+
"action": { "type": "object", "additionalProperties": false, "required": ["actionId", "revision", "actionHash"], "properties": { "actionId": { "type": "string", "pattern": "^act_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "revision": { "type": "integer", "minimum": 1 }, "actionHash": { "$ref": "#/$defs/hash" } } }, "target": { "type": "object", "additionalProperties": false, "required": ["kind", "id", "revision"], "properties": { "kind": { "$ref": "#/$defs/id" }, "id": { "type": "string", "minLength": 1, "maxLength": 128 }, "revision": { "type": "string", "minLength": 1, "maxLength": 128 } } }, "executor": { "type": "object", "additionalProperties": false, "required": ["executorId", "executorVersion"], "properties": { "executorId": { "$ref": "#/$defs/id" }, "executorVersion": { "$ref": "#/$defs/version" } } },
|
|
21
|
+
"effectSummary": { "type": "object", "additionalProperties": false, "required": ["changed", "summary", "affectedTargetIds"], "properties": { "changed": { "type": "boolean" }, "summary": { "type": "string", "minLength": 1, "maxLength": 2048 }, "affectedTargetIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1, "maxLength": 128 } } } }
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-executive-board.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-executive-board", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 transition-owned Executive Board",
|
|
6
|
+
"description": "Closed identity projection over Chair-to-Review truth. New Cycles persist the materialized variant in the atomic transition; old Cycles use the non-authoritative compatibility variant only in memory. Presentation labels and narrative remain derived from durable sources.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": [
|
|
10
|
+
"kind", "schemaVersion", "protocolVersion", "boardId", "scopeId", "domainId",
|
|
11
|
+
"domainVersion", "cycleId", "planId", "ledgerId", "reviewId", "reviewHash", "projectionMode",
|
|
12
|
+
"authoritativeForMutation", "sourceEventHead", "materializedEventId", "seatBindings",
|
|
13
|
+
"findingIds", "decisionIds", "actionIds", "traceMatrix", "createdAt", "semanticHash", "boardHash"
|
|
14
|
+
],
|
|
15
|
+
"properties": {
|
|
16
|
+
"kind": { "const": "operating-executive-board" },
|
|
17
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
18
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
19
|
+
"boardId": { "type": "string", "pattern": "^xbr_[a-f0-9]{32}$" },
|
|
20
|
+
"scopeId": { "$ref": "#/$defs/id" },
|
|
21
|
+
"domainId": { "const": "business" },
|
|
22
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
23
|
+
"cycleId": { "$ref": "#/$defs/id" },
|
|
24
|
+
"planId": { "$ref": "#/$defs/id" },
|
|
25
|
+
"ledgerId": { "$ref": "#/$defs/id" },
|
|
26
|
+
"reviewId": { "$ref": "#/$defs/id" },
|
|
27
|
+
"reviewHash": { "$ref": "#/$defs/hash" },
|
|
28
|
+
"projectionMode": { "enum": ["materialized", "compatibility"] },
|
|
29
|
+
"authoritativeForMutation": { "type": "boolean" },
|
|
30
|
+
"sourceEventHead": { "$ref": "operating-trace-matrix.schema.json#/$defs/eventHead" },
|
|
31
|
+
"materializedEventId": { "type": ["string", "null"], "minLength": 1, "maxLength": 128 },
|
|
32
|
+
"seatBindings": {
|
|
33
|
+
"type": "array", "minItems": 1, "maxItems": 16,
|
|
34
|
+
"items": { "$ref": "#/$defs/seatBinding" }
|
|
35
|
+
},
|
|
36
|
+
"findingIds": { "type": "array", "maxItems": 256, "uniqueItems": true, "items": { "$ref": "#/$defs/id" } },
|
|
37
|
+
"decisionIds": { "type": "array", "maxItems": 256, "uniqueItems": true, "items": { "$ref": "#/$defs/id" } },
|
|
38
|
+
"actionIds": { "type": "array", "maxItems": 256, "uniqueItems": true, "items": { "$ref": "#/$defs/id" } },
|
|
39
|
+
"traceMatrix": { "$ref": "operating-trace-matrix.schema.json" },
|
|
40
|
+
"createdAt": { "type": "string", "format": "date-time" },
|
|
41
|
+
"semanticHash": { "$ref": "#/$defs/hash" },
|
|
42
|
+
"boardHash": { "$ref": "#/$defs/hash" }
|
|
43
|
+
},
|
|
44
|
+
"oneOf": [
|
|
45
|
+
{
|
|
46
|
+
"properties": {
|
|
47
|
+
"projectionMode": { "const": "materialized" },
|
|
48
|
+
"authoritativeForMutation": { "const": true },
|
|
49
|
+
"materializedEventId": { "$ref": "#/$defs/id" }
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"properties": {
|
|
54
|
+
"projectionMode": { "const": "compatibility" },
|
|
55
|
+
"authoritativeForMutation": { "const": false },
|
|
56
|
+
"materializedEventId": { "const": null }
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"$defs": {
|
|
61
|
+
"id": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
62
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" },
|
|
63
|
+
"hash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
64
|
+
"seatBinding": {
|
|
65
|
+
"type": "object",
|
|
66
|
+
"additionalProperties": false,
|
|
67
|
+
"required": ["roleId", "roleKind", "roleVersion", "assignmentId", "artifactId", "absenceId"],
|
|
68
|
+
"properties": {
|
|
69
|
+
"roleId": { "$ref": "#/$defs/id" },
|
|
70
|
+
"roleKind": { "enum": ["advisor", "challenger", "chair"] },
|
|
71
|
+
"roleVersion": { "$ref": "#/$defs/version" },
|
|
72
|
+
"assignmentId": { "type": ["string", "null"], "maxLength": 128 },
|
|
73
|
+
"artifactId": { "type": ["string", "null"], "maxLength": 128 },
|
|
74
|
+
"absenceId": { "type": ["string", "null"], "maxLength": 128 }
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-finding.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-finding", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 persistent finding",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": [
|
|
9
|
+
"kind", "schemaVersion", "protocolVersion", "findingId", "scopeId", "domainId", "domainVersion",
|
|
10
|
+
"origin", "sourceCycleId", "sourceArtifactId", "title", "statement", "state", "ownerActorId", "revisitAt",
|
|
11
|
+
"createdAt", "updatedAt"
|
|
12
|
+
],
|
|
13
|
+
"properties": {
|
|
14
|
+
"kind": { "const": "operating-finding" },
|
|
15
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
16
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
17
|
+
"findingId": { "type": "string", "pattern": "^fnd_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
18
|
+
"scopeId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
19
|
+
"domainId": { "$ref": "#/$defs/nonPlaceholder" },
|
|
20
|
+
"domainVersion": { "allOf": [{ "$ref": "#/$defs/nonPlaceholder" }, { "maxLength": 64 }] },
|
|
21
|
+
"origin": { "enum": ["persistent-work", "operating-intelligence"] },
|
|
22
|
+
"sourceCycleId": { "$ref": "#/$defs/cycleId" },
|
|
23
|
+
"sourceArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
24
|
+
"sourceAssignmentId": { "$ref": "#/$defs/assignmentId" },
|
|
25
|
+
"sourceLocalFindingId": { "$ref": "#/$defs/localFindingId" },
|
|
26
|
+
"findingType": { "enum": ["unsupported", "contradicted", "correlated-reasoning", "missing-alternative", "unpriced-downside", "irreversibility-mismatch", "overconfidence", "scope-violation"] },
|
|
27
|
+
"severity": { "enum": ["low", "medium", "high", "critical"] },
|
|
28
|
+
"confidence": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
29
|
+
"targets": { "type": "array", "minItems": 1, "maxItems": 64, "items": { "$ref": "#/$defs/target" } },
|
|
30
|
+
"supportingEvidenceRefIds": { "$ref": "#/$defs/evidenceRefIds" },
|
|
31
|
+
"contradictingEvidenceRefIds": { "$ref": "#/$defs/evidenceRefIds" },
|
|
32
|
+
"title": { "$ref": "#/$defs/title" },
|
|
33
|
+
"statement": { "$ref": "#/$defs/nonBlankText" },
|
|
34
|
+
"rationale": { "$ref": "#/$defs/nonBlankText" },
|
|
35
|
+
"correctionCondition": { "$ref": "#/$defs/nonBlankText" },
|
|
36
|
+
"state": { "type": "string", "enum": ["open", "accepted", "resolved", "rejected", "deferred", "superseded"] },
|
|
37
|
+
"ownerActorId": { "type": ["string", "null"], "minLength": 1, "maxLength": 128 },
|
|
38
|
+
"revisitAt": { "type": ["string", "null"], "format": "date-time" },
|
|
39
|
+
"createdAt": { "type": "string", "format": "date-time" },
|
|
40
|
+
"updatedAt": { "type": "string", "format": "date-time" }
|
|
41
|
+
},
|
|
42
|
+
"allOf": [
|
|
43
|
+
{
|
|
44
|
+
"if": { "properties": { "origin": { "const": "persistent-work" } }, "required": ["origin"] },
|
|
45
|
+
"then": {
|
|
46
|
+
"not": {
|
|
47
|
+
"anyOf": [
|
|
48
|
+
{ "required": ["sourceAssignmentId"] },
|
|
49
|
+
{ "required": ["sourceLocalFindingId"] },
|
|
50
|
+
{ "required": ["findingType"] },
|
|
51
|
+
{ "required": ["severity"] },
|
|
52
|
+
{ "required": ["confidence"] },
|
|
53
|
+
{ "required": ["targets"] },
|
|
54
|
+
{ "required": ["supportingEvidenceRefIds"] },
|
|
55
|
+
{ "required": ["contradictingEvidenceRefIds"] },
|
|
56
|
+
{ "required": ["rationale"] },
|
|
57
|
+
{ "required": ["correctionCondition"] }
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"if": { "properties": { "origin": { "const": "operating-intelligence" } }, "required": ["origin"] },
|
|
64
|
+
"then": {
|
|
65
|
+
"required": [
|
|
66
|
+
"sourceAssignmentId", "sourceLocalFindingId", "findingType", "severity", "confidence", "targets",
|
|
67
|
+
"supportingEvidenceRefIds", "contradictingEvidenceRefIds", "rationale", "correctionCondition"
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"if": { "properties": { "state": { "const": "deferred" } } },
|
|
73
|
+
"then": {
|
|
74
|
+
"anyOf": [
|
|
75
|
+
{ "properties": { "ownerActorId": { "type": "string" } } },
|
|
76
|
+
{ "properties": { "revisitAt": { "type": "string", "format": "date-time" } } }
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"$defs": {
|
|
82
|
+
"assignmentId": { "type": "string", "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
83
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
84
|
+
"cycleId": { "type": "string", "pattern": "^cyc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
85
|
+
"evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
86
|
+
"localFindingId": { "type": "string", "pattern": "^finding:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
87
|
+
"localAnalysisId": { "type": "string", "pattern": "^analysis:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
88
|
+
"localClaimId": { "type": "string", "pattern": "^claim:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
89
|
+
"localMeasurementId": { "type": "string", "pattern": "^measurement:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
90
|
+
"localRiskId": { "type": "string", "pattern": "^risk:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
91
|
+
"localRecommendationId": { "type": "string", "pattern": "^recommendation:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:1$" },
|
|
92
|
+
"evidenceRefIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } },
|
|
93
|
+
"target": {
|
|
94
|
+
"type": "object", "additionalProperties": false,
|
|
95
|
+
"required": ["advisorArtifactId", "analysisIds", "claimIds", "measurementIds", "riskIds", "recommendationIds"],
|
|
96
|
+
"properties": {
|
|
97
|
+
"advisorArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
98
|
+
"analysisIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/localAnalysisId" } },
|
|
99
|
+
"claimIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/localClaimId" } },
|
|
100
|
+
"measurementIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/localMeasurementId" } },
|
|
101
|
+
"riskIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/localRiskId" } },
|
|
102
|
+
"recommendationIds": { "type": "array", "maxItems": 1, "uniqueItems": true, "items": { "$ref": "#/$defs/localRecommendationId" } }
|
|
103
|
+
},
|
|
104
|
+
"anyOf": [
|
|
105
|
+
{ "properties": { "analysisIds": { "minItems": 1 } } },
|
|
106
|
+
{ "properties": { "claimIds": { "minItems": 1 } } },
|
|
107
|
+
{ "properties": { "measurementIds": { "minItems": 1 } } },
|
|
108
|
+
{ "properties": { "riskIds": { "minItems": 1 } } },
|
|
109
|
+
{ "properties": { "recommendationIds": { "minItems": 1 } } }
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
"nonBlankText": { "type": "string", "minLength": 1, "maxLength": 4096, "pattern": "^[\\s\\S]*\\S[\\s\\S]*$" },
|
|
113
|
+
"nonPlaceholder": { "type": "string", "minLength": 1, "maxLength": 128, "not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" } },
|
|
114
|
+
"title": { "type": "string", "minLength": 1, "maxLength": 256, "pattern": "^\\S(?:[\\s\\S]*\\S)?$", "not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" } }
|
|
115
|
+
}
|
|
116
|
+
}
|