@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,217 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-review-read.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-review-read", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 owner-bound review read",
|
|
6
|
+
"description": "Runtime-projected pre-commit Review data for the exact immutable human owner. The runtime owns readAt.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": [
|
|
10
|
+
"kind", "schemaVersion", "protocolVersion", "cycleId", "eventHead", "scope", "reader",
|
|
11
|
+
"review", "seatStatus", "decisions", "actions", "findings", "dissent", "gaps",
|
|
12
|
+
"dispositionChoices", "readAt"
|
|
13
|
+
],
|
|
14
|
+
"properties": {
|
|
15
|
+
"kind": { "const": "operating-review-read" },
|
|
16
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
17
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
18
|
+
"cycleId": { "$ref": "#/$defs/cycleId" },
|
|
19
|
+
"eventHead": { "$ref": "#/$defs/eventHead" },
|
|
20
|
+
"scope": { "$ref": "#/$defs/scope" },
|
|
21
|
+
"reader": { "$ref": "#/$defs/humanActor" },
|
|
22
|
+
"review": { "$ref": "operating-review.schema.json" },
|
|
23
|
+
"seatStatus": { "type": "array", "maxItems": 16, "items": { "$ref": "#/$defs/seatStatus" } },
|
|
24
|
+
"decisions": { "type": "array", "maxItems": 256, "items": { "$ref": "#/$defs/decisionSummary" } },
|
|
25
|
+
"actions": { "type": "array", "maxItems": 512, "items": { "$ref": "#/$defs/actionSummary" } },
|
|
26
|
+
"findings": { "type": "array", "maxItems": 256, "items": { "$ref": "#/$defs/findingSummary" } },
|
|
27
|
+
"dissent": { "type": "array", "maxItems": 256, "items": { "$ref": "#/$defs/dissentSummary" } },
|
|
28
|
+
"gaps": { "type": "array", "maxItems": 2048, "items": { "$ref": "#/$defs/gapSummary" } },
|
|
29
|
+
"dispositionChoices": { "type": "array", "minItems": 1, "maxItems": 128, "items": { "$ref": "#/$defs/dispositionChoice" } },
|
|
30
|
+
"readAt": { "type": "string", "format": "date-time" }
|
|
31
|
+
},
|
|
32
|
+
"$defs": {
|
|
33
|
+
"id": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
34
|
+
"identifier": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
35
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" },
|
|
36
|
+
"hash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
37
|
+
"cycleId": { "type": "string", "pattern": "^cyc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
38
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
39
|
+
"assignmentId": { "type": "string", "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
40
|
+
"evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
41
|
+
"absenceId": { "type": "string", "pattern": "^abs_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
42
|
+
"title": { "type": "string", "minLength": 1, "maxLength": 256, "pattern": "^\\S(?:[\\s\\S]*\\S)?$" },
|
|
43
|
+
"text": { "type": "string", "minLength": 1, "maxLength": 4096, "pattern": "^[\\s\\S]*\\S[\\s\\S]*$" },
|
|
44
|
+
"eventHead": {
|
|
45
|
+
"oneOf": [
|
|
46
|
+
{ "type": "object", "additionalProperties": false, "required": ["sequence", "hash"], "properties": { "sequence": { "const": 0 }, "hash": { "const": null } } },
|
|
47
|
+
{ "type": "object", "additionalProperties": false, "required": ["sequence", "hash"], "properties": { "sequence": { "type": "integer", "minimum": 1 }, "hash": { "$ref": "#/$defs/hash" } } }
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"scope": {
|
|
51
|
+
"type": "object", "additionalProperties": false, "required": ["scopeId", "domainId", "domainVersion"],
|
|
52
|
+
"properties": { "scopeId": { "$ref": "#/$defs/id" }, "domainId": { "$ref": "#/$defs/identifier" }, "domainVersion": { "$ref": "#/$defs/version" } }
|
|
53
|
+
},
|
|
54
|
+
"humanActor": {
|
|
55
|
+
"type": "object", "additionalProperties": false, "required": ["actorId", "kind", "runtime"],
|
|
56
|
+
"properties": { "actorId": { "$ref": "#/$defs/id" }, "kind": { "const": "human" }, "runtime": { "$ref": "#/$defs/id" } }
|
|
57
|
+
},
|
|
58
|
+
"seatStatus": {
|
|
59
|
+
"type": "object", "additionalProperties": false,
|
|
60
|
+
"required": ["roleId", "roleKind", "roleVersion", "state", "artifactId", "absenceIds"],
|
|
61
|
+
"properties": {
|
|
62
|
+
"roleId": { "$ref": "#/$defs/identifier" }, "roleKind": { "enum": ["advisor", "challenger", "chair"] },
|
|
63
|
+
"roleVersion": { "$ref": "#/$defs/version" },
|
|
64
|
+
"state": { "enum": ["pending", "available", "running", "validated", "rejected", "abandoned", "failed"] },
|
|
65
|
+
"artifactId": { "type": ["string", "null"], "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
66
|
+
"absenceIds": { "type": "array", "maxItems": 2048, "uniqueItems": true, "items": { "$ref": "#/$defs/absenceId" } }
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"decisionSummary": {
|
|
70
|
+
"type": "object", "additionalProperties": false,
|
|
71
|
+
"required": [
|
|
72
|
+
"origin", "decisionId", "title", "question", "outcome", "rationale", "confidence", "ownerActorId",
|
|
73
|
+
"expectedUpside", "expectedDownside", "revisitConditions", "dissent", "evidenceRefIds"
|
|
74
|
+
],
|
|
75
|
+
"properties": {
|
|
76
|
+
"origin": { "enum": ["persistent-work", "operating-intelligence"] },
|
|
77
|
+
"decisionId": { "type": "string", "pattern": "^dec_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
78
|
+
"title": { "$ref": "#/$defs/title" }, "question": { "$ref": "#/$defs/text" },
|
|
79
|
+
"outcome": { "oneOf": [{ "type": "null" }, { "$ref": "#/$defs/text" }] }, "rationale": { "$ref": "#/$defs/text" },
|
|
80
|
+
"confidence": { "type": "number", "minimum": 0, "maximum": 1 }, "ownerActorId": { "$ref": "#/$defs/id" },
|
|
81
|
+
"expectedUpside": { "$ref": "#/$defs/text" }, "expectedDownside": { "$ref": "#/$defs/text" },
|
|
82
|
+
"uncertainty": { "$ref": "#/$defs/text" }, "reversibility": { "$ref": "#/$defs/text" },
|
|
83
|
+
"revisitConditions": { "type": "array", "minItems": 1, "maxItems": 32, "items": { "$ref": "#/$defs/text" } },
|
|
84
|
+
"dissentIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "type": "string", "pattern": "^dissent:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" } },
|
|
85
|
+
"dissent": { "type": "array", "maxItems": 128, "items": { "$ref": "#/$defs/text" } },
|
|
86
|
+
"evidenceRefIds": { "type": "array", "minItems": 1, "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } }
|
|
87
|
+
},
|
|
88
|
+
"allOf": [
|
|
89
|
+
{
|
|
90
|
+
"if": { "properties": { "origin": { "const": "persistent-work" } }, "required": ["origin"] },
|
|
91
|
+
"then": { "not": { "anyOf": [{ "required": ["uncertainty"] }, { "required": ["reversibility"] }, { "required": ["dissentIds"] }] } }
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"if": { "properties": { "origin": { "const": "operating-intelligence" } }, "required": ["origin"] },
|
|
95
|
+
"then": { "required": ["uncertainty", "reversibility", "dissentIds"] }
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
"actionSummary": {
|
|
100
|
+
"type": "object", "additionalProperties": false,
|
|
101
|
+
"required": ["actionId", "title", "state", "ownerActorId", "sourceDecisionId", "expectedResult", "metricId", "baseline", "target", "verificationWindow", "verificationMethod"],
|
|
102
|
+
"properties": {
|
|
103
|
+
"actionId": { "type": "string", "pattern": "^act_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
104
|
+
"title": { "$ref": "#/$defs/title" },
|
|
105
|
+
"state": { "enum": ["proposed", "approved", "queued", "in_progress", "completed", "blocked", "rejected", "deferred", "cancelled"] },
|
|
106
|
+
"ownerActorId": { "type": ["string", "null"], "minLength": 1, "maxLength": 128 },
|
|
107
|
+
"sourceDecisionId": { "type": ["string", "null"], "pattern": "^dec_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
108
|
+
"expectedResult": { "$ref": "#/$defs/text" },
|
|
109
|
+
"metricId": { "type": ["string", "null"], "pattern": "^met_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
110
|
+
"baseline": { "type": ["number", "null"] }, "target": { "type": ["number", "null"] },
|
|
111
|
+
"verificationWindow": { "$ref": "#/$defs/text" }, "verificationMethod": { "$ref": "#/$defs/text" }
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"findingSummary": {
|
|
115
|
+
"type": "object", "additionalProperties": false,
|
|
116
|
+
"required": ["origin", "findingId", "title", "statement", "state", "ownerActorId", "revisitAt"],
|
|
117
|
+
"properties": {
|
|
118
|
+
"origin": { "enum": ["persistent-work", "operating-intelligence"] },
|
|
119
|
+
"findingId": { "type": "string", "pattern": "^fnd_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
120
|
+
"title": { "$ref": "#/$defs/title" }, "statement": { "$ref": "#/$defs/text" },
|
|
121
|
+
"findingType": { "enum": ["unsupported", "contradicted", "correlated-reasoning", "missing-alternative", "unpriced-downside", "irreversibility-mismatch", "overconfidence", "scope-violation"] },
|
|
122
|
+
"severity": { "enum": ["low", "medium", "high", "critical"] }, "confidence": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
123
|
+
"state": { "enum": ["open", "accepted", "resolved", "rejected", "deferred", "superseded"] },
|
|
124
|
+
"ownerActorId": { "type": ["string", "null"], "minLength": 1, "maxLength": 128 },
|
|
125
|
+
"revisitAt": { "type": ["string", "null"], "format": "date-time" },
|
|
126
|
+
"supportingEvidenceRefIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } },
|
|
127
|
+
"contradictingEvidenceRefIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } }
|
|
128
|
+
},
|
|
129
|
+
"allOf": [
|
|
130
|
+
{
|
|
131
|
+
"if": { "properties": { "origin": { "const": "persistent-work" } }, "required": ["origin"] },
|
|
132
|
+
"then": {
|
|
133
|
+
"not": {
|
|
134
|
+
"anyOf": [
|
|
135
|
+
{ "required": ["findingType"] }, { "required": ["severity"] }, { "required": ["confidence"] },
|
|
136
|
+
{ "required": ["supportingEvidenceRefIds"] }, { "required": ["contradictingEvidenceRefIds"] }
|
|
137
|
+
]
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"if": { "properties": { "origin": { "const": "operating-intelligence" } }, "required": ["origin"] },
|
|
143
|
+
"then": { "required": ["findingType", "severity", "confidence", "supportingEvidenceRefIds", "contradictingEvidenceRefIds"] }
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
"dissentSummary": {
|
|
148
|
+
"type": "object", "additionalProperties": false,
|
|
149
|
+
"required": ["sourceArtifactId", "localDissentId", "statement", "resolutionCondition"],
|
|
150
|
+
"properties": {
|
|
151
|
+
"sourceArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
152
|
+
"localDissentId": { "type": "string", "pattern": "^dissent:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
153
|
+
"statement": { "$ref": "#/$defs/text" }, "resolutionCondition": { "$ref": "#/$defs/text" }
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"gapSummary": {
|
|
157
|
+
"oneOf": [
|
|
158
|
+
{ "$ref": "#/$defs/roleGapSummary" },
|
|
159
|
+
{ "$ref": "#/$defs/evidenceGapSummary" }
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"roleGapSummary": {
|
|
163
|
+
"type": "object", "additionalProperties": false,
|
|
164
|
+
"required": ["absenceId", "kind", "roleId", "roleKind", "roleVersion", "sourceAssignmentId", "reason", "recoveryDisposition"],
|
|
165
|
+
"properties": {
|
|
166
|
+
"absenceId": { "$ref": "#/$defs/absenceId" },
|
|
167
|
+
"kind": { "const": "role" },
|
|
168
|
+
"roleId": { "$ref": "operating-assignment.schema.json#/$defs/roleInputAbsence/properties/roleId" },
|
|
169
|
+
"roleKind": { "enum": ["advisor", "challenger", "chair"] },
|
|
170
|
+
"roleVersion": { "$ref": "#/$defs/version" },
|
|
171
|
+
"sourceAssignmentId": { "oneOf": [{ "type": "null" }, { "$ref": "#/$defs/assignmentId" }] },
|
|
172
|
+
"reason": { "$ref": "operating-assignment.schema.json#/$defs/roleInputAbsence/properties/reason" },
|
|
173
|
+
"recoveryDisposition": { "$ref": "operating-assignment.schema.json#/$defs/roleInputAbsence/properties/recoveryDisposition" }
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"evidenceGapSummary": {
|
|
177
|
+
"type": "object", "additionalProperties": false,
|
|
178
|
+
"required": ["absenceId", "kind", "requirementId", "sourceContracts", "reason", "recoveryDisposition"],
|
|
179
|
+
"properties": {
|
|
180
|
+
"absenceId": { "$ref": "#/$defs/absenceId" },
|
|
181
|
+
"kind": { "const": "evidence" },
|
|
182
|
+
"requirementId": { "$ref": "#/$defs/identifier" },
|
|
183
|
+
"sourceContracts": {
|
|
184
|
+
"type": "array", "minItems": 1, "maxItems": 16, "uniqueItems": true,
|
|
185
|
+
"items": {
|
|
186
|
+
"type": "object", "additionalProperties": false, "required": ["id", "version"],
|
|
187
|
+
"properties": { "id": { "$ref": "#/$defs/identifier" }, "version": { "$ref": "#/$defs/version" } }
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"reason": { "$ref": "operating-assignment.schema.json#/$defs/evidenceInputAbsence/properties/reason" },
|
|
191
|
+
"recoveryDisposition": { "$ref": "operating-assignment.schema.json#/$defs/evidenceInputAbsence/properties/recoveryDisposition" }
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"dispositionChoice": {
|
|
195
|
+
"type": "object", "additionalProperties": false,
|
|
196
|
+
"required": ["choiceId", "choiceHash", "label", "submitArguments"],
|
|
197
|
+
"properties": {
|
|
198
|
+
"choiceId": { "type": "string", "pattern": "^rch_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
199
|
+
"choiceHash": { "$ref": "#/$defs/hash" },
|
|
200
|
+
"label": { "$ref": "#/$defs/title" },
|
|
201
|
+
"submitArguments": { "$ref": "#/$defs/reviewSubmitArguments" }
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"reviewSubmitArguments": {
|
|
205
|
+
"type": "object", "additionalProperties": false,
|
|
206
|
+
"required": ["reviewId", "cycleId", "actor", "scope", "disposition", "workDispositions"],
|
|
207
|
+
"properties": {
|
|
208
|
+
"reviewId": { "type": "string", "pattern": "^rev_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
209
|
+
"cycleId": { "$ref": "#/$defs/cycleId" },
|
|
210
|
+
"actor": { "$ref": "#/$defs/humanActor" },
|
|
211
|
+
"scope": { "$ref": "#/$defs/scope" },
|
|
212
|
+
"disposition": { "enum": ["approved", "changes_requested", "rejected", "cancelled"] },
|
|
213
|
+
"workDispositions": { "type": "array", "maxItems": 1024, "uniqueItems": true, "items": { "$ref": "operating-review.schema.json#/$defs/workDisposition" } }
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-review-receipt.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-review-receipt", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 owner-bound review receipt",
|
|
6
|
+
"description": "Post-commit proof of the exact human owner's Review disposition. The runtime owns receiptId and committedAt.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"required": [
|
|
10
|
+
"kind", "schemaVersion", "protocolVersion", "receiptId", "cycleId", "readEventHead", "eventHead", "scope", "actor",
|
|
11
|
+
"review", "decision", "seatStatus", "decisions", "actions", "findings", "dissent", "gaps",
|
|
12
|
+
"dispositionChoices", "appliedChoiceId", "appliedChoiceHash", "appliedWorkDispositions", "summary", "committedAt"
|
|
13
|
+
],
|
|
14
|
+
"properties": {
|
|
15
|
+
"kind": { "const": "operating-review-receipt" },
|
|
16
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
17
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
18
|
+
"receiptId": { "type": "string", "pattern": "^rrc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
19
|
+
"cycleId": { "$ref": "operating-review-read.schema.json#/$defs/cycleId" },
|
|
20
|
+
"readEventHead": { "$ref": "operating-review-read.schema.json#/$defs/eventHead" },
|
|
21
|
+
"eventHead": { "$ref": "operating-review-read.schema.json#/$defs/eventHead" },
|
|
22
|
+
"scope": { "$ref": "operating-review-read.schema.json#/$defs/scope" },
|
|
23
|
+
"actor": { "$ref": "operating-review-read.schema.json#/$defs/humanActor" },
|
|
24
|
+
"review": { "$ref": "operating-review.schema.json" },
|
|
25
|
+
"decision": { "enum": ["approved", "changes_requested", "rejected", "cancelled"] },
|
|
26
|
+
"seatStatus": { "type": "array", "maxItems": 16, "items": { "$ref": "operating-review-read.schema.json#/$defs/seatStatus" } },
|
|
27
|
+
"decisions": { "type": "array", "maxItems": 256, "items": { "$ref": "operating-review-read.schema.json#/$defs/decisionSummary" } },
|
|
28
|
+
"actions": { "type": "array", "maxItems": 512, "items": { "$ref": "operating-review-read.schema.json#/$defs/actionSummary" } },
|
|
29
|
+
"findings": { "type": "array", "maxItems": 256, "items": { "$ref": "operating-review-read.schema.json#/$defs/findingSummary" } },
|
|
30
|
+
"dissent": { "type": "array", "maxItems": 256, "items": { "$ref": "operating-review-read.schema.json#/$defs/dissentSummary" } },
|
|
31
|
+
"gaps": { "type": "array", "maxItems": 2048, "items": { "$ref": "operating-review-read.schema.json#/$defs/gapSummary" } },
|
|
32
|
+
"dispositionChoices": { "type": "array", "minItems": 1, "maxItems": 128, "items": { "$ref": "operating-review-read.schema.json#/$defs/dispositionChoice" } },
|
|
33
|
+
"appliedChoiceId": { "type": "string", "pattern": "^rch_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
34
|
+
"appliedChoiceHash": { "$ref": "operating-review-read.schema.json#/$defs/hash" },
|
|
35
|
+
"appliedWorkDispositions": { "type": "array", "maxItems": 1024, "uniqueItems": true, "items": { "$ref": "operating-review.schema.json#/$defs/workDisposition" } },
|
|
36
|
+
"boundSubmission": { "$ref": "operate-review-bound-submission.schema.json" },
|
|
37
|
+
"summary": { "$ref": "#/$defs/summary" },
|
|
38
|
+
"committedAt": { "type": "string", "format": "date-time" }
|
|
39
|
+
},
|
|
40
|
+
"$defs": {
|
|
41
|
+
"replayProjection": {
|
|
42
|
+
"type": "object",
|
|
43
|
+
"additionalProperties": false,
|
|
44
|
+
"description": "Runtime-owned pre-commit Review read and exact applied choice proof retained for byte-identical receipt replay. Receipt identity, post-commit Event head, and commit time derive from the committed Event and are intentionally excluded to avoid a hash cycle.",
|
|
45
|
+
"required": ["read", "appliedChoiceId", "appliedChoiceHash"],
|
|
46
|
+
"properties": {
|
|
47
|
+
"read": { "$ref": "operating-review-read.schema.json" },
|
|
48
|
+
"appliedChoiceId": { "$ref": "#/properties/appliedChoiceId" },
|
|
49
|
+
"appliedChoiceHash": { "$ref": "#/properties/appliedChoiceHash" },
|
|
50
|
+
"boundSubmission": { "$ref": "operate-review-bound-submission.schema.json" }
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"summary": {
|
|
54
|
+
"type": "object", "additionalProperties": false,
|
|
55
|
+
"required": ["decisionCount", "actionCount", "findingCount", "dissentCount", "gapCount", "message"],
|
|
56
|
+
"properties": {
|
|
57
|
+
"decisionCount": { "type": "integer", "minimum": 0 }, "actionCount": { "type": "integer", "minimum": 0 },
|
|
58
|
+
"findingCount": { "type": "integer", "minimum": 0 }, "dissentCount": { "type": "integer", "minimum": 0 },
|
|
59
|
+
"gapCount": { "type": "integer", "minimum": 0 },
|
|
60
|
+
"message": { "type": "string", "minLength": 1, "maxLength": 4096, "pattern": "^.*\\S.*$" }
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-review.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-review", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 cycle-scoped review",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "reviewId", "cycleId", "ownerActorId", "state", "disposition", "workDispositions", "createdAt", "updatedAt"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-review" },
|
|
11
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
12
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
13
|
+
"reviewId": { "type": "string", "pattern": "^rev_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
14
|
+
"cycleId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
15
|
+
"subject": { "$ref": "#/$defs/subject" },
|
|
16
|
+
"ownerActorId": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
17
|
+
"state": { "type": "string", "enum": ["pending", "approved", "changes_requested", "rejected", "cancelled"] },
|
|
18
|
+
"disposition": { "type": ["string", "null"], "enum": [null, "approved", "changes_requested", "rejected", "cancelled"] },
|
|
19
|
+
"workDispositions": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/workDisposition" } },
|
|
20
|
+
"createdAt": { "type": "string", "format": "date-time" },
|
|
21
|
+
"updatedAt": { "type": "string", "format": "date-time" }
|
|
22
|
+
},
|
|
23
|
+
"oneOf": [
|
|
24
|
+
{ "title": "pending review", "properties": { "state": { "const": "pending" }, "disposition": { "const": null }, "workDispositions": { "maxItems": 0 } } },
|
|
25
|
+
{ "title": "approved review", "properties": { "state": { "const": "approved" }, "disposition": { "const": "approved" } } },
|
|
26
|
+
{ "title": "changes requested review", "properties": { "state": { "const": "changes_requested" }, "disposition": { "const": "changes_requested" }, "workDispositions": { "maxItems": 0 } } },
|
|
27
|
+
{ "title": "rejected review", "properties": { "state": { "const": "rejected" }, "disposition": { "const": "rejected" }, "workDispositions": { "maxItems": 0 } } },
|
|
28
|
+
{ "title": "cancelled review", "properties": { "state": { "const": "cancelled" }, "disposition": { "const": "cancelled" }, "workDispositions": { "maxItems": 0 } } }
|
|
29
|
+
],
|
|
30
|
+
"$defs": {
|
|
31
|
+
"subject": {
|
|
32
|
+
"oneOf": [
|
|
33
|
+
{ "type": "object", "additionalProperties": false, "required": ["type", "cycleId"], "properties": { "type": { "const": "cycle" }, "cycleId": { "type": "string", "minLength": 1, "maxLength": 128 } } },
|
|
34
|
+
{ "type": "object", "additionalProperties": false, "required": ["type", "actionId", "revision", "actionHash"], "properties": { "type": { "const": "action" }, "actionId": { "type": "string", "pattern": "^act_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "revision": { "type": "integer", "minimum": 1 }, "actionHash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" } } }
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"workDisposition": {
|
|
38
|
+
"type": "object", "additionalProperties": false,
|
|
39
|
+
"required": ["entityType", "entityId", "disposition"],
|
|
40
|
+
"properties": {
|
|
41
|
+
"entityType": { "type": "string", "enum": ["operating-finding", "operating-decision", "operating-action"] },
|
|
42
|
+
"entityId": { "type": "string", "pattern": "^(?:fnd|dec|act)_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
43
|
+
"disposition": { "type": "string", "enum": ["accepted", "approved", "rejected", "resolved", "deferred", "superseded", "cancelled"] }
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-risk.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-risk", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 persistent risk",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": [
|
|
9
|
+
"kind", "schemaVersion", "protocolVersion", "riskId", "scopeId", "domainId", "domainVersion",
|
|
10
|
+
"origin", "title", "statement", "state", "likelihood", "impact", "exposure", "ownerActorId", "mitigations", "triggerIds", "evidenceRefIds",
|
|
11
|
+
"sourceArtifactId", "closedAt", "createdAt", "updatedAt", "revisionId", "revision", "predecessorRevisionId"
|
|
12
|
+
],
|
|
13
|
+
"properties": {
|
|
14
|
+
"kind": { "const": "operating-risk" },
|
|
15
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
16
|
+
"protocolVersion": { "const": "2.0.0" },
|
|
17
|
+
"riskId": { "$ref": "#/$defs/riskId" },
|
|
18
|
+
"scopeId": { "$ref": "#/$defs/id" },
|
|
19
|
+
"domainId": { "$ref": "#/$defs/id" },
|
|
20
|
+
"domainVersion": { "$ref": "#/$defs/version" },
|
|
21
|
+
"origin": { "enum": ["generic", "operating-intelligence"] },
|
|
22
|
+
"sourceCycleId": { "$ref": "#/$defs/cycleId" },
|
|
23
|
+
"sourceAssignmentId": { "$ref": "#/$defs/assignmentId" },
|
|
24
|
+
"sourceLocalRiskId": { "$ref": "#/$defs/localRiskId" },
|
|
25
|
+
"sourceClaimIds": { "type": "array", "minItems": 1, "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/localClaimId" } },
|
|
26
|
+
"title": { "$ref": "#/$defs/title" },
|
|
27
|
+
"statement": { "$ref": "#/$defs/text" },
|
|
28
|
+
"state": { "enum": ["open", "monitoring", "mitigated", "closed", "superseded"] },
|
|
29
|
+
"likelihood": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
30
|
+
"impact": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
31
|
+
"sourceImpact": { "enum": ["low", "medium", "high", "critical"] },
|
|
32
|
+
"exposure": { "type": "number", "minimum": 0, "maximum": 1 },
|
|
33
|
+
"exposureStatement": { "$ref": "#/$defs/text" },
|
|
34
|
+
"exposedSurfaces": { "type": "array", "minItems": 1, "maxItems": 64, "uniqueItems": true, "items": { "$ref": "#/$defs/title" } },
|
|
35
|
+
"ownerActorId": { "type": ["string", "null"], "minLength": 1, "maxLength": 128 },
|
|
36
|
+
"mitigation": { "$ref": "#/$defs/text" },
|
|
37
|
+
"mitigations": { "type": "array", "minItems": 1, "maxItems": 32, "items": { "$ref": "#/$defs/text" } },
|
|
38
|
+
"reversibility": { "$ref": "#/$defs/text" },
|
|
39
|
+
"triggerIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/triggerId" } },
|
|
40
|
+
"evidenceRefIds": { "type": "array", "maxItems": 128, "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceRefId" } },
|
|
41
|
+
"sourceArtifactId": { "$ref": "#/$defs/artifactId" },
|
|
42
|
+
"closedAt": { "type": ["string", "null"], "format": "date-time" },
|
|
43
|
+
"createdAt": { "type": "string", "format": "date-time" },
|
|
44
|
+
"updatedAt": { "type": "string", "format": "date-time" },
|
|
45
|
+
"revisionId": { "$ref": "#/$defs/riskId" },
|
|
46
|
+
"revision": { "type": "integer", "minimum": 1 },
|
|
47
|
+
"predecessorRevisionId": { "type": ["string", "null"], "pattern": "^rsk_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }
|
|
48
|
+
},
|
|
49
|
+
"allOf": [
|
|
50
|
+
{
|
|
51
|
+
"if": { "properties": { "origin": { "const": "generic" } }, "required": ["origin"] },
|
|
52
|
+
"then": {
|
|
53
|
+
"not": {
|
|
54
|
+
"anyOf": [
|
|
55
|
+
{ "required": ["sourceCycleId"] },
|
|
56
|
+
{ "required": ["sourceAssignmentId"] },
|
|
57
|
+
{ "required": ["sourceLocalRiskId"] },
|
|
58
|
+
{ "required": ["sourceClaimIds"] },
|
|
59
|
+
{ "required": ["sourceImpact"] },
|
|
60
|
+
{ "required": ["exposureStatement"] },
|
|
61
|
+
{ "required": ["exposedSurfaces"] },
|
|
62
|
+
{ "required": ["mitigation"] },
|
|
63
|
+
{ "required": ["reversibility"] }
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"if": { "properties": { "origin": { "const": "operating-intelligence" } }, "required": ["origin"] },
|
|
70
|
+
"then": {
|
|
71
|
+
"required": [
|
|
72
|
+
"sourceCycleId", "sourceAssignmentId", "sourceLocalRiskId", "sourceClaimIds", "sourceImpact",
|
|
73
|
+
"exposureStatement", "exposedSurfaces", "mitigation", "reversibility"
|
|
74
|
+
]
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"if": { "properties": { "state": { "const": "closed" } }, "required": ["state"] },
|
|
79
|
+
"then": { "properties": { "closedAt": { "type": "string", "format": "date-time" } } }
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"$defs": {
|
|
83
|
+
"artifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
84
|
+
"assignmentId": { "type": "string", "pattern": "^asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
85
|
+
"cycleId": { "type": "string", "pattern": "^cyc_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
86
|
+
"evidenceRefId": { "type": "string", "pattern": "^evr_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
87
|
+
"id": { "type": "string", "minLength": 1, "maxLength": 128 },
|
|
88
|
+
"localClaimId": { "type": "string", "pattern": "^claim:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
89
|
+
"localRiskId": { "type": "string", "pattern": "^risk:asg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}:[1-9][0-9]*$" },
|
|
90
|
+
"riskId": { "type": "string", "pattern": "^rsk_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
91
|
+
"text": { "type": "string", "minLength": 1, "maxLength": 4096, "pattern": "^[\\s\\S]*\\S[\\s\\S]*$" },
|
|
92
|
+
"title": { "type": "string", "minLength": 1, "maxLength": 256, "pattern": "^\\S(?:[\\s\\S]*\\S)?$" },
|
|
93
|
+
"triggerId": { "type": "string", "pattern": "^trg_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
94
|
+
"version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" }
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://openplanr.dev/schemas/v2.0.0/operating-rollback-plan.schema.json",
|
|
3
|
+
"x-openplanr-contract": { "id": "operating-rollback-plan", "version": "2.0.0" }, "title": "OpenPlanr Operate 2.0 rollback plan",
|
|
4
|
+
"type": "object", "additionalProperties": false,
|
|
5
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "rollbackPlanId", "operationId", "executionResultId", "action", "eligibility", "capability", "effectClass", "executor", "baselineArtifactId", "baselineHash", "steps", "verificationPlanId", "expiresAt", "planHash"],
|
|
6
|
+
"properties": {
|
|
7
|
+
"kind": { "const": "operating-rollback-plan" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" }, "rollbackPlanId": { "type": "string", "pattern": "^rbp_[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}$" }, "executionResultId": { "type": "string", "pattern": "^xres_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "action": { "$ref": "#/$defs/action" }, "eligibility": { "enum": ["eligible", "required", "unsupported", "prohibited", "expired", "stale", "uncertain"] }, "capability": { "$ref": "#/$defs/versionedId" }, "effectClass": { "$ref": "#/$defs/effect" }, "executor": { "$ref": "#/$defs/executor" }, "baselineArtifactId": { "type": "string", "pattern": "^art_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "baselineHash": { "$ref": "#/$defs/hash" }, "steps": { "type": "array", "minItems": 1, "items": { "type": "object", "additionalProperties": false, "required": ["stepId", "description", "expectedTargetHash"], "properties": { "stepId": { "$ref": "#/$defs/id" }, "description": { "type": "string", "minLength": 1, "maxLength": 2048 }, "expectedTargetHash": { "$ref": "#/$defs/hash" } } } }, "verificationPlanId": { "type": "string", "pattern": "^vfy_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "expiresAt": { "type": "string", "format": "date-time" }, "planHash": { "$ref": "#/$defs/hash" }
|
|
8
|
+
},
|
|
9
|
+
"$defs": { "id": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" }, "version": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" }, "hash": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" }, "effect": { "enum": ["read-only", "machine-local-write", "project-write", "provider-call", "external-effect"] }, "versionedId": { "type": "object", "additionalProperties": false, "required": ["id", "version"], "properties": { "id": { "$ref": "#/$defs/id" }, "version": { "$ref": "#/$defs/version" } } }, "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" } } }, "executor": { "type": "object", "additionalProperties": false, "required": ["executorId", "executorVersion"], "properties": { "executorId": { "$ref": "#/$defs/id" }, "executorVersion": { "$ref": "#/$defs/version" } } } }
|
|
10
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v2.0.0/operating-rollback-result.schema.json",
|
|
4
|
+
"x-openplanr-contract": { "id": "operating-rollback-result", "version": "2.0.0" },
|
|
5
|
+
"title": "OpenPlanr Operate 2.0 rollback result",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"required": ["kind", "schemaVersion", "protocolVersion", "rollbackResultId", "rollbackOperationId", "operationKind", "requestFingerprint", "originalOperationId", "executionResultId", "rollbackPlanId", "action", "assignmentId", "evaluationId", "approvalIds", "grantId", "capability", "target", "effectClass", "executor", "connector", "status", "targetBeforeHash", "targetAfterHash", "baselineArtifactId", "baselineHash", "inputArtifactIds", "outputArtifactIds", "effectSummary", "resultArtifactId", "verificationPlanId", "eventIds", "completedAt", "resultHash"],
|
|
9
|
+
"properties": {
|
|
10
|
+
"kind": { "const": "operating-rollback-result" }, "schemaVersion": { "const": "1.0.0" }, "protocolVersion": { "const": "2.0.0" }, "rollbackResultId": { "type": "string", "pattern": "^rbres_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "rollbackOperationId": { "type": "string", "pattern": "^op_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "operationKind": { "const": "rollback" }, "requestFingerprint": { "$ref": "#/$defs/hash" }, "originalOperationId": { "type": "string", "pattern": "^op_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "executionResultId": { "type": "string", "pattern": "^xres_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" }, "rollbackPlanId": { "type": "string", "pattern": "^rbp_[A-Za-z0-9][A-Za-z0-9._-]{7,127}$" },
|
|
11
|
+
"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}$" }, "capability": { "$ref": "#/$defs/versionedId" }, "target": { "$ref": "#/$defs/target" }, "effectClass": { "$ref": "#/$defs/effect" }, "executor": { "$ref": "#/$defs/executor" }, "connector": { "oneOf": [{ "type": "null" }, { "$ref": "#/$defs/versionedId" }] },
|
|
12
|
+
"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}$" }, "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}$" }, "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" }
|
|
13
|
+
},
|
|
14
|
+
"$defs": {
|
|
15
|
+
"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"] },
|
|
16
|
+
"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}$" } },
|
|
17
|
+
"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" } } },
|
|
18
|
+
"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 } } } }
|
|
19
|
+
}
|
|
20
|
+
}
|