@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,242 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.2.0/guided-question.schema.json",
|
|
4
|
+
"title": "OpenPlanr Protocol v1.2 guided question",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"kind",
|
|
9
|
+
"schemaVersion",
|
|
10
|
+
"protocolVersion",
|
|
11
|
+
"questionId",
|
|
12
|
+
"questionVersion",
|
|
13
|
+
"type",
|
|
14
|
+
"label",
|
|
15
|
+
"explanation",
|
|
16
|
+
"required",
|
|
17
|
+
"sensitivity",
|
|
18
|
+
"persistence",
|
|
19
|
+
"valueSemantics"
|
|
20
|
+
],
|
|
21
|
+
"properties": {
|
|
22
|
+
"kind": { "const": "guided-question" },
|
|
23
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
24
|
+
"protocolVersion": { "const": "1.2.0" },
|
|
25
|
+
"questionId": { "type": "string", "pattern": "^[a-z][a-z0-9.-]{0,63}$" },
|
|
26
|
+
"questionVersion": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+$" },
|
|
27
|
+
"type": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"enum": [
|
|
30
|
+
"text",
|
|
31
|
+
"secret",
|
|
32
|
+
"single-select",
|
|
33
|
+
"multi-select",
|
|
34
|
+
"confirmation",
|
|
35
|
+
"path",
|
|
36
|
+
"repeated-text",
|
|
37
|
+
"informational"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"label": { "type": "string", "minLength": 1, "maxLength": 160 },
|
|
41
|
+
"explanation": { "type": "string", "minLength": 1, "maxLength": 1000 },
|
|
42
|
+
"required": { "type": "boolean" },
|
|
43
|
+
"sensitivity": { "type": "string", "enum": ["public", "internal", "sensitive"] },
|
|
44
|
+
"persistence": { "type": "string", "enum": ["none", "session"] },
|
|
45
|
+
"valueSemantics": { "type": "string", "enum": ["none", "suggestion", "default"] },
|
|
46
|
+
"suggestedValue": {
|
|
47
|
+
"oneOf": [
|
|
48
|
+
{ "type": "string", "maxLength": 4096 },
|
|
49
|
+
{ "type": "boolean" },
|
|
50
|
+
{
|
|
51
|
+
"type": "array",
|
|
52
|
+
"maxItems": 50,
|
|
53
|
+
"uniqueItems": true,
|
|
54
|
+
"items": { "type": "string", "maxLength": 256 }
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"suggestionReason": { "type": "string", "minLength": 1, "maxLength": 500 },
|
|
59
|
+
"defaultValue": {
|
|
60
|
+
"oneOf": [
|
|
61
|
+
{ "type": "string", "maxLength": 4096 },
|
|
62
|
+
{ "type": "boolean" },
|
|
63
|
+
{
|
|
64
|
+
"type": "array",
|
|
65
|
+
"maxItems": 50,
|
|
66
|
+
"uniqueItems": true,
|
|
67
|
+
"items": { "type": "string", "maxLength": 256 }
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
"defaultReason": { "type": "string", "minLength": 1, "maxLength": 500 },
|
|
72
|
+
"choices": {
|
|
73
|
+
"type": "array",
|
|
74
|
+
"minItems": 1,
|
|
75
|
+
"maxItems": 50,
|
|
76
|
+
"uniqueItems": true,
|
|
77
|
+
"items": {
|
|
78
|
+
"type": "object",
|
|
79
|
+
"additionalProperties": false,
|
|
80
|
+
"required": ["id", "label"],
|
|
81
|
+
"properties": {
|
|
82
|
+
"id": { "type": "string", "pattern": "^[A-Za-z0-9][A-Za-z0-9._-]{0,127}$" },
|
|
83
|
+
"label": { "type": "string", "minLength": 1, "maxLength": 160 },
|
|
84
|
+
"description": { "type": "string", "minLength": 1, "maxLength": 500 },
|
|
85
|
+
"preselected": { "type": "boolean" }
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"validation": {
|
|
90
|
+
"type": "object",
|
|
91
|
+
"additionalProperties": false,
|
|
92
|
+
"properties": {
|
|
93
|
+
"minLength": { "type": "integer", "minimum": 0, "maximum": 4096 },
|
|
94
|
+
"maxLength": { "type": "integer", "minimum": 1, "maximum": 4096 },
|
|
95
|
+
"minItems": { "type": "integer", "minimum": 0, "maximum": 50 },
|
|
96
|
+
"maxItems": { "type": "integer", "minimum": 1, "maximum": 50 }
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"visibleWhen": {
|
|
100
|
+
"type": "array",
|
|
101
|
+
"maxItems": 8,
|
|
102
|
+
"items": {
|
|
103
|
+
"type": "object",
|
|
104
|
+
"additionalProperties": false,
|
|
105
|
+
"required": ["questionId", "operator"],
|
|
106
|
+
"properties": {
|
|
107
|
+
"questionId": { "type": "string", "pattern": "^[a-z][a-z0-9.-]{0,63}$" },
|
|
108
|
+
"operator": {
|
|
109
|
+
"type": "string",
|
|
110
|
+
"enum": ["equals", "not-equals", "contains", "not-contains", "answered", "not-answered"]
|
|
111
|
+
},
|
|
112
|
+
"value": {
|
|
113
|
+
"oneOf": [
|
|
114
|
+
{ "type": "string", "maxLength": 256 },
|
|
115
|
+
{ "type": "boolean" },
|
|
116
|
+
{ "type": "array", "maxItems": 50, "items": { "type": "string", "maxLength": 256 } }
|
|
117
|
+
]
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"oneOf": [
|
|
121
|
+
{
|
|
122
|
+
"title": "Value comparison",
|
|
123
|
+
"required": ["value"],
|
|
124
|
+
"properties": {
|
|
125
|
+
"operator": { "enum": ["equals", "not-equals", "contains", "not-contains"] }
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"title": "Presence comparison",
|
|
130
|
+
"properties": {
|
|
131
|
+
"operator": { "enum": ["answered", "not-answered"] }
|
|
132
|
+
},
|
|
133
|
+
"not": { "required": ["value"] }
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"allOf": [
|
|
140
|
+
{
|
|
141
|
+
"oneOf": [
|
|
142
|
+
{
|
|
143
|
+
"title": "Sensitive transient question",
|
|
144
|
+
"properties": {
|
|
145
|
+
"type": { "const": "secret" },
|
|
146
|
+
"sensitivity": { "const": "sensitive" },
|
|
147
|
+
"persistence": { "const": "none" },
|
|
148
|
+
"valueSemantics": { "const": "none" }
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"title": "Non-sensitive question",
|
|
153
|
+
"properties": {
|
|
154
|
+
"type": {
|
|
155
|
+
"enum": [
|
|
156
|
+
"text",
|
|
157
|
+
"single-select",
|
|
158
|
+
"multi-select",
|
|
159
|
+
"confirmation",
|
|
160
|
+
"path",
|
|
161
|
+
"repeated-text",
|
|
162
|
+
"informational"
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
"sensitivity": { "enum": ["public", "internal"] }
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"oneOf": [
|
|
172
|
+
{
|
|
173
|
+
"title": "Choice question",
|
|
174
|
+
"required": ["choices"],
|
|
175
|
+
"properties": { "type": { "enum": ["single-select", "multi-select"] } }
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"title": "Non-choice question",
|
|
179
|
+
"properties": {
|
|
180
|
+
"type": {
|
|
181
|
+
"enum": ["text", "secret", "confirmation", "path", "repeated-text", "informational"]
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"not": { "required": ["choices"] }
|
|
185
|
+
}
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"oneOf": [
|
|
190
|
+
{
|
|
191
|
+
"title": "No proposed value",
|
|
192
|
+
"properties": { "valueSemantics": { "const": "none" } },
|
|
193
|
+
"allOf": [
|
|
194
|
+
{ "not": { "required": ["suggestedValue"] } },
|
|
195
|
+
{ "not": { "required": ["defaultValue"] } }
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"title": "Suggested value",
|
|
200
|
+
"required": ["suggestedValue", "suggestionReason"],
|
|
201
|
+
"properties": { "valueSemantics": { "const": "suggestion" } },
|
|
202
|
+
"not": { "required": ["defaultValue"] }
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"title": "Default value",
|
|
206
|
+
"required": ["defaultValue", "defaultReason"],
|
|
207
|
+
"properties": { "valueSemantics": { "const": "default" } },
|
|
208
|
+
"not": { "required": ["suggestedValue"] }
|
|
209
|
+
}
|
|
210
|
+
]
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"oneOf": [
|
|
214
|
+
{
|
|
215
|
+
"title": "Informational question",
|
|
216
|
+
"properties": {
|
|
217
|
+
"type": { "const": "informational" },
|
|
218
|
+
"required": { "const": false },
|
|
219
|
+
"persistence": { "const": "none" },
|
|
220
|
+
"valueSemantics": { "const": "none" }
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"title": "Answerable question",
|
|
225
|
+
"properties": {
|
|
226
|
+
"type": {
|
|
227
|
+
"enum": [
|
|
228
|
+
"text",
|
|
229
|
+
"secret",
|
|
230
|
+
"single-select",
|
|
231
|
+
"multi-select",
|
|
232
|
+
"confirmation",
|
|
233
|
+
"path",
|
|
234
|
+
"repeated-text"
|
|
235
|
+
]
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
]
|
|
242
|
+
}
|
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.2.0/guided-questionnaire.schema.json",
|
|
4
|
+
"title": "OpenPlanr Protocol v1.2 guided questionnaire",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"kind",
|
|
9
|
+
"schemaVersion",
|
|
10
|
+
"protocolVersion",
|
|
11
|
+
"sessionId",
|
|
12
|
+
"digest",
|
|
13
|
+
"questionnaireVersion",
|
|
14
|
+
"command",
|
|
15
|
+
"projectIdentity",
|
|
16
|
+
"projectHead",
|
|
17
|
+
"configHead",
|
|
18
|
+
"adapter",
|
|
19
|
+
"stage",
|
|
20
|
+
"step",
|
|
21
|
+
"totalSteps",
|
|
22
|
+
"title",
|
|
23
|
+
"questions",
|
|
24
|
+
"createdAt",
|
|
25
|
+
"expiresAt"
|
|
26
|
+
],
|
|
27
|
+
"properties": {
|
|
28
|
+
"kind": { "const": "guided-questionnaire" },
|
|
29
|
+
"schemaVersion": { "type": "string", "enum": ["1.0.0", "1.1.0"] },
|
|
30
|
+
"protocolVersion": { "const": "1.2.0" },
|
|
31
|
+
"sessionId": { "type": "string", "pattern": "^GIS-[A-Za-z0-9._-]{8,128}$" },
|
|
32
|
+
"digest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
33
|
+
"questionnaireVersion": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+$" },
|
|
34
|
+
"command": { "type": "string", "pattern": "^[a-z][a-z0-9.-]{0,127}$" },
|
|
35
|
+
"projectIdentity": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
36
|
+
"projectHead": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
37
|
+
"configHead": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
38
|
+
"adapter": {
|
|
39
|
+
"type": "object",
|
|
40
|
+
"additionalProperties": false,
|
|
41
|
+
"required": ["runtime", "version", "interaction"],
|
|
42
|
+
"properties": {
|
|
43
|
+
"runtime": { "type": "string", "pattern": "^[a-z][a-z0-9-]*$" },
|
|
44
|
+
"version": { "type": "string", "minLength": 1, "maxLength": 64 },
|
|
45
|
+
"interaction": { "type": "string", "enum": ["native", "chat", "terminal", "none"] }
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"stage": { "type": "string", "pattern": "^[a-z][a-z0-9.-]{0,63}$" },
|
|
49
|
+
"step": { "type": "integer", "minimum": 1, "maximum": 100 },
|
|
50
|
+
"totalSteps": { "type": "integer", "minimum": 1, "maximum": 100 },
|
|
51
|
+
"title": { "type": "string", "minLength": 1, "maxLength": 160 },
|
|
52
|
+
"description": { "type": "string", "minLength": 1, "maxLength": 1000 },
|
|
53
|
+
"questions": {
|
|
54
|
+
"type": "array",
|
|
55
|
+
"minItems": 1,
|
|
56
|
+
"maxItems": 50,
|
|
57
|
+
"items": {
|
|
58
|
+
"$ref": "https://openplanr.dev/schemas/v1.2.0/guided-question.schema.json"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"submission": {
|
|
62
|
+
"type": "object",
|
|
63
|
+
"additionalProperties": false,
|
|
64
|
+
"required": [
|
|
65
|
+
"kind",
|
|
66
|
+
"version",
|
|
67
|
+
"schema",
|
|
68
|
+
"transport",
|
|
69
|
+
"envelope"
|
|
70
|
+
],
|
|
71
|
+
"properties": {
|
|
72
|
+
"kind": { "const": "guided-answer-submission" },
|
|
73
|
+
"version": { "const": "1.0.0" },
|
|
74
|
+
"schema": {
|
|
75
|
+
"const": "https://openplanr.dev/schemas/v1.2.0/guided-answer-envelope.schema.json"
|
|
76
|
+
},
|
|
77
|
+
"transport": {
|
|
78
|
+
"type": "object",
|
|
79
|
+
"additionalProperties": false,
|
|
80
|
+
"required": ["kind", "mediaType", "encoding", "maxBytes", "argv"],
|
|
81
|
+
"properties": {
|
|
82
|
+
"kind": { "const": "stdin-json" },
|
|
83
|
+
"mediaType": { "const": "application/json" },
|
|
84
|
+
"encoding": { "const": "utf-8" },
|
|
85
|
+
"maxBytes": { "const": 65536 },
|
|
86
|
+
"argv": {
|
|
87
|
+
"type": "array",
|
|
88
|
+
"minItems": 7,
|
|
89
|
+
"maxItems": 7,
|
|
90
|
+
"prefixItems": [
|
|
91
|
+
{ "const": "planr" },
|
|
92
|
+
{ "const": "operate" },
|
|
93
|
+
{ "const": "init" },
|
|
94
|
+
{ "const": "--resume" },
|
|
95
|
+
{ "type": "string", "pattern": "^GIS-[A-Za-z0-9._-]{8,128}$" },
|
|
96
|
+
{ "const": "--stdin" },
|
|
97
|
+
{ "const": "--json" }
|
|
98
|
+
],
|
|
99
|
+
"items": false
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"envelope": {
|
|
104
|
+
"type": "object",
|
|
105
|
+
"additionalProperties": false,
|
|
106
|
+
"required": ["fixedFields", "dynamicFields"],
|
|
107
|
+
"properties": {
|
|
108
|
+
"fixedFields": {
|
|
109
|
+
"type": "object",
|
|
110
|
+
"additionalProperties": false,
|
|
111
|
+
"required": [
|
|
112
|
+
"kind",
|
|
113
|
+
"schemaVersion",
|
|
114
|
+
"protocolVersion",
|
|
115
|
+
"sessionId",
|
|
116
|
+
"questionnaireVersion",
|
|
117
|
+
"command",
|
|
118
|
+
"projectIdentity",
|
|
119
|
+
"projectHead",
|
|
120
|
+
"configHead",
|
|
121
|
+
"adapter"
|
|
122
|
+
],
|
|
123
|
+
"properties": {
|
|
124
|
+
"kind": { "const": "guided-answer-envelope" },
|
|
125
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
126
|
+
"protocolVersion": { "const": "1.2.0" },
|
|
127
|
+
"sessionId": {
|
|
128
|
+
"type": "string",
|
|
129
|
+
"pattern": "^GIS-[A-Za-z0-9._-]{8,128}$"
|
|
130
|
+
},
|
|
131
|
+
"questionnaireVersion": {
|
|
132
|
+
"type": "string",
|
|
133
|
+
"pattern": "^\\d+\\.\\d+\\.\\d+$"
|
|
134
|
+
},
|
|
135
|
+
"command": {
|
|
136
|
+
"type": "string",
|
|
137
|
+
"pattern": "^[a-z][a-z0-9.-]{0,127}$"
|
|
138
|
+
},
|
|
139
|
+
"projectIdentity": {
|
|
140
|
+
"type": "string",
|
|
141
|
+
"pattern": "^sha256:[a-f0-9]{64}$"
|
|
142
|
+
},
|
|
143
|
+
"projectHead": {
|
|
144
|
+
"type": "string",
|
|
145
|
+
"pattern": "^sha256:[a-f0-9]{64}$"
|
|
146
|
+
},
|
|
147
|
+
"configHead": {
|
|
148
|
+
"type": "string",
|
|
149
|
+
"pattern": "^sha256:[a-f0-9]{64}$"
|
|
150
|
+
},
|
|
151
|
+
"adapter": {
|
|
152
|
+
"type": "object",
|
|
153
|
+
"additionalProperties": false,
|
|
154
|
+
"required": ["runtime", "version", "interaction"],
|
|
155
|
+
"properties": {
|
|
156
|
+
"runtime": {
|
|
157
|
+
"type": "string",
|
|
158
|
+
"pattern": "^[a-z][a-z0-9-]*$"
|
|
159
|
+
},
|
|
160
|
+
"version": {
|
|
161
|
+
"type": "string",
|
|
162
|
+
"minLength": 1,
|
|
163
|
+
"maxLength": 64
|
|
164
|
+
},
|
|
165
|
+
"interaction": {
|
|
166
|
+
"type": "string",
|
|
167
|
+
"enum": ["native", "chat", "terminal", "none"]
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"dynamicFields": {
|
|
174
|
+
"type": "object",
|
|
175
|
+
"additionalProperties": false,
|
|
176
|
+
"required": ["questionnaireDigest", "submittedAt", "answers"],
|
|
177
|
+
"properties": {
|
|
178
|
+
"questionnaireDigest": {
|
|
179
|
+
"type": "object",
|
|
180
|
+
"additionalProperties": false,
|
|
181
|
+
"required": ["source", "pointer"],
|
|
182
|
+
"properties": {
|
|
183
|
+
"source": { "const": "questionnaire" },
|
|
184
|
+
"pointer": { "const": "/digest" }
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"submittedAt": {
|
|
188
|
+
"type": "object",
|
|
189
|
+
"additionalProperties": false,
|
|
190
|
+
"required": ["source", "format"],
|
|
191
|
+
"properties": {
|
|
192
|
+
"source": { "const": "runtime-clock" },
|
|
193
|
+
"format": { "const": "date-time" }
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"answers": {
|
|
197
|
+
"type": "object",
|
|
198
|
+
"additionalProperties": false,
|
|
199
|
+
"required": [
|
|
200
|
+
"source",
|
|
201
|
+
"copyFields",
|
|
202
|
+
"omitUnansweredOptional",
|
|
203
|
+
"items"
|
|
204
|
+
],
|
|
205
|
+
"properties": {
|
|
206
|
+
"source": { "const": "chosen-values-by-question-id" },
|
|
207
|
+
"copyFields": {
|
|
208
|
+
"type": "array",
|
|
209
|
+
"minItems": 3,
|
|
210
|
+
"maxItems": 3,
|
|
211
|
+
"prefixItems": [
|
|
212
|
+
{ "const": "questionId" },
|
|
213
|
+
{ "const": "questionVersion" },
|
|
214
|
+
{ "const": "sensitivity" }
|
|
215
|
+
],
|
|
216
|
+
"items": false
|
|
217
|
+
},
|
|
218
|
+
"omitUnansweredOptional": { "const": true },
|
|
219
|
+
"items": {
|
|
220
|
+
"type": "array",
|
|
221
|
+
"minItems": 0,
|
|
222
|
+
"maxItems": 50,
|
|
223
|
+
"uniqueItems": true,
|
|
224
|
+
"items": {
|
|
225
|
+
"type": "object",
|
|
226
|
+
"additionalProperties": false,
|
|
227
|
+
"required": [
|
|
228
|
+
"questionId",
|
|
229
|
+
"questionVersion",
|
|
230
|
+
"sensitivity",
|
|
231
|
+
"required",
|
|
232
|
+
"valueType"
|
|
233
|
+
],
|
|
234
|
+
"properties": {
|
|
235
|
+
"questionId": {
|
|
236
|
+
"type": "string",
|
|
237
|
+
"pattern": "^[a-z][a-z0-9.-]{0,63}$"
|
|
238
|
+
},
|
|
239
|
+
"questionVersion": {
|
|
240
|
+
"type": "string",
|
|
241
|
+
"pattern": "^\\d+\\.\\d+\\.\\d+$"
|
|
242
|
+
},
|
|
243
|
+
"sensitivity": {
|
|
244
|
+
"type": "string",
|
|
245
|
+
"enum": ["public", "internal", "sensitive"]
|
|
246
|
+
},
|
|
247
|
+
"required": { "type": "boolean" },
|
|
248
|
+
"valueType": {
|
|
249
|
+
"type": "string",
|
|
250
|
+
"enum": ["string", "boolean", "string-array"]
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"createdAt": { "type": "string", "format": "date-time" },
|
|
264
|
+
"expiresAt": { "type": "string", "format": "date-time" }
|
|
265
|
+
},
|
|
266
|
+
"oneOf": [
|
|
267
|
+
{
|
|
268
|
+
"title": "Original questionnaire",
|
|
269
|
+
"properties": { "schemaVersion": { "const": "1.0.0" } },
|
|
270
|
+
"not": { "required": ["submission"] }
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"title": "Self-describing questionnaire",
|
|
274
|
+
"properties": { "schemaVersion": { "const": "1.1.0" } },
|
|
275
|
+
"required": ["submission"]
|
|
276
|
+
}
|
|
277
|
+
]
|
|
278
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://openplanr.dev/schemas/v1.2.0/guided-session.schema.json",
|
|
4
|
+
"title": "OpenPlanr Protocol v1.2 guided interaction session",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"kind",
|
|
9
|
+
"schemaVersion",
|
|
10
|
+
"protocolVersion",
|
|
11
|
+
"sessionId",
|
|
12
|
+
"state",
|
|
13
|
+
"command",
|
|
14
|
+
"projectIdentity",
|
|
15
|
+
"projectHead",
|
|
16
|
+
"configHead",
|
|
17
|
+
"questionnaireDigest",
|
|
18
|
+
"questionnaireVersion",
|
|
19
|
+
"adapter",
|
|
20
|
+
"persistedAnswers",
|
|
21
|
+
"createdAt",
|
|
22
|
+
"updatedAt",
|
|
23
|
+
"expiresAt"
|
|
24
|
+
],
|
|
25
|
+
"properties": {
|
|
26
|
+
"kind": { "const": "guided-session" },
|
|
27
|
+
"schemaVersion": { "const": "1.0.0" },
|
|
28
|
+
"protocolVersion": { "const": "1.2.0" },
|
|
29
|
+
"sessionId": { "type": "string", "pattern": "^GIS-[A-Za-z0-9._-]{8,128}$" },
|
|
30
|
+
"state": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"enum": [
|
|
33
|
+
"created",
|
|
34
|
+
"awaiting-input",
|
|
35
|
+
"preview-ready",
|
|
36
|
+
"confirmed",
|
|
37
|
+
"applied",
|
|
38
|
+
"cancelled",
|
|
39
|
+
"expired",
|
|
40
|
+
"stale",
|
|
41
|
+
"invalid"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"command": { "type": "string", "pattern": "^[a-z][a-z0-9.-]{0,127}$" },
|
|
45
|
+
"projectIdentity": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
46
|
+
"projectHead": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
47
|
+
"configHead": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
48
|
+
"questionnaireDigest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
49
|
+
"questionnaireVersion": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+$" },
|
|
50
|
+
"adapter": {
|
|
51
|
+
"type": "object",
|
|
52
|
+
"additionalProperties": false,
|
|
53
|
+
"required": ["runtime", "version", "interaction"],
|
|
54
|
+
"properties": {
|
|
55
|
+
"runtime": { "type": "string", "pattern": "^[a-z][a-z0-9-]*$" },
|
|
56
|
+
"version": { "type": "string", "minLength": 1, "maxLength": 64 },
|
|
57
|
+
"interaction": { "type": "string", "enum": ["native", "chat", "terminal", "none"] }
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"persistedAnswers": {
|
|
61
|
+
"type": "array",
|
|
62
|
+
"maxItems": 50,
|
|
63
|
+
"uniqueItems": true,
|
|
64
|
+
"items": {
|
|
65
|
+
"type": "object",
|
|
66
|
+
"additionalProperties": false,
|
|
67
|
+
"required": ["questionId", "questionVersion", "sensitivity", "value"],
|
|
68
|
+
"properties": {
|
|
69
|
+
"questionId": { "type": "string", "pattern": "^[a-z][a-z0-9.-]{0,63}$" },
|
|
70
|
+
"questionVersion": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+$" },
|
|
71
|
+
"sensitivity": { "type": "string", "enum": ["public", "internal"] },
|
|
72
|
+
"value": {
|
|
73
|
+
"oneOf": [
|
|
74
|
+
{ "type": "string", "maxLength": 4096 },
|
|
75
|
+
{ "type": "boolean" },
|
|
76
|
+
{
|
|
77
|
+
"type": "array",
|
|
78
|
+
"maxItems": 50,
|
|
79
|
+
"uniqueItems": true,
|
|
80
|
+
"items": { "type": "string", "maxLength": 4096 }
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"previewDigest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
88
|
+
"confirmationDigest": { "type": "string", "pattern": "^sha256:[a-f0-9]{64}$" },
|
|
89
|
+
"createdAt": { "type": "string", "format": "date-time" },
|
|
90
|
+
"updatedAt": { "type": "string", "format": "date-time" },
|
|
91
|
+
"expiresAt": { "type": "string", "format": "date-time" },
|
|
92
|
+
"confirmedAt": { "type": "string", "format": "date-time" },
|
|
93
|
+
"appliedAt": { "type": "string", "format": "date-time" },
|
|
94
|
+
"terminalReason": { "type": "string", "minLength": 1, "maxLength": 500 }
|
|
95
|
+
},
|
|
96
|
+
"oneOf": [
|
|
97
|
+
{
|
|
98
|
+
"title": "Created session",
|
|
99
|
+
"properties": { "state": { "const": "created" } }
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"title": "Awaiting input",
|
|
103
|
+
"properties": { "state": { "const": "awaiting-input" } }
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"title": "Preview ready",
|
|
107
|
+
"required": ["previewDigest"],
|
|
108
|
+
"properties": { "state": { "const": "preview-ready" } }
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"title": "Confirmed session",
|
|
112
|
+
"required": ["previewDigest", "confirmationDigest", "confirmedAt"],
|
|
113
|
+
"properties": { "state": { "const": "confirmed" } }
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"title": "Applied session",
|
|
117
|
+
"required": ["previewDigest", "confirmationDigest", "confirmedAt", "appliedAt"],
|
|
118
|
+
"properties": { "state": { "const": "applied" } }
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"title": "Cancelled session",
|
|
122
|
+
"required": ["terminalReason"],
|
|
123
|
+
"properties": { "state": { "const": "cancelled" } }
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"title": "Expired session",
|
|
127
|
+
"required": ["terminalReason"],
|
|
128
|
+
"properties": { "state": { "const": "expired" } }
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"title": "Stale session",
|
|
132
|
+
"required": ["terminalReason"],
|
|
133
|
+
"properties": { "state": { "const": "stale" } }
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"title": "Invalid session",
|
|
137
|
+
"required": ["terminalReason"],
|
|
138
|
+
"properties": { "state": { "const": "invalid" } }
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
}
|