@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,289 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-runtime-state.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-runtime-state", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 rebuildable runtime workflow state",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "generatedAt", "eventHead", "cycles", "inputBindings", "assignments", "reviews", "submissions", "artifacts", "findings", "decisions", "actions", "submissionReplayIndex", "workChangeSetReplayIndex", "eventReplayIndex"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-runtime-state" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"generatedAt": { "type": "string", "format": "date-time" },
|
|
14
|
+
"eventHead": { "$ref": "#/$defs/eventHead" },
|
|
15
|
+
"cycles": { "type": "array", "items": { "$ref": "operating-cycle.schema.json" } },
|
|
16
|
+
"inputBindings": { "type": "array", "items": { "$ref": "operating-cycle-input-binding.schema.json" } },
|
|
17
|
+
"assignments": { "type": "array", "items": { "$ref": "operating-assignment.schema.json" } },
|
|
18
|
+
"reviews": { "type": "array", "items": { "$ref": "operating-review.schema.json" } },
|
|
19
|
+
"submissions": { "type": "array", "items": { "$ref": "operating-submission.schema.json" } },
|
|
20
|
+
"artifacts": { "type": "array", "items": { "$ref": "operating-artifact.schema.json" } },
|
|
21
|
+
"findings": { "type": "array", "items": { "$ref": "operating-finding.schema.json" } },
|
|
22
|
+
"decisions": { "type": "array", "items": { "$ref": "operating-decision.schema.json" } },
|
|
23
|
+
"actions": { "type": "array", "items": { "$ref": "operating-action.schema.json" } },
|
|
24
|
+
"executiveBoards": {
|
|
25
|
+
"type": "array",
|
|
26
|
+
"description": "Optional transition-owned Executive Board records. Historical v2 checkpoints omit this member byte-for-byte; new runtimes include it and only materialized variants may persist.",
|
|
27
|
+
"items": {
|
|
28
|
+
"allOf": [
|
|
29
|
+
{ "$ref": "operating-executive-board.schema.json" },
|
|
30
|
+
{
|
|
31
|
+
"properties": {
|
|
32
|
+
"projectionMode": { "const": "materialized" },
|
|
33
|
+
"authoritativeForMutation": { "const": true },
|
|
34
|
+
"materializedEventId": { "type": "string" }
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"operatingModelStates": {
|
|
41
|
+
"type": "array",
|
|
42
|
+
"description": "Phase 5 immutable domain-neutral state snapshots. Kept optional until the Phase 5 materializer begins writing this projection.",
|
|
43
|
+
"items": { "$ref": "operating-model-state.schema.json" }
|
|
44
|
+
},
|
|
45
|
+
"operatingSnapshots": {
|
|
46
|
+
"type": "array",
|
|
47
|
+
"description": "Phase 5 immutable snapshot descriptors. They retain safe IDs, revisions, and hashes only.",
|
|
48
|
+
"items": { "$ref": "operating-snapshot.schema.json" }
|
|
49
|
+
},
|
|
50
|
+
"objectives": { "type": "array", "items": { "$ref": "operating-objective.schema.json" } },
|
|
51
|
+
"metrics": { "type": "array", "items": { "$ref": "operating-metric.schema.json" } },
|
|
52
|
+
"metricObservations": { "type": "array", "items": { "$ref": "operating-metric-observation.schema.json" } },
|
|
53
|
+
"risks": { "type": "array", "items": { "$ref": "operating-risk.schema.json" } },
|
|
54
|
+
"assumptions": { "type": "array", "items": { "$ref": "operating-assumption.schema.json" } },
|
|
55
|
+
"claims": { "type": "array", "items": { "$ref": "operating-claim.schema.json" } },
|
|
56
|
+
"domainProjections": { "type": "array", "items": { "$ref": "operating-domain-projection.schema.json" } },
|
|
57
|
+
"deltas": { "type": "array", "items": { "$ref": "operating-delta.schema.json" } },
|
|
58
|
+
"intelligencePlans": { "type": "array", "items": { "$ref": "operating-intelligence-plan.schema.json" } },
|
|
59
|
+
"decisionLedgers": { "type": "array", "items": { "$ref": "operating-decision-ledger.schema.json" } },
|
|
60
|
+
"verificationPlans": { "type": "array", "items": { "$ref": "operating-action-verification-plan.schema.json" } },
|
|
61
|
+
"outcomes": { "type": "array", "items": { "$ref": "operating-outcome.schema.json" } },
|
|
62
|
+
"learnings": { "type": "array", "items": { "$ref": "operating-learning.schema.json" } },
|
|
63
|
+
"scenarios": { "type": "array", "items": { "$ref": "operating-scenario.schema.json" } },
|
|
64
|
+
"eventTriggers": { "type": "array", "items": { "$ref": "operating-event-trigger.schema.json" } },
|
|
65
|
+
"actionPolicies": { "type": "array", "items": { "$ref": "operating-action-policy.schema.json" } },
|
|
66
|
+
"policyEvaluations": { "type": "array", "items": { "$ref": "operating-policy-evaluation.schema.json" } },
|
|
67
|
+
"approvalRequirements": { "type": "array", "items": { "$ref": "operating-approval-requirement.schema.json" } },
|
|
68
|
+
"approvalRecords": { "type": "array", "items": { "$ref": "operating-approval-record.schema.json" } },
|
|
69
|
+
"capabilityAvailability": { "type": "array", "items": { "$ref": "operating-capability-availability.schema.json" } },
|
|
70
|
+
"capabilityGrants": { "type": "array", "items": { "$ref": "operating-capability-grant.schema.json" } },
|
|
71
|
+
"governedOperations": { "type": "array", "items": { "$ref": "operating-governed-operation.schema.json" } },
|
|
72
|
+
"executionResults": { "type": "array", "items": { "$ref": "operating-execution-result.schema.json" } },
|
|
73
|
+
"rollbackPlans": { "type": "array", "items": { "$ref": "operating-rollback-plan.schema.json" } },
|
|
74
|
+
"rollbackResults": { "type": "array", "items": { "$ref": "operating-rollback-result.schema.json" } },
|
|
75
|
+
"operationReplayIndex": { "type": "array", "items": { "$ref": "#/$defs/operationReplayEntry" } },
|
|
76
|
+
"evidenceRefs": {
|
|
77
|
+
"type": "array",
|
|
78
|
+
"description": "Phase 4 runtime-owned resolved EvidenceRefs. The Phase 4 materializer populates this optional state slice atomically with its event transaction.",
|
|
79
|
+
"items": { "$ref": "operating-evidence-ref.schema.json" }
|
|
80
|
+
},
|
|
81
|
+
"evidenceResolutions": {
|
|
82
|
+
"type": "array",
|
|
83
|
+
"description": "Phase 4 runtime-owned evidence resolution outcomes. Normal agents cannot write this state.",
|
|
84
|
+
"items": { "$ref": "operating-evidence-resolution.schema.json" }
|
|
85
|
+
},
|
|
86
|
+
"evidenceEdges": {
|
|
87
|
+
"type": "array",
|
|
88
|
+
"description": "Phase 4 source-Artifact-local proof edges only; this is not a durable Claim store.",
|
|
89
|
+
"items": { "$ref": "operating-evidence-edge.schema.json" }
|
|
90
|
+
},
|
|
91
|
+
"evidenceResolutionReplayIndex": {
|
|
92
|
+
"type": "array",
|
|
93
|
+
"description": "Phase 4 runtime-owned resolution identity view. Its materializer is introduced separately from this contract family.",
|
|
94
|
+
"items": { "$ref": "#/$defs/evidenceResolutionReplayEntry" }
|
|
95
|
+
},
|
|
96
|
+
"submissionReplayIndex": { "type": "array", "items": { "$ref": "#/$defs/replayEntry" } },
|
|
97
|
+
"workChangeSetReplayIndex": {
|
|
98
|
+
"type": "array",
|
|
99
|
+
"description": "Runtime-owned materialization identity view. A validated work-change-set Artifact may materialize once; exact Event retry is handled by eventReplayIndex.",
|
|
100
|
+
"items": { "$ref": "#/$defs/workChangeSetReplayEntry" }
|
|
101
|
+
},
|
|
102
|
+
"eventReplayIndex": {
|
|
103
|
+
"type": "array",
|
|
104
|
+
"description": "Durable complete Event identity view for replay and checkpoint recovery. It is runtime-owned and never a normal-agent API field.",
|
|
105
|
+
"items": { "$ref": "#/$defs/eventReplayEntry" }
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"allOf": [
|
|
109
|
+
{ "if": { "required": ["actionPolicies"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
110
|
+
{ "if": { "required": ["policyEvaluations"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
111
|
+
{ "if": { "required": ["approvalRequirements"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
112
|
+
{ "if": { "required": ["approvalRecords"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
113
|
+
{ "if": { "required": ["capabilityAvailability"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
114
|
+
{ "if": { "required": ["capabilityGrants"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
115
|
+
{ "if": { "required": ["governedOperations"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
116
|
+
{ "if": { "required": ["executionResults"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
117
|
+
{ "if": { "required": ["rollbackPlans"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
118
|
+
{ "if": { "required": ["rollbackResults"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } },
|
|
119
|
+
{ "if": { "required": ["operationReplayIndex"] }, "then": { "$ref": "#/$defs/completeAuthorityHistory" } }
|
|
120
|
+
],
|
|
121
|
+
"$defs": {
|
|
122
|
+
"completeAuthorityHistory": {
|
|
123
|
+
"required": ["actionPolicies", "policyEvaluations", "approvalRequirements", "approvalRecords", "capabilityAvailability", "capabilityGrants", "governedOperations", "executionResults", "rollbackPlans", "rollbackResults", "operationReplayIndex"]
|
|
124
|
+
},
|
|
125
|
+
"eventHead": {
|
|
126
|
+
"type": "object", "additionalProperties": false, "required": ["sequence", "hash"],
|
|
127
|
+
"properties": {
|
|
128
|
+
"sequence": { "type": "integer", "minimum": 0 },
|
|
129
|
+
"hash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" }
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"replayEntry": {
|
|
133
|
+
"type": "object", "additionalProperties": false,
|
|
134
|
+
"required": ["submissionId", "assignmentId", "rawHash", "canonicalHash", "sizeBytes", "artifactId", "acceptanceEventIds", "responseData"],
|
|
135
|
+
"properties": {
|
|
136
|
+
"submissionId": { "type": "string", "pattern": "^sub_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
137
|
+
"assignmentId": { "type": "string", "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
138
|
+
"rawHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
139
|
+
"canonicalHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
140
|
+
"sizeBytes": { "type": "integer", "minimum": 0 },
|
|
141
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
142
|
+
"acceptanceEventIds": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "minLength": 1, "maxLength": 128 } },
|
|
143
|
+
"responseData": {}
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"workChangeSetReplayEntry": {
|
|
147
|
+
"type": "object", "additionalProperties": false,
|
|
148
|
+
"required": ["artifactId", "canonicalHash", "eventId", "findingIds", "decisionIds", "actionIds"],
|
|
149
|
+
"properties": {
|
|
150
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
151
|
+
"canonicalHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
152
|
+
"eventId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
153
|
+
"findingIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "pattern": "^fnd_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } },
|
|
154
|
+
"decisionIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "pattern": "^dec_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } },
|
|
155
|
+
"actionIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "pattern": "^act_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" } }
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"evidenceResolutionReplayEntry": {
|
|
159
|
+
"type": "object", "additionalProperties": false,
|
|
160
|
+
"required": ["resolutionId", "candidateId", "sourceArtifactId", "outcome", "evidenceRefId", "evidenceArtifactId", "eventId", "requestHash", "outcomeHash"],
|
|
161
|
+
"properties": {
|
|
162
|
+
"resolutionId": { "type": "string", "pattern": "^evs_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
163
|
+
"candidateId": { "type": "string", "pattern": "^evc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
164
|
+
"sourceArtifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
165
|
+
"outcome": { "enum": ["resolved", "rejected"] },
|
|
166
|
+
"evidenceRefId": { "type": ["string", "null"], "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
167
|
+
"evidenceArtifactId": { "type": ["string", "null"], "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
168
|
+
"eventId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
169
|
+
"requestHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
170
|
+
"outcomeHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"operationReplayEntry": {
|
|
174
|
+
"type": "object", "additionalProperties": false,
|
|
175
|
+
"required": ["operationId", "operationKind", "requestFingerprint", "actionId", "actionRevision", "actionHash", "intentEventId", "operationHash", "payloadArtifactId", "payloadHash", "baselineArtifactId", "baselineHash", "targetBeforeHash", "reservedResultId", "reservedResultArtifactId", "reservedSubmissionId", "reservedTerminalEventIds", "reservedUncertaintyResultId", "reservedUncertaintyResultArtifactId", "reservedUncertaintySubmissionId", "reservedUncertaintyTerminalEventIds", "reservedCompletedAt", "reservedCorrelationId", "terminalResultId", "terminalReceipt"],
|
|
176
|
+
"properties": {
|
|
177
|
+
"operationId": { "type": "string", "pattern": "^op_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "requestFingerprint": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
178
|
+
"operationKind": { "enum": ["execute", "rollback"] },
|
|
179
|
+
"actionId": { "type": "string", "pattern": "^act_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "actionRevision": { "type": "integer", "minimum": 1 }, "actionHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
180
|
+
"intentEventId": { "type": "string", "pattern": "^evt_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
181
|
+
"operationHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
182
|
+
"payloadArtifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
183
|
+
"payloadHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
184
|
+
"baselineArtifactId": { "type": ["string", "null"], "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
185
|
+
"baselineHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
186
|
+
"targetBeforeHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
187
|
+
"reservedResultId": { "type": "string", "pattern": "^(?:xres|rbres)_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
188
|
+
"reservedResultArtifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
189
|
+
"reservedSubmissionId": { "type": "string", "pattern": "^sub_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
190
|
+
"reservedTerminalEventIds": {
|
|
191
|
+
"type": "object", "additionalProperties": false,
|
|
192
|
+
"required": ["submitted", "artifactCreated", "validated", "resultRecorded"],
|
|
193
|
+
"properties": {
|
|
194
|
+
"submitted": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
195
|
+
"artifactCreated": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
196
|
+
"validated": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
197
|
+
"resultRecorded": { "type": "string", "minLength": 1, "maxLength": 128 }
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"reservedUncertaintyResultId": { "type": "string", "pattern": "^(?:xres|rbres)_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
201
|
+
"reservedUncertaintyResultArtifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
202
|
+
"reservedUncertaintySubmissionId": { "type": "string", "pattern": "^sub_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
203
|
+
"reservedUncertaintyTerminalEventIds": {
|
|
204
|
+
"type": "object", "additionalProperties": false,
|
|
205
|
+
"required": ["submitted", "artifactCreated", "validated", "resultRecorded"],
|
|
206
|
+
"properties": {
|
|
207
|
+
"submitted": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
208
|
+
"artifactCreated": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
209
|
+
"validated": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
210
|
+
"resultRecorded": { "type": "string", "minLength": 1, "maxLength": 128 }
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"reservedCompletedAt": { "type": "string", "format": "date-time" },
|
|
214
|
+
"reservedCorrelationId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
215
|
+
"terminalResultId": { "type": ["string", "null"], "pattern": "^(?:xres|rbres)_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
216
|
+
"terminalReceipt": { "oneOf": [{ "type": "null" }, { "$ref": "#/$defs/executionReceiptProof" }] }
|
|
217
|
+
},
|
|
218
|
+
"allOf": [
|
|
219
|
+
{ "if": { "properties": { "operationKind": { "const": "execute" } }, "required": ["operationKind"] }, "then": { "properties": { "reservedResultId": { "pattern": "^xres_" }, "reservedUncertaintyResultId": { "pattern": "^xres_" }, "terminalResultId": { "type": ["string", "null"], "pattern": "^xres_" } } } },
|
|
220
|
+
{ "if": { "properties": { "operationKind": { "const": "rollback" } }, "required": ["operationKind"] }, "then": { "properties": { "reservedResultId": { "pattern": "^rbres_" }, "reservedUncertaintyResultId": { "pattern": "^rbres_" }, "terminalResultId": { "type": ["string", "null"], "pattern": "^rbres_" } } } }
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
"executionReceiptProof": {
|
|
224
|
+
"type": "object", "additionalProperties": false,
|
|
225
|
+
"required": ["operationId", "requestFingerprint", "target", "before", "after", "changed", "synthetic", "effectCount"],
|
|
226
|
+
"properties": {
|
|
227
|
+
"operationId": { "type": "string", "pattern": "^op_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
228
|
+
"requestFingerprint": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
229
|
+
"target": {
|
|
230
|
+
"type": "object", "additionalProperties": false, "required": ["kind", "id"],
|
|
231
|
+
"properties": {
|
|
232
|
+
"kind": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
233
|
+
"id": { "type": "string", "minLength": 1, "maxLength": 128 }
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"before": { "$ref": "#/$defs/executionReceiptSnapshot" },
|
|
237
|
+
"after": { "$ref": "#/$defs/executionReceiptSnapshot" },
|
|
238
|
+
"changed": { "type": "boolean" },
|
|
239
|
+
"synthetic": { "type": "boolean" },
|
|
240
|
+
"effectCount": { "const": 1 }
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"executionReceiptSnapshot": {
|
|
244
|
+
"type": "object", "additionalProperties": false, "required": ["revision", "stateHash"],
|
|
245
|
+
"properties": {
|
|
246
|
+
"revision": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
247
|
+
"stateHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"eventReplayEntry": {
|
|
251
|
+
"type": "object",
|
|
252
|
+
"additionalProperties": false,
|
|
253
|
+
"required": ["eventId", "eventHash", "payloadHash", "sequence", "cycleId", "type", "entityId", "timestamp", "actor", "causationId", "correlationId", "previousEventHash"],
|
|
254
|
+
"properties": {
|
|
255
|
+
"eventId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
256
|
+
"eventHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
257
|
+
"payloadHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
258
|
+
"sequence": { "type": "integer", "minimum": 1 },
|
|
259
|
+
"cycleId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
260
|
+
"type": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
261
|
+
"entityId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
262
|
+
"timestamp": { "type": "string", "format": "date-time" },
|
|
263
|
+
"actor": {
|
|
264
|
+
"type": "object", "additionalProperties": false, "required": ["kind", "id"],
|
|
265
|
+
"properties": {
|
|
266
|
+
"kind": { "enum": ["human", "engine", "runtime"] },
|
|
267
|
+
"id": { "type": "string", "minLength": 1, "maxLength": 128 }
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"causationId": { "type": ["string", "null"], "maxLength": 128 },
|
|
271
|
+
"correlationId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
272
|
+
"previousEventHash": { "type": ["string", "null"], "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
273
|
+
"requestHash": {
|
|
274
|
+
"type": "string",
|
|
275
|
+
"pattern": "^sha256:[a-f0-9]{64}$",
|
|
276
|
+
"description": "Present only for closed runtime-owned intelligence requests; it prevents a matching Event identity from replaying divergent input."
|
|
277
|
+
},
|
|
278
|
+
"receiptProjection": { "$ref": "operating-review-receipt.schema.json#/$defs/replayProjection" }
|
|
279
|
+
},
|
|
280
|
+
"allOf": [
|
|
281
|
+
{
|
|
282
|
+
"if": { "required": ["type"], "properties": { "type": { "const": "review.submitted" } } },
|
|
283
|
+
"then": { "required": ["receiptProjection"] },
|
|
284
|
+
"else": { "not": { "required": ["receiptProjection"] } }
|
|
285
|
+
}
|
|
286
|
+
]
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-scenario.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-scenario", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 transparent scenario analysis",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "scenarioId", "scopeId", "domainId", "domainVersion", "snapshotId", "base", "upside", "downside", "breakEven", "assumptionIds", "evidenceRefIds", "uncertainty", "sourceArtifactId", "createdAt"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-scenario" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" }, "scenarioId": { "$ref": "#/$defs/scenarioId" }, "scopeId": { "$ref": "#/$defs/id" }, "domainId": { "$ref": "#/$defs/id" }, "domainVersion": { "$ref": "#/$defs/version" }, "snapshotId": { "$ref": "#/$defs/snapshotId" }, "base": { "$ref": "#/$defs/case" }, "upside": { "$ref": "#/$defs/case" }, "downside": { "$ref": "#/$defs/case" }, "breakEven": { "$ref": "#/$defs/text" }, "assumptionIds": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/assumptionId" } }, "evidenceRefIds": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } }, "uncertainty": { "$ref": "#/$defs/text" }, "sourceArtifactId": { "$ref": "#/$defs/artifactId" }, "createdAt": { "type": "string", "format": "date-time" }
|
|
11
|
+
},
|
|
12
|
+
"$defs": { "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}$" }, "case": { "type": "object", "additionalProperties": false, "required": ["statement", "assumptionIds", "evidenceRefIds", "sourceArtifactId"], "properties": { "statement": { "$ref": "#/$defs/text" }, "assumptionIds": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/assumptionId" } }, "evidenceRefIds": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } }, "sourceArtifactId": { "$ref": "#/$defs/artifactId" } } }, "evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "id": { "type": "string", "minLength": 1, "maxLength": 128 }, "scenarioId": { "type": "string", "pattern": "^scn_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "snapshotId": { "type": "string", "pattern": "^snp_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "text": { "type": "string", "minLength": 1, "maxLength": 4096, "pattern": "^.*\\S.*$" }, "version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" } }
|
|
13
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-snapshot.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-snapshot", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 immutable operating snapshot",
|
|
6
|
+
"description": "An immutable, addressable descriptor of accepted source revisions and typed evidence. It contains no raw artifact bytes or resolver payload.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "snapshotId", "scopeId", "domainId", "domainVersion", "domainContract", "stateId", "runtimeHash", "previousSnapshotId", "sourceArtifactIds", "evidenceRefIds", "sourceRevisions", "createdAt"],
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": { "const": "operating-snapshot" },
|
|
12
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
13
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
14
|
+
"snapshotId": { "$ref": "#/$defs/snapshotId" },
|
|
15
|
+
"scopeId": { "$ref": "#/$defs/id" },
|
|
16
|
+
"domainId": { "$ref": "#/$defs/id" },
|
|
17
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
18
|
+
"domainContract": { "$ref": "#/$defs/domainContract" },
|
|
19
|
+
"stateId": { "$ref": "#/$defs/stateId" },
|
|
20
|
+
"runtimeHash": { "$ref": "#/$defs/hash" },
|
|
21
|
+
"previousSnapshotId": { "type": ["string", "null"], "pattern": "^snp_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
22
|
+
"sourceArtifactIds": { "type": "array", "minItems": 1, "maxItems": 256, "uniqueItems": true, "items": { "$ref": "#/$defs/artifactId" } },
|
|
23
|
+
"evidenceRefIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } },
|
|
24
|
+
"sourceRevisions": { "type": "array", "maxItems": 256, "uniqueItems": true, "items": { "$ref": "#/$defs/sourceRevision" } },
|
|
25
|
+
"createdAt": { "type": "string", "format": "date-time" }
|
|
26
|
+
},
|
|
27
|
+
"$defs": {
|
|
28
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
29
|
+
"domainContract": { "type": "object", "additionalProperties": false, "required": ["apiDomainId", "id", "version"], "properties": { "apiDomainId": { "$ref": "#/$defs/id" }, "id": { "$ref": "#/$defs/id" }, "version": { "$ref": "#/$defs/version" } } },
|
|
30
|
+
"evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
31
|
+
"hash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
32
|
+
"id": { "type": "string", "minLength": 1, "maxLength": 128, "not": { "pattern": "(?:<[^>]+>|\\{\\{[^}]+\\}\\})" } },
|
|
33
|
+
"snapshotId": { "type": "string", "pattern": "^snp_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
34
|
+
"sourceRevision": { "type": "object", "additionalProperties": false, "required": ["sourceArtifactId", "revision"], "properties": { "sourceArtifactId": { "$ref": "#/$defs/artifactId" }, "revision": { "type": "string", "minLength": 1, "maxLength": 256 }, "evidenceRefIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } } } },
|
|
35
|
+
"stateId": { "type": "string", "pattern": "^oms_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
36
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" }
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-submission.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-submission", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 operating submission",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "submissionId", "assignmentId", "cycleId", "state", "rawHash", "canonicalHash", "sizeBytes", "artifactId", "acceptanceEventIds", "responseData", "issuedAt", "resolvedAt"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-submission" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"submissionId": { "type": "string", "pattern": "^sub_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
14
|
+
"assignmentId": { "type": "string", "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
15
|
+
"cycleId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
16
|
+
"state": { "type": "string", "enum": ["issued", "accepted", "rejected"] },
|
|
17
|
+
"rawHash": {
|
|
18
|
+
"type": ["string", "null"],
|
|
19
|
+
"pattern": "^sha256:[a-f0-9]{64}$",
|
|
20
|
+
"description": "Digest of the exact submitted bytes. It is never replaced by canonicalHash."
|
|
21
|
+
},
|
|
22
|
+
"canonicalHash": {
|
|
23
|
+
"type": ["string", "null"],
|
|
24
|
+
"pattern": "^sha256:[a-f0-9]{64}$",
|
|
25
|
+
"description": "Digest of a contract-defined canonical value when one exists. It is never used as the raw-byte identity."
|
|
26
|
+
},
|
|
27
|
+
"sizeBytes": { "type": ["integer", "null"], "minimum": 0 },
|
|
28
|
+
"artifactId": { "type": ["string", "null"], "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
29
|
+
"acceptanceEventIds": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1, "maxLength": 128 } },
|
|
30
|
+
"responseData": {},
|
|
31
|
+
"issuedAt": { "type": "string", "format": "date-time" },
|
|
32
|
+
"resolvedAt": { "type": ["string", "null"], "format": "date-time" }
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-trace-matrix.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-trace-matrix", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 bounded reciprocal trace matrix",
|
|
6
|
+
"description": "Access-safe identity graph joining operating requirements and absences to seats, accepted work, proof, decisions, governed actions, and verification. Every edge is listed once and reciprocally indexed by both endpoint nodes.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": [
|
|
10
|
+
"kind", "schemaVersion", "protocolVersion", "matrixId", "scopeId", "domainId",
|
|
11
|
+
"domainVersion", "cycleId", "eventHead", "limits", "nodes", "edges", "omissions",
|
|
12
|
+
"proof", "matrixHash"
|
|
13
|
+
],
|
|
14
|
+
"properties": {
|
|
15
|
+
"kind": { "const": "operating-trace-matrix" },
|
|
16
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
17
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
18
|
+
"matrixId": { "type": "string", "pattern": "^trx_[a-f0-9]{32}$" },
|
|
19
|
+
"scopeId": { "$ref": "#/$defs/id" },
|
|
20
|
+
"domainId": { "$ref": "#/$defs/id" },
|
|
21
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
22
|
+
"cycleId": { "$ref": "#/$defs/id" },
|
|
23
|
+
"eventHead": { "$ref": "#/$defs/eventHead" },
|
|
24
|
+
"limits": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"additionalProperties": false,
|
|
27
|
+
"required": ["maxNodes", "maxEdges", "truncated"],
|
|
28
|
+
"properties": {
|
|
29
|
+
"maxNodes": { "const": 8192 },
|
|
30
|
+
"maxEdges": { "const": 32768 },
|
|
31
|
+
"truncated": { "const": false }
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"nodes": {
|
|
35
|
+
"type": "array",
|
|
36
|
+
"maxItems": 8192,
|
|
37
|
+
"items": { "$ref": "#/$defs/node" }
|
|
38
|
+
},
|
|
39
|
+
"edges": {
|
|
40
|
+
"type": "array",
|
|
41
|
+
"maxItems": 32768,
|
|
42
|
+
"items": { "$ref": "#/$defs/edge" }
|
|
43
|
+
},
|
|
44
|
+
"omissions": {
|
|
45
|
+
"type": "array",
|
|
46
|
+
"maxItems": 8192,
|
|
47
|
+
"items": { "$ref": "#/$defs/omission" }
|
|
48
|
+
},
|
|
49
|
+
"proof": { "$ref": "#/$defs/proof" },
|
|
50
|
+
"matrixHash": { "$ref": "#/$defs/hash" }
|
|
51
|
+
},
|
|
52
|
+
"$defs": {
|
|
53
|
+
"id": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
54
|
+
"nodeId": { "type": "string", "minLength": 1, "maxLength": 512 },
|
|
55
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" },
|
|
56
|
+
"hash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
57
|
+
"eventHead": {
|
|
58
|
+
"oneOf": [
|
|
59
|
+
{
|
|
60
|
+
"type": "object", "additionalProperties": false, "required": ["sequence", "hash"],
|
|
61
|
+
"properties": { "sequence": { "const": 0 }, "hash": { "const": null } }
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": "object", "additionalProperties": false, "required": ["sequence", "hash"],
|
|
65
|
+
"properties": { "sequence": { "type": "integer", "minimum": 1 }, "hash": { "$ref": "#/$defs/hash" } }
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"nodeKind": {
|
|
70
|
+
"enum": [
|
|
71
|
+
"requirement", "absence", "seat", "assignment", "artifact", "claim",
|
|
72
|
+
"evidence-ref", "finding", "decision", "action", "disposition",
|
|
73
|
+
"verification", "outcome"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
"locator": {
|
|
77
|
+
"type": "object",
|
|
78
|
+
"additionalProperties": false,
|
|
79
|
+
"required": ["kind", "id", "contract", "scopeId", "domainId", "domainVersion", "cycleId"],
|
|
80
|
+
"properties": {
|
|
81
|
+
"kind": { "$ref": "#/$defs/nodeKind" },
|
|
82
|
+
"id": { "$ref": "#/$defs/nodeId" },
|
|
83
|
+
"contract": {
|
|
84
|
+
"type": "object", "additionalProperties": false, "required": ["id", "version"],
|
|
85
|
+
"properties": { "id": { "$ref": "#/$defs/id" }, "version": { "$ref": "#/$defs/version" } }
|
|
86
|
+
},
|
|
87
|
+
"scopeId": { "$ref": "#/$defs/id" },
|
|
88
|
+
"domainId": { "$ref": "#/$defs/id" },
|
|
89
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
90
|
+
"cycleId": { "$ref": "#/$defs/id" }
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"node": {
|
|
94
|
+
"type": "object",
|
|
95
|
+
"additionalProperties": false,
|
|
96
|
+
"required": ["locator", "accessState", "proofState", "inboundEdgeIds", "outboundEdgeIds"],
|
|
97
|
+
"properties": {
|
|
98
|
+
"locator": { "$ref": "#/$defs/locator" },
|
|
99
|
+
"accessState": { "enum": ["available", "restricted", "absent"] },
|
|
100
|
+
"proofState": {
|
|
101
|
+
"enum": [
|
|
102
|
+
"not-applicable", "pending", "terminal", "accepted", "rejected", "failed",
|
|
103
|
+
"abandoned", "verified", "stale", "supported", "contradicted", "contested",
|
|
104
|
+
"unverified", "absent", "restricted", "proposed", "governed", "completed",
|
|
105
|
+
"insufficient"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"inboundEdgeIds": {
|
|
109
|
+
"type": "array", "maxItems": 32768, "uniqueItems": true,
|
|
110
|
+
"items": { "type": "string", "pattern": "^tre_[a-f0-9]{32}$" }
|
|
111
|
+
},
|
|
112
|
+
"outboundEdgeIds": {
|
|
113
|
+
"type": "array", "maxItems": 32768, "uniqueItems": true,
|
|
114
|
+
"items": { "type": "string", "pattern": "^tre_[a-f0-9]{32}$" }
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"endpoint": {
|
|
119
|
+
"type": "object",
|
|
120
|
+
"additionalProperties": false,
|
|
121
|
+
"required": ["kind", "id"],
|
|
122
|
+
"properties": { "kind": { "$ref": "#/$defs/nodeKind" }, "id": { "$ref": "#/$defs/nodeId" } }
|
|
123
|
+
},
|
|
124
|
+
"edge": {
|
|
125
|
+
"type": "object",
|
|
126
|
+
"additionalProperties": false,
|
|
127
|
+
"required": ["edgeId", "relation", "from", "to"],
|
|
128
|
+
"properties": {
|
|
129
|
+
"edgeId": { "type": "string", "pattern": "^tre_[a-f0-9]{32}$" },
|
|
130
|
+
"relation": {
|
|
131
|
+
"enum": [
|
|
132
|
+
"declares", "assigned-to", "issued-as", "records", "produces", "contains",
|
|
133
|
+
"supported-by", "contradicted-by", "informs", "challenges", "decides",
|
|
134
|
+
"proposes", "disposes", "governed-by", "verified-by", "observed-as"
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
"from": { "$ref": "#/$defs/endpoint" },
|
|
138
|
+
"to": { "$ref": "#/$defs/endpoint" }
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"omission": {
|
|
142
|
+
"type": "object",
|
|
143
|
+
"additionalProperties": false,
|
|
144
|
+
"required": ["omissionId", "kind", "subject", "subjectId", "reasonCode", "incidentEdgeCount"],
|
|
145
|
+
"properties": {
|
|
146
|
+
"omissionId": { "type": "string", "pattern": "^tro_[a-f0-9]{32}$" },
|
|
147
|
+
"kind": { "enum": ["restricted", "absent"] },
|
|
148
|
+
"subject": { "$ref": "#/$defs/nodeKind" },
|
|
149
|
+
"subjectId": { "$ref": "#/$defs/nodeId" },
|
|
150
|
+
"reasonCode": { "enum": ["OPERATE_TRACE_ACCESS_RESTRICTED", "OPERATE_TRACE_TYPED_ABSENCE", "OPERATE_TRACE_ROLE_NOT_SELECTED"] },
|
|
151
|
+
"incidentEdgeCount": { "type": "integer", "minimum": 0, "maximum": 32768 }
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"proof": {
|
|
155
|
+
"type": "object",
|
|
156
|
+
"additionalProperties": false,
|
|
157
|
+
"required": [
|
|
158
|
+
"terminalAssignments", "acceptedArtifacts", "verifiedEvidence", "staleEvidence",
|
|
159
|
+
"supportedClaims", "contradictedClaims", "unverifiedClaims", "restrictedNodes",
|
|
160
|
+
"typedAbsences", "verifiedActions"
|
|
161
|
+
],
|
|
162
|
+
"properties": {
|
|
163
|
+
"terminalAssignments": { "type": "integer", "minimum": 0, "maximum": 8192 },
|
|
164
|
+
"acceptedArtifacts": { "type": "integer", "minimum": 0, "maximum": 8192 },
|
|
165
|
+
"verifiedEvidence": { "type": "integer", "minimum": 0, "maximum": 8192 },
|
|
166
|
+
"staleEvidence": { "type": "integer", "minimum": 0, "maximum": 8192 },
|
|
167
|
+
"supportedClaims": { "type": "integer", "minimum": 0, "maximum": 8192 },
|
|
168
|
+
"contradictedClaims": { "type": "integer", "minimum": 0, "maximum": 8192 },
|
|
169
|
+
"unverifiedClaims": { "type": "integer", "minimum": 0, "maximum": 8192 },
|
|
170
|
+
"restrictedNodes": { "type": "integer", "minimum": 0, "maximum": 8192 },
|
|
171
|
+
"typedAbsences": { "type": "integer", "minimum": 0, "maximum": 8192 },
|
|
172
|
+
"verifiedActions": { "type": "integer", "minimum": 0, "maximum": 8192 }
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|