@tiinex/core 0.1.1
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 +201 -0
- package/NOTICE +31 -0
- package/README.md +45 -0
- package/package.json +176 -0
- package/src/actions/record.actions.js +312 -0
- package/src/adapters/adapter.contracts.js +143 -0
- package/src/adapters/archive/archive.adapter.js +502 -0
- package/src/adapters/archive/archive.portableChangeset.js +141 -0
- package/src/adapters/archive/archive.transport.js +124 -0
- package/src/artifacts/artifact.localDraft.js +27 -0
- package/src/artifacts/artifact.normalize.js +28 -0
- package/src/artifacts/artifact.parse.js +207 -0
- package/src/artifacts/artifact.record.js +83 -0
- package/src/audit/audit.run.js +103 -0
- package/src/audit/audit.summary.js +7 -0
- package/src/diagnostics/sourceBoundary.report.js +112 -0
- package/src/export/package.apply.js +349 -0
- package/src/export/package.builder.js +366 -0
- package/src/export/package.bytes.js +164 -0
- package/src/export/package.controlIntegrity.js +42 -0
- package/src/export/package.controlTopology.js +97 -0
- package/src/export/package.fileMap.js +174 -0
- package/src/export/package.manifest.js +401 -0
- package/src/export/package.preflight.js +204 -0
- package/src/export/package.sourceReference.js +81 -0
- package/src/export/package.workspaceContext.js +144 -0
- package/src/export/package.zip.js +128 -0
- package/src/export/tree.bundle.js +278 -0
- package/src/governance/governance.boundary.js +196 -0
- package/src/integrity/integrity.c14nV2.js +190 -0
- package/src/integrity/integrity.methodReference.js +73 -0
- package/src/integrity/integrity.validate.js +56 -0
- package/src/lineage/lineage.candidateResolution.js +46 -0
- package/src/lineage/lineage.githubIssueComment.js +106 -0
- package/src/lineage/lineage.githubIssueLocal.js +196 -0
- package/src/lineage/lineage.githubIssueTarget.js +89 -0
- package/src/lineage/lineage.integrity.js +133 -0
- package/src/lineage/lineage.materialPreference.js +26 -0
- package/src/lineage/lineage.model.js +63 -0
- package/src/lineage/lineage.parentAuthority.js +5 -0
- package/src/lineage/lineage.parentBinding.js +104 -0
- package/src/lineage/lineage.pathBasis.js +47 -0
- package/src/lineage/lineage.resolve.js +388 -0
- package/src/lineage/lineage.sourceScope.js +74 -0
- package/src/lineage/lineage.targetKeys.js +80 -0
- package/src/lineage/lineage.traverse.js +132 -0
- package/src/public/applicationProjection.js +236 -0
- package/src/public/companionResources.js +246 -0
- package/src/public/index.js +16 -0
- package/src/public/node.js +2 -0
- package/src/public/schemaAncestry.js +26 -0
- package/src/publication/publication.contract.js +196 -0
- package/src/publication/publication.preflight.js +159 -0
- package/src/publication/publication.targetContract.js +241 -0
- package/src/reingest/reingest.plan.js +162 -0
- package/src/release/plan.mjs +28 -0
- package/src/release/policy.mjs +100 -0
- package/src/release/run.mjs +74 -0
- package/src/schemas/capability.registry.js +226 -0
- package/src/schemas/companion.js +245 -0
- package/src/schemas/contracts.js +6 -0
- package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.js +14 -0
- package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.json +23 -0
- package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.runtime.json +4283 -0
- package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.source.js +9 -0
- package/src/schemas/coordination/project/tiinex.project.v1.schema.js +26 -0
- package/src/schemas/coordination/project/tiinex.project.v1.schema.json +23 -0
- package/src/schemas/coordination/project/tiinex.project.v1.schema.runtime.json +1985 -0
- package/src/schemas/coordination/project/tiinex.project.v1.schema.source.js +9 -0
- package/src/schemas/core/decision/tiinex.decision.v1.schema.js +14 -0
- package/src/schemas/core/decision/tiinex.decision.v1.schema.json +24 -0
- package/src/schemas/core/decision/tiinex.decision.v1.schema.runtime.json +1700 -0
- package/src/schemas/core/decision/tiinex.decision.v1.schema.source.js +9 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.capabilities.js +14 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.en.i18n.json +6 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.findings.js +9 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.presenter.js +1 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.schema.js +32 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.schema.json +24 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.schema.runtime.json +2184 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.schema.source.js +9 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.sv.i18n.json +6 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.transitions.js +1 -0
- package/src/schemas/core/evidence/tiinex.evidence.v1.validate.js +10 -0
- package/src/schemas/core/feedback/tiinex.feedback.v1.schema.js +14 -0
- package/src/schemas/core/feedback/tiinex.feedback.v1.schema.json +23 -0
- package/src/schemas/core/feedback/tiinex.feedback.v1.schema.runtime.json +1773 -0
- package/src/schemas/core/feedback/tiinex.feedback.v1.schema.source.js +9 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.capabilities.js +11 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.contract.js +40 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.en.i18n.json +9 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.findings.js +12 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.localMaterialization.js +89 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.presenter.js +8 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.js +34 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.json +23 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.runtime.json +2029 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.source.js +9 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.sv.i18n.json +9 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.transitions.js +1 -0
- package/src/schemas/core/interpretation/tiinex.interpretation.v1.validate.js +25 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.capabilities.js +14 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.en.i18n.json +6 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.findings.js +9 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.presenter.js +1 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.schema.js +31 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.schema.json +23 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.schema.runtime.json +2033 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.schema.source.js +9 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.sv.i18n.json +6 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.transitions.js +1 -0
- package/src/schemas/core/preservation/tiinex.preservation.v1.validate.js +10 -0
- package/src/schemas/core/relation/tiinex.relation.v1.capabilities.js +7 -0
- package/src/schemas/core/relation/tiinex.relation.v1.contract.js +3 -0
- package/src/schemas/core/relation/tiinex.relation.v1.en.i18n.json +4 -0
- package/src/schemas/core/relation/tiinex.relation.v1.findings.js +9 -0
- package/src/schemas/core/relation/tiinex.relation.v1.localMaterialization.js +153 -0
- package/src/schemas/core/relation/tiinex.relation.v1.presenter.js +3 -0
- package/src/schemas/core/relation/tiinex.relation.v1.schema.js +20 -0
- package/src/schemas/core/relation/tiinex.relation.v1.schema.json +23 -0
- package/src/schemas/core/relation/tiinex.relation.v1.schema.runtime.json +1668 -0
- package/src/schemas/core/relation/tiinex.relation.v1.schema.source.js +9 -0
- package/src/schemas/core/relation/tiinex.relation.v1.sv.i18n.json +4 -0
- package/src/schemas/core/relation/tiinex.relation.v1.transitions.js +1 -0
- package/src/schemas/core/relation/tiinex.relation.v1.validate.js +36 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.capabilities.js +14 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.contract.js +57 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.en.i18n.json +4 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.findings.js +13 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.presenter.js +3 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.js +20 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.json +24 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.runtime.json +3315 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.source.js +9 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.sv.i18n.json +4 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.transitions.js +1 -0
- package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.validate.js +78 -0
- package/src/schemas/core/signal/tiinex.signal.v1.schema.js +14 -0
- package/src/schemas/core/signal/tiinex.signal.v1.schema.json +23 -0
- package/src/schemas/core/signal/tiinex.signal.v1.schema.runtime.json +1733 -0
- package/src/schemas/core/signal/tiinex.signal.v1.schema.source.js +9 -0
- package/src/schemas/core/task/tiinex.task.v1.capabilities.js +11 -0
- package/src/schemas/core/task/tiinex.task.v1.contract.js +3 -0
- package/src/schemas/core/task/tiinex.task.v1.en.i18n.json +15 -0
- package/src/schemas/core/task/tiinex.task.v1.findings.js +18 -0
- package/src/schemas/core/task/tiinex.task.v1.localMaterialization.js +148 -0
- package/src/schemas/core/task/tiinex.task.v1.presenter.js +8 -0
- package/src/schemas/core/task/tiinex.task.v1.schema.js +35 -0
- package/src/schemas/core/task/tiinex.task.v1.schema.json +23 -0
- package/src/schemas/core/task/tiinex.task.v1.schema.runtime.json +1708 -0
- package/src/schemas/core/task/tiinex.task.v1.schema.source.js +9 -0
- package/src/schemas/core/task/tiinex.task.v1.sv.i18n.json +15 -0
- package/src/schemas/core/task/tiinex.task.v1.transitions.js +3 -0
- package/src/schemas/core/task/tiinex.task.v1.validate.js +41 -0
- package/src/schemas/core/topic/tiinex.topic.v1.capabilities.js +14 -0
- package/src/schemas/core/topic/tiinex.topic.v1.creation.js +46 -0
- package/src/schemas/core/topic/tiinex.topic.v1.en.i18n.json +8 -0
- package/src/schemas/core/topic/tiinex.topic.v1.findings.js +11 -0
- package/src/schemas/core/topic/tiinex.topic.v1.localMaterialization.js +135 -0
- package/src/schemas/core/topic/tiinex.topic.v1.presenter.js +1 -0
- package/src/schemas/core/topic/tiinex.topic.v1.schema.js +34 -0
- package/src/schemas/core/topic/tiinex.topic.v1.schema.json +23 -0
- package/src/schemas/core/topic/tiinex.topic.v1.schema.runtime.json +1699 -0
- package/src/schemas/core/topic/tiinex.topic.v1.schema.source.js +9 -0
- package/src/schemas/core/topic/tiinex.topic.v1.sv.i18n.json +8 -0
- package/src/schemas/core/topic/tiinex.topic.v1.transitions.js +31 -0
- package/src/schemas/core/topic/tiinex.topic.v1.validate.js +11 -0
- package/src/schemas/creation.capability.js +289 -0
- package/src/schemas/creation.contracts.js +334 -0
- package/src/schemas/creation.executionSnapshot.js +79 -0
- package/src/schemas/creation.factoryQualification.js +73 -0
- package/src/schemas/creation.renderer.js +244 -0
- package/src/schemas/creation.representation.js +279 -0
- package/src/schemas/creation.rootMetadata.js +6 -0
- package/src/schemas/creation.schemaReferences.js +65 -0
- package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.js +14 -0
- package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.json +23 -0
- package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.runtime.json +1873 -0
- package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.source.js +9 -0
- package/src/schemas/discovery/tiinex.discovery.v1.schema.js +14 -0
- package/src/schemas/discovery/tiinex.discovery.v1.schema.json +23 -0
- package/src/schemas/discovery/tiinex.discovery.v1.schema.runtime.json +1839 -0
- package/src/schemas/discovery/tiinex.discovery.v1.schema.source.js +9 -0
- package/src/schemas/generic.artifact.module.js +25 -0
- package/src/schemas/party/organization/tiinex.party.organization.v1.schema.js +26 -0
- package/src/schemas/party/organization/tiinex.party.organization.v1.schema.json +23 -0
- package/src/schemas/party/organization/tiinex.party.organization.v1.schema.runtime.json +2249 -0
- package/src/schemas/party/organization/tiinex.party.organization.v1.schema.source.js +9 -0
- package/src/schemas/party/role/tiinex.party.role.v1.schema.js +26 -0
- package/src/schemas/party/role/tiinex.party.role.v1.schema.json +24 -0
- package/src/schemas/party/role/tiinex.party.role.v1.schema.runtime.json +2091 -0
- package/src/schemas/party/role/tiinex.party.role.v1.schema.source.js +9 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.capabilities.js +14 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.en.i18n.json +4 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.findings.js +1 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.presenter.js +1 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.js +29 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.json +21 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.runtime.json +2180 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.source.js +9 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.sv.i18n.json +4 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.transitions.js +1 -0
- package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.validate.js +1 -0
- package/src/schemas/reduction/tiinex.reduction.v1.schema.js +26 -0
- package/src/schemas/reduction/tiinex.reduction.v1.schema.json +23 -0
- package/src/schemas/reduction/tiinex.reduction.v1.schema.runtime.json +1733 -0
- package/src/schemas/reduction/tiinex.reduction.v1.schema.source.js +9 -0
- package/src/schemas/reference.shapes.js +33 -0
- package/src/schemas/registry.js +36 -0
- package/src/schemas/resolver.js +13 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.capabilities.js +14 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.en.i18n.json +4 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.findings.js +1 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.presenter.js +1 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.schema.js +29 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.schema.json +21 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.schema.runtime.json +2093 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.schema.source.js +9 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.sv.i18n.json +4 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.transitions.js +1 -0
- package/src/schemas/schema/module/tiinex.schema.module.v1.validate.js +1 -0
- package/src/schemas/schema.factory.descriptor.js +104 -0
- package/src/schemas/schema.githubSourceTarget.js +131 -0
- package/src/schemas/schema.identity.js +10 -0
- package/src/schemas/schema.reference.js +133 -0
- package/src/schemas/schema.source.js +239 -0
- package/src/schemas/tiinex.root.v1.capabilities.js +14 -0
- package/src/schemas/tiinex.root.v1.classify.js +55 -0
- package/src/schemas/tiinex.root.v1.en.i18n.json +24 -0
- package/src/schemas/tiinex.root.v1.fallback.js +84 -0
- package/src/schemas/tiinex.root.v1.findings.js +19 -0
- package/src/schemas/tiinex.root.v1.presenter.js +5 -0
- package/src/schemas/tiinex.root.v1.schema.js +29 -0
- package/src/schemas/tiinex.root.v1.schema.json +24 -0
- package/src/schemas/tiinex.root.v1.schema.runtime.json +1574 -0
- package/src/schemas/tiinex.root.v1.schema.source.js +9 -0
- package/src/schemas/tiinex.root.v1.sv.i18n.json +24 -0
- package/src/schemas/tiinex.root.v1.transitions.js +1 -0
- package/src/schemas/tiinex.root.v1.validate.js +36 -0
- package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.js +14 -0
- package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.json +23 -0
- package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.runtime.json +2027 -0
- package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.source.js +9 -0
- package/src/schemas/validation/method/tiinex.validation.method.v1.schema.js +14 -0
- package/src/schemas/validation/method/tiinex.validation.method.v1.schema.json +23 -0
- package/src/schemas/validation/method/tiinex.validation.method.v1.schema.runtime.json +1848 -0
- package/src/schemas/validation/method/tiinex.validation.method.v1.schema.source.js +9 -0
- package/src/schemas/validation/report/tiinex.validation.report.v1.schema.js +14 -0
- package/src/schemas/validation/report/tiinex.validation.report.v1.schema.json +23 -0
- package/src/schemas/validation/report/tiinex.validation.report.v1.schema.runtime.json +2015 -0
- package/src/schemas/validation/report/tiinex.validation.report.v1.schema.source.js +9 -0
- package/src/schemas/workspace/tiinex.workspace.v1.capabilities.js +12 -0
- package/src/schemas/workspace/tiinex.workspace.v1.en.i18n.json +7 -0
- package/src/schemas/workspace/tiinex.workspace.v1.findings.js +5 -0
- package/src/schemas/workspace/tiinex.workspace.v1.presenter.js +27 -0
- package/src/schemas/workspace/tiinex.workspace.v1.schema.js +30 -0
- package/src/schemas/workspace/tiinex.workspace.v1.schema.json +23 -0
- package/src/schemas/workspace/tiinex.workspace.v1.schema.runtime.json +1596 -0
- package/src/schemas/workspace/tiinex.workspace.v1.schema.source.js +9 -0
- package/src/schemas/workspace/tiinex.workspace.v1.sv.i18n.json +7 -0
- package/src/schemas/workspace/tiinex.workspace.v1.transitions.js +10 -0
- package/src/schemas/workspace/tiinex.workspace.v1.validate.js +10 -0
- package/src/sources/github/github.issueTarget.js +127 -0
- package/src/sources/origin.references.js +249 -0
- package/src/sources/source.explicitTargets.js +49 -0
- package/src/sources/transport.levels.js +107 -0
- package/src/tooling/portable/adapters/cli/cli.cold-start-input.js +34 -0
- package/src/tooling/portable/adapters/cli/cli.command-input.js +455 -0
- package/src/tooling/portable/adapters/cli/cli.common-author.js +249 -0
- package/src/tooling/portable/adapters/cli/cli.common-output.js +330 -0
- package/src/tooling/portable/adapters/cli/cli.editor-assistance.js +13 -0
- package/src/tooling/portable/adapters/cli/cli.ground-materialize.js +96 -0
- package/src/tooling/portable/adapters/cli/cli.ground-recovery.js +99 -0
- package/src/tooling/portable/adapters/cli/cli.handoff-manufacture.js +345 -0
- package/src/tooling/portable/adapters/cli/cli.handoff-sibling-allocation.js +31 -0
- package/src/tooling/portable/adapters/cli/cli.help.js +80 -0
- package/src/tooling/portable/adapters/cli/cli.land.js +13 -0
- package/src/tooling/portable/adapters/cli/cli.local-output.js +72 -0
- package/src/tooling/portable/adapters/cli/cli.material-policy.js +6 -0
- package/src/tooling/portable/adapters/cli/cli.operator-bridge.js +18 -0
- package/src/tooling/portable/adapters/cli/cli.reduction-input.js +14 -0
- package/src/tooling/portable/adapters/cli/cli.run.js +434 -0
- package/src/tooling/portable/adapters/llm/llm.entrypoint.js +34 -0
- package/src/tooling/portable/adapters/node/checkpoint.verify.js +267 -0
- package/src/tooling/portable/adapters/node/handoff.manufacture.bootstrap.js +109 -0
- package/src/tooling/portable/adapters/node/handoff.manufacture.enumeration.js +94 -0
- package/src/tooling/portable/adapters/node/handoff.manufacture.js +193 -0
- package/src/tooling/portable/adapters/node/handoff.manufacture.multiRoot.js +49 -0
- package/src/tooling/portable/adapters/node/handoff.manufacture.packageParent.js +130 -0
- package/src/tooling/portable/adapters/node/handoff.manufacture.requirements.js +353 -0
- package/src/tooling/portable/adapters/node/handoff.manufacture.scope.js +147 -0
- package/src/tooling/portable/adapters/node/workspaceCarrier.manufacture.js +62 -0
- package/src/tooling/portable/assets/asset.operations.js +170 -0
- package/src/tooling/portable/audit/audit.capability.js +119 -0
- package/src/tooling/portable/bootstrap/artifact.result.selfverify.mjs +109 -0
- package/src/tooling/portable/bootstrap/bootstrap.case.mjs +43 -0
- package/src/tooling/portable/bootstrap/tiinex.llm.bootstrap.md +814 -0
- package/src/tooling/portable/bootstrap/tiinex.llm.bootstrap.pointer.json +25 -0
- package/src/tooling/portable/checkpoint/portable.checkpoint.js +89 -0
- package/src/tooling/portable/conformance/checkpoint.qualification.js +271 -0
- package/src/tooling/portable/draft/draft.create.js +389 -0
- package/src/tooling/portable/draft/draft.crud.js +175 -0
- package/src/tooling/portable/draft/draft.exact.js +173 -0
- package/src/tooling/portable/draft/draft.operations.js +265 -0
- package/src/tooling/portable/draft/draft.qualification.js +45 -0
- package/src/tooling/portable/draft/draft.set.js +193 -0
- package/src/tooling/portable/draft/draft.validation-context.js +7 -0
- package/src/tooling/portable/editor/authoring.parent.js +37 -0
- package/src/tooling/portable/editor/editor.assistance.js +221 -0
- package/src/tooling/portable/editor/staged.validation.js +96 -0
- package/src/tooling/portable/engine.facade.js +468 -0
- package/src/tooling/portable/findings.js +92 -0
- package/src/tooling/portable/grounding/grounding.capsule.js +128 -0
- package/src/tooling/portable/grounding/grounding.continuity.js +283 -0
- package/src/tooling/portable/grounding/grounding.participantAuthority.js +20 -0
- package/src/tooling/portable/grounding/grounding.planningContext.js +34 -0
- package/src/tooling/portable/grounding/grounding.readiness.authority.js +17 -0
- package/src/tooling/portable/grounding/grounding.readiness.js +316 -0
- package/src/tooling/portable/grounding/grounding.readiness.support.js +245 -0
- package/src/tooling/portable/grounding/grounding.sourceEvidence.js +71 -0
- package/src/tooling/portable/grounding/grounding.workContext.js +72 -0
- package/src/tooling/portable/grounding/grounding.workProvenance.js +153 -0
- package/src/tooling/portable/handoff/carrierLineage.js +214 -0
- package/src/tooling/portable/handoff/carrierProfile.js +54 -0
- package/src/tooling/portable/handoff/carrierProjection.js +193 -0
- package/src/tooling/portable/handoff/carrierProjection.routeQualification.js +228 -0
- package/src/tooling/portable/handoff/carrierProjection.shared.js +7 -0
- package/src/tooling/portable/handoff/carrierProjection.workspaces.js +54 -0
- package/src/tooling/portable/handoff/coldConsumerEntrypoint.js +185 -0
- package/src/tooling/portable/handoff/coldStartQualification.contract.js +184 -0
- package/src/tooling/portable/handoff/coldStartQualification.grounding.js +392 -0
- package/src/tooling/portable/handoff/coldStartQualification.js +22 -0
- package/src/tooling/portable/handoff/coldStartQualification.materials.js +364 -0
- package/src/tooling/portable/handoff/coldStartQualification.observation.js +220 -0
- package/src/tooling/portable/handoff/coldStartQualification.run.js +81 -0
- package/src/tooling/portable/handoff/coldStartQualification.shared.js +57 -0
- package/src/tooling/portable/handoff/coldStartRolePointers.js +39 -0
- package/src/tooling/portable/handoff/contextAudit.js +247 -0
- package/src/tooling/portable/handoff/contracts/tiinex.handoff.package.v1.schema.md +409 -0
- package/src/tooling/portable/handoff/handoffAuthoringPlan.js +35 -0
- package/src/tooling/portable/handoff/handoffEndpointProjection.js +61 -0
- package/src/tooling/portable/handoff/handoffLeafProjection.js +91 -0
- package/src/tooling/portable/handoff/humanOutputPresentation.js +21 -0
- package/src/tooling/portable/handoff/manufacture.js +84 -0
- package/src/tooling/portable/handoff/materialClosure.archiveV2.binding.js +72 -0
- package/src/tooling/portable/handoff/materialClosure.archiveV2.direct.js +160 -0
- package/src/tooling/portable/handoff/materialClosure.archiveV2.indexes.js +36 -0
- package/src/tooling/portable/handoff/materialClosure.archiveV2.js +247 -0
- package/src/tooling/portable/handoff/materialClosure.archiveV2.projectionProvider.js +44 -0
- package/src/tooling/portable/handoff/materialClosure.archiveV2.workspace.js +226 -0
- package/src/tooling/portable/handoff/materialClosure.descriptor.js +169 -0
- package/src/tooling/portable/handoff/materialClosure.inputBinding.js +372 -0
- package/src/tooling/portable/handoff/materialClosure.inputBinding.support.js +62 -0
- package/src/tooling/portable/handoff/materialClosure.materialized.js +143 -0
- package/src/tooling/portable/handoff/materialClosure.materials.js +116 -0
- package/src/tooling/portable/handoff/materialClosure.package.js +181 -0
- package/src/tooling/portable/handoff/materialClosure.plan.js +204 -0
- package/src/tooling/portable/handoff/materialClosure.readiness.js +36 -0
- package/src/tooling/portable/handoff/materialClosure.requirements.js +137 -0
- package/src/tooling/portable/handoff/operatorContextProjection.js +105 -0
- package/src/tooling/portable/handoff/pointerEntrypoint.js +138 -0
- package/src/tooling/portable/handoff/qualifiedHandoffFixture.js +34 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirst.build.js +321 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirst.closure.js +126 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirst.inspect.js +194 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirst.materials.js +207 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirst.projection.js +69 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirst.roles.js +166 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirst.routes.js +113 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirst.shared.js +87 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirst.workspaces.js +160 -0
- package/src/tooling/portable/handoff/recipientV2.artifactFirstPhase1.js +44 -0
- package/src/tooling/portable/handoff/recipientV2.artifactInspection.js +55 -0
- package/src/tooling/portable/handoff/recipientV2.artifacts.js +174 -0
- package/src/tooling/portable/handoff/recipientV2.coldProjection.js +24 -0
- package/src/tooling/portable/handoff/recipientV2.delivery.js +48 -0
- package/src/tooling/portable/handoff/recipientV2.endpointRolePointers.js +179 -0
- package/src/tooling/portable/handoff/recipientV2.entryContract.js +28 -0
- package/src/tooling/portable/handoff/recipientV2.humanOutput.js +78 -0
- package/src/tooling/portable/handoff/recipientV2.inspect.helpers.js +218 -0
- package/src/tooling/portable/handoff/recipientV2.inspect.js +194 -0
- package/src/tooling/portable/handoff/recipientV2.inspect.pathToken.js +9 -0
- package/src/tooling/portable/handoff/recipientV2.inspect.projection.js +58 -0
- package/src/tooling/portable/handoff/recipientV2.inspect.workspaces.js +177 -0
- package/src/tooling/portable/handoff/recipientV2.lineage.js +142 -0
- package/src/tooling/portable/handoff/recipientV2.packageV1.build.js +147 -0
- package/src/tooling/portable/handoff/recipientV2.packageV1.constants.js +4 -0
- package/src/tooling/portable/handoff/recipientV2.packageV1.contract.js +101 -0
- package/src/tooling/portable/handoff/recipientV2.packageV1.inspect.helpers.js +126 -0
- package/src/tooling/portable/handoff/recipientV2.packageV1.inspect.js +185 -0
- package/src/tooling/portable/handoff/recipientV2.packageV1.js +12 -0
- package/src/tooling/portable/handoff/recipientV2.packageV1.shared.js +24 -0
- package/src/tooling/portable/handoff/recipientV2.packageV1.workspaceProjection.js +22 -0
- package/src/tooling/portable/handoff/recipientV2.pointer.js +40 -0
- package/src/tooling/portable/handoff/recipientV2.routeSelection.js +16 -0
- package/src/tooling/portable/handoff/recipientV2.topology.helpers.js +20 -0
- package/src/tooling/portable/handoff/recipientV2.topology.js +320 -0
- package/src/tooling/portable/handoff/recipientV2.topology.materials.js +70 -0
- package/src/tooling/portable/handoff/recipientV2.topology.workspaces.js +193 -0
- package/src/tooling/portable/handoff/recipientV2.transportManifest.js +123 -0
- package/src/tooling/portable/handoff/recipientV2.workspaceRepresentation.js +163 -0
- package/src/tooling/portable/handoff/routeArtifactConformance.js +130 -0
- package/src/tooling/portable/handoff/toolingBootstrap.js +67 -0
- package/src/tooling/portable/handoff/transportCompanion.js +175 -0
- package/src/tooling/portable/handoff/workspaceByteProvider.archive.js +95 -0
- package/src/tooling/portable/handoff/workspaceByteProvider.js +271 -0
- package/src/tooling/portable/handoff/workspaceCarrier.manufacture.js +93 -0
- package/src/tooling/portable/handoff/workspaceLandingPlan.js +142 -0
- package/src/tooling/portable/handoff/workspacePackageSources.js +105 -0
- package/src/tooling/portable/handoff/workspaceQualifiedReference.js +10 -0
- package/src/tooling/portable/handoff/workspaceSourceIdentity.js +52 -0
- package/src/tooling/portable/handoff/workspaceTargetConformance.js +134 -0
- package/src/tooling/portable/host/host.capabilities.js +181 -0
- package/src/tooling/portable/host/tool.bindings.js +357 -0
- package/src/tooling/portable/host/tool.receiptNormalization.js +141 -0
- package/src/tooling/portable/index.js +52 -0
- package/src/tooling/portable/input/node.input.js +184 -0
- package/src/tooling/portable/input/portable.input.js +249 -0
- package/src/tooling/portable/lifecycle/lifecycle.action.js +11 -0
- package/src/tooling/portable/lifecycle/lifecycle.material.js +173 -0
- package/src/tooling/portable/lifecycle/lifecycle.operations.js +34 -0
- package/src/tooling/portable/lifecycle/lifecycle.readiness.js +247 -0
- package/src/tooling/portable/lineage/lineage.integrity.apply.audit.js +22 -0
- package/src/tooling/portable/lineage/lineage.integrity.apply.evidence.js +36 -0
- package/src/tooling/portable/lineage/lineage.integrity.apply.js +306 -0
- package/src/tooling/portable/lineage/lineage.integrity.apply.structure.js +178 -0
- package/src/tooling/portable/lineage/lineage.integrity.plan.js +377 -0
- package/src/tooling/portable/lineage/lineage.integrity.projection.human.js +82 -0
- package/src/tooling/portable/lineage/lineage.integrity.projection.js +349 -0
- package/src/tooling/portable/lineage/lineage.operations.js +32 -0
- package/src/tooling/portable/lineage/lineage.print.js +398 -0
- package/src/tooling/portable/lineage/lineage.print.render.js +88 -0
- package/src/tooling/portable/lineage/lineage.print.utils.js +58 -0
- package/src/tooling/portable/lineage/lineage.publicationProviderReceipts.js +141 -0
- package/src/tooling/portable/lineage/lineage.publicationQualification.js +183 -0
- package/src/tooling/portable/lineage/lineage.search.js +301 -0
- package/src/tooling/portable/live/live.artifact.js +192 -0
- package/src/tooling/portable/live/live.export.js +107 -0
- package/src/tooling/portable/live/live.lineage.closure.js +71 -0
- package/src/tooling/portable/live/live.lineage.js +338 -0
- package/src/tooling/portable/live/live.protocol.js +181 -0
- package/src/tooling/portable/materialization/durable.materialize.js +162 -0
- package/src/tooling/portable/materialization/epistemic.plan.js +239 -0
- package/src/tooling/portable/materialization/loaded.parent.js +54 -0
- package/src/tooling/portable/materialization/materialization.facade.js +30 -0
- package/src/tooling/portable/operation.catalog.js +393 -0
- package/src/tooling/portable/operation.catalog.package.js +183 -0
- package/src/tooling/portable/operation.result.js +25 -0
- package/src/tooling/portable/orchestration/task.prepare.js +191 -0
- package/src/tooling/portable/output/artifact.result.package.js +308 -0
- package/src/tooling/portable/output/deterministic.zip.js +88 -0
- package/src/tooling/portable/output/node.artifact-set.js +223 -0
- package/src/tooling/portable/output/node.draft.js +41 -0
- package/src/tooling/portable/output/node.zip.js +39 -0
- package/src/tooling/portable/output/recipientV2.zip.js +59 -0
- package/src/tooling/portable/overview/blockingCue.js +16 -0
- package/src/tooling/portable/overview/operatingOverview.js +413 -0
- package/src/tooling/portable/package/generation.binding.js +314 -0
- package/src/tooling/portable/package/generation.binding.projection.js +128 -0
- package/src/tooling/portable/package/material.graph.js +236 -0
- package/src/tooling/portable/package/runtime.package.js +321 -0
- package/src/tooling/portable/package/schema.transition.companion.js +196 -0
- package/src/tooling/portable/package/semantic.package.graph.js +272 -0
- package/src/tooling/portable/package/semantic.package.js +203 -0
- package/src/tooling/portable/package/semantic.package.schema-resolution.js +158 -0
- package/src/tooling/portable/package/semantic.package.transition-registry.js +189 -0
- package/src/tooling/portable/package/semantic.package.types.js +18 -0
- package/src/tooling/portable/providers/schema.bootstrap.provenance.js +10 -0
- package/src/tooling/portable/providers/schema.provider.qualification.js +52 -0
- package/src/tooling/portable/providers/schema.providers.js +458 -0
- package/src/tooling/portable/publication/runtime.publication.js +53 -0
- package/src/tooling/portable/qualification.js +150 -0
- package/src/tooling/portable/reduction/reduction.composition.js +229 -0
- package/src/tooling/portable/reduction/reduction.eligibility.helpers.js +258 -0
- package/src/tooling/portable/reduction/reduction.eligibility.js +191 -0
- package/src/tooling/portable/reduction/reduction.operations.js +30 -0
- package/src/tooling/portable/reduction/reduction.preflight.js +85 -0
- package/src/tooling/portable/reduction/reduction.shared.js +173 -0
- package/src/tooling/portable/schema/bootstrap/canonical.pack.js +24 -0
- package/src/tooling/portable/schema/bootstrap/docs-3988951208eb9a8926e84ab42625d4b42fa00c2d/party/role/tiinex.party.role.v1.schema.md +289 -0
- package/src/tooling/portable/schema/bootstrap/docs-3988951208eb9a8926e84ab42625d4b42fa00c2d/validation/report/tiinex.validation.report.v1.schema.md +300 -0
- package/src/tooling/portable/schema/bootstrap/qualified-local-root/tiinex.root.v1.runtime-projection.json +48 -0
- package/src/tooling/portable/schema/bootstrap/qualified-local-root/tiinex.root.v1.schema.md +865 -0
- package/src/tooling/portable/schema/contract.compile.js +406 -0
- package/src/tooling/portable/schema/contract.compile.utils.js +9 -0
- package/src/tooling/portable/schema/contract.constraints.js +117 -0
- package/src/tooling/portable/schema/contract.envelope.validate.js +177 -0
- package/src/tooling/portable/schema/contract.field-domain.compile.js +399 -0
- package/src/tooling/portable/schema/contract.field-domain.js +247 -0
- package/src/tooling/portable/schema/contract.field-shape.compile.js +34 -0
- package/src/tooling/portable/schema/contract.inheritance.inline.js +103 -0
- package/src/tooling/portable/schema/contract.inheritance.js +210 -0
- package/src/tooling/portable/schema/contract.inheritance.record.js +76 -0
- package/src/tooling/portable/schema/contract.machine-shape.js +309 -0
- package/src/tooling/portable/schema/contract.project.js +81 -0
- package/src/tooling/portable/schema/contract.semantic-resolution.js +82 -0
- package/src/tooling/portable/schema/contract.validate.js +0 -0
- package/src/tooling/portable/schema/lexical.shape.v1.js +338 -0
- package/src/tooling/portable/schema/llm.companion.js +108 -0
- package/src/tooling/portable/schema/named.declarations.js +162 -0
- package/src/tooling/portable/schema/ordinary.contract.js +193 -0
- package/src/tooling/portable/schema/ordinary.fields.js +205 -0
- package/src/tooling/portable/schema/qualifiedLocalRoot.projection.js +70 -0
- package/src/tooling/portable/schema/qualifiedLocalRoot.runtime.js +170 -0
- package/src/tooling/portable/schema/schema.contract.js +465 -0
- package/src/tooling/portable/schema/schema.guide.js +326 -0
- package/src/tooling/portable/schema/schema.snapshot.js +119 -0
- package/src/tooling/portable/session/portable.session.js +145 -0
- package/src/tooling/portable/transfer/transfer.plan.js +102 -0
- package/src/transitions/record.transitions.js +484 -0
- package/src/transitions/transition.validate.js +129 -0
- package/src/validation/findings.js +76 -0
- package/src/validation/validateArtifact.js +216 -0
- package/src/workspaces/workspace.entrypointCapability.js +44 -0
- package/src/workspaces/workspace.materialRole.js +242 -0
- package/src/workspaces/workspace.recordPaths.js +426 -0
- package/tools/tiinex-portable.mjs +6 -0
|
@@ -0,0 +1,4283 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "tiinex.site.schema-runtime-projection.v1",
|
|
3
|
+
"generator": "schema-runtime-projection-v1",
|
|
4
|
+
"schemaId": "tiinex.handoff.v1",
|
|
5
|
+
"sourceChecksum": "2b936616989fbab2bcc8d1e6e4175369546cea5adffd5c9c9db236bc2340ef06",
|
|
6
|
+
"sourceBlobSha": "2332023aecf690279805d34c7e512a9f9799c20d",
|
|
7
|
+
"sourceBytes": 28710,
|
|
8
|
+
"bindingChecksum": "2b936616989fbab2bcc8d1e6e4175369546cea5adffd5c9c9db236bc2340ef06",
|
|
9
|
+
"validationContract": {
|
|
10
|
+
"schema": "tiinex.site.compact-portable-validation-contract.v1",
|
|
11
|
+
"schemaId": "tiinex.handoff.v1",
|
|
12
|
+
"lineage": [
|
|
13
|
+
"tiinex.root.v1",
|
|
14
|
+
"tiinex.handoff.v1"
|
|
15
|
+
],
|
|
16
|
+
"lineageQualification": {
|
|
17
|
+
"state": "valid",
|
|
18
|
+
"complete": true,
|
|
19
|
+
"lineage": [
|
|
20
|
+
"tiinex.root.v1",
|
|
21
|
+
"tiinex.handoff.v1"
|
|
22
|
+
],
|
|
23
|
+
"findings": []
|
|
24
|
+
},
|
|
25
|
+
"inheritanceResolution": {
|
|
26
|
+
"schema": "tiinex.portable.schema-inheritance-resolution.v1",
|
|
27
|
+
"state": "not-declared",
|
|
28
|
+
"declarations": [],
|
|
29
|
+
"applications": [],
|
|
30
|
+
"corroborations": [],
|
|
31
|
+
"findings": []
|
|
32
|
+
},
|
|
33
|
+
"validation": {
|
|
34
|
+
"groups": [
|
|
35
|
+
{
|
|
36
|
+
"name": "Runtime Required Fields",
|
|
37
|
+
"requiredWhen": [],
|
|
38
|
+
"categories": [
|
|
39
|
+
{
|
|
40
|
+
"name": "Required Fields",
|
|
41
|
+
"items": [
|
|
42
|
+
"Envelope Schema",
|
|
43
|
+
"Current",
|
|
44
|
+
"Current Schema",
|
|
45
|
+
"Created At"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"requiredSections": [
|
|
52
|
+
"Continuity Context",
|
|
53
|
+
"Continuity Integrity",
|
|
54
|
+
"Handoff Parties",
|
|
55
|
+
"Transfers",
|
|
56
|
+
"Required Context",
|
|
57
|
+
"Reference Context",
|
|
58
|
+
"Retained Responsibilities",
|
|
59
|
+
"Exclusions And Dependencies",
|
|
60
|
+
"Completion Expectation",
|
|
61
|
+
"Interpretation Limits"
|
|
62
|
+
],
|
|
63
|
+
"requiredHeadings": [
|
|
64
|
+
{
|
|
65
|
+
"level": 2,
|
|
66
|
+
"title": "Handoff Parties",
|
|
67
|
+
"source": "`## Handoff Parties` section"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"level": 2,
|
|
71
|
+
"title": "Transfers",
|
|
72
|
+
"source": "`## Transfers` section"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"level": 2,
|
|
76
|
+
"title": "Required Context",
|
|
77
|
+
"source": "`## Required Context` section"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"level": 2,
|
|
81
|
+
"title": "Reference Context",
|
|
82
|
+
"source": "`## Reference Context` section"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"level": 2,
|
|
86
|
+
"title": "Retained Responsibilities",
|
|
87
|
+
"source": "`## Retained Responsibilities` section"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"level": 2,
|
|
91
|
+
"title": "Exclusions And Dependencies",
|
|
92
|
+
"source": "`## Exclusions And Dependencies` section"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"level": 2,
|
|
96
|
+
"title": "Completion Expectation",
|
|
97
|
+
"source": "`## Completion Expectation` section"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"level": 2,
|
|
101
|
+
"title": "Interpretation Limits",
|
|
102
|
+
"source": "`## Interpretation Limits` section"
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
"requiredEntries": [
|
|
106
|
+
{
|
|
107
|
+
"group": "Continuity Integrity Footer",
|
|
108
|
+
"entries": [
|
|
109
|
+
"Method Entry"
|
|
110
|
+
],
|
|
111
|
+
"targetHeadings": [
|
|
112
|
+
"Continuity Integrity"
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"ordinaryGroups": [
|
|
117
|
+
{
|
|
118
|
+
"group": "Handoff Parties",
|
|
119
|
+
"qualification": "valid",
|
|
120
|
+
"target": {
|
|
121
|
+
"heading": "## Handoff Parties",
|
|
122
|
+
"title": "Handoff Parties",
|
|
123
|
+
"level": 2,
|
|
124
|
+
"authority": "root-same-name-default",
|
|
125
|
+
"requiredness": "required",
|
|
126
|
+
"qualification": "valid",
|
|
127
|
+
"findings": []
|
|
128
|
+
},
|
|
129
|
+
"requiredFields": [
|
|
130
|
+
"Purpose",
|
|
131
|
+
"From",
|
|
132
|
+
"From Kind",
|
|
133
|
+
"To",
|
|
134
|
+
"To Kind"
|
|
135
|
+
],
|
|
136
|
+
"optionalFields": [
|
|
137
|
+
"From Reference",
|
|
138
|
+
"From Capacity",
|
|
139
|
+
"From Capacity Reference",
|
|
140
|
+
"To Reference",
|
|
141
|
+
"To Capacity",
|
|
142
|
+
"To Capacity Reference",
|
|
143
|
+
"Notes"
|
|
144
|
+
],
|
|
145
|
+
"contributors": [
|
|
146
|
+
{
|
|
147
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
148
|
+
"group": "Handoff Parties",
|
|
149
|
+
"requiredFields": [
|
|
150
|
+
"Purpose",
|
|
151
|
+
"From",
|
|
152
|
+
"From Kind",
|
|
153
|
+
"To",
|
|
154
|
+
"To Kind"
|
|
155
|
+
],
|
|
156
|
+
"optionalFields": [
|
|
157
|
+
"From Reference",
|
|
158
|
+
"From Capacity",
|
|
159
|
+
"From Capacity Reference",
|
|
160
|
+
"To Reference",
|
|
161
|
+
"To Capacity",
|
|
162
|
+
"To Capacity Reference",
|
|
163
|
+
"Notes"
|
|
164
|
+
],
|
|
165
|
+
"target": {
|
|
166
|
+
"heading": "## Handoff Parties",
|
|
167
|
+
"title": "Handoff Parties",
|
|
168
|
+
"level": 2,
|
|
169
|
+
"authority": "root-same-name-default",
|
|
170
|
+
"qualification": "valid"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"group": "Completion Expectation",
|
|
177
|
+
"qualification": "valid",
|
|
178
|
+
"target": {
|
|
179
|
+
"heading": "## Completion Expectation",
|
|
180
|
+
"title": "Completion Expectation",
|
|
181
|
+
"level": 2,
|
|
182
|
+
"authority": "root-same-name-default",
|
|
183
|
+
"requiredness": "required",
|
|
184
|
+
"qualification": "valid",
|
|
185
|
+
"findings": []
|
|
186
|
+
},
|
|
187
|
+
"requiredFields": [
|
|
188
|
+
"Signal Kind",
|
|
189
|
+
"Signal Meaning"
|
|
190
|
+
],
|
|
191
|
+
"optionalFields": [
|
|
192
|
+
"Return To",
|
|
193
|
+
"Return To Reference",
|
|
194
|
+
"Expected Result Reference",
|
|
195
|
+
"Notes"
|
|
196
|
+
],
|
|
197
|
+
"contributors": [
|
|
198
|
+
{
|
|
199
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
200
|
+
"group": "Completion Expectation",
|
|
201
|
+
"requiredFields": [
|
|
202
|
+
"Signal Kind",
|
|
203
|
+
"Signal Meaning"
|
|
204
|
+
],
|
|
205
|
+
"optionalFields": [
|
|
206
|
+
"Return To",
|
|
207
|
+
"Return To Reference",
|
|
208
|
+
"Expected Result Reference",
|
|
209
|
+
"Notes"
|
|
210
|
+
],
|
|
211
|
+
"target": {
|
|
212
|
+
"heading": "## Completion Expectation",
|
|
213
|
+
"title": "Completion Expectation",
|
|
214
|
+
"level": 2,
|
|
215
|
+
"authority": "root-same-name-default",
|
|
216
|
+
"qualification": "valid"
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"group": "Interpretation Limits",
|
|
223
|
+
"qualification": "valid",
|
|
224
|
+
"target": {
|
|
225
|
+
"heading": "## Interpretation Limits",
|
|
226
|
+
"title": "Interpretation Limits",
|
|
227
|
+
"level": 2,
|
|
228
|
+
"authority": "root-same-name-default",
|
|
229
|
+
"requiredness": "required",
|
|
230
|
+
"qualification": "valid",
|
|
231
|
+
"findings": []
|
|
232
|
+
},
|
|
233
|
+
"requiredFields": [
|
|
234
|
+
"Does Not Mean",
|
|
235
|
+
"Must Not Be Used To Claim"
|
|
236
|
+
],
|
|
237
|
+
"optionalFields": [
|
|
238
|
+
"Authority Limits",
|
|
239
|
+
"Transport Limits",
|
|
240
|
+
"Review Notes"
|
|
241
|
+
],
|
|
242
|
+
"contributors": [
|
|
243
|
+
{
|
|
244
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
245
|
+
"group": "Interpretation Limits",
|
|
246
|
+
"requiredFields": [
|
|
247
|
+
"Does Not Mean",
|
|
248
|
+
"Must Not Be Used To Claim"
|
|
249
|
+
],
|
|
250
|
+
"optionalFields": [
|
|
251
|
+
"Authority Limits",
|
|
252
|
+
"Transport Limits",
|
|
253
|
+
"Review Notes"
|
|
254
|
+
],
|
|
255
|
+
"target": {
|
|
256
|
+
"heading": "## Interpretation Limits",
|
|
257
|
+
"title": "Interpretation Limits",
|
|
258
|
+
"level": 2,
|
|
259
|
+
"authority": "root-same-name-default",
|
|
260
|
+
"qualification": "valid"
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
]
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"conditionalRequirements": [
|
|
267
|
+
{
|
|
268
|
+
"name": "Contract Category Extension",
|
|
269
|
+
"requiredWhen": [
|
|
270
|
+
"A descendant schema introduces a contract category label."
|
|
271
|
+
],
|
|
272
|
+
"requiredSections": [],
|
|
273
|
+
"requiredFields": [],
|
|
274
|
+
"requiredEntries": [],
|
|
275
|
+
"allowedLabels": [],
|
|
276
|
+
"entryShapes": [
|
|
277
|
+
"Named Declaration"
|
|
278
|
+
],
|
|
279
|
+
"ordering": []
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "Contract Category Override",
|
|
283
|
+
"requiredWhen": [
|
|
284
|
+
"A descendant schema replaces the interpretation of an inherited contract category label."
|
|
285
|
+
],
|
|
286
|
+
"requiredSections": [],
|
|
287
|
+
"requiredFields": [],
|
|
288
|
+
"requiredEntries": [],
|
|
289
|
+
"allowedLabels": [],
|
|
290
|
+
"entryShapes": [
|
|
291
|
+
"Named Declaration"
|
|
292
|
+
],
|
|
293
|
+
"ordering": []
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"name": "Repairs",
|
|
297
|
+
"requiredWhen": [
|
|
298
|
+
"Repairs exists"
|
|
299
|
+
],
|
|
300
|
+
"requiredSections": [],
|
|
301
|
+
"requiredFields": [],
|
|
302
|
+
"requiredEntries": [],
|
|
303
|
+
"allowedLabels": [],
|
|
304
|
+
"entryShapes": [
|
|
305
|
+
"First-Level Hyphen List Item"
|
|
306
|
+
],
|
|
307
|
+
"ordering": []
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"name": "Parent",
|
|
311
|
+
"requiredWhen": [
|
|
312
|
+
"Parent exists"
|
|
313
|
+
],
|
|
314
|
+
"requiredSections": [],
|
|
315
|
+
"requiredFields": [
|
|
316
|
+
"Parent Schema",
|
|
317
|
+
"Trace",
|
|
318
|
+
"Origin"
|
|
319
|
+
],
|
|
320
|
+
"requiredEntries": [],
|
|
321
|
+
"allowedLabels": [],
|
|
322
|
+
"entryShapes": [],
|
|
323
|
+
"ordering": []
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"name": "Parent Origin",
|
|
327
|
+
"requiredWhen": [
|
|
328
|
+
"Parent exists"
|
|
329
|
+
],
|
|
330
|
+
"requiredSections": [],
|
|
331
|
+
"requiredFields": [],
|
|
332
|
+
"requiredEntries": [],
|
|
333
|
+
"allowedLabels": [
|
|
334
|
+
"relative",
|
|
335
|
+
"absolute",
|
|
336
|
+
"browse + git"
|
|
337
|
+
],
|
|
338
|
+
"entryShapes": [
|
|
339
|
+
"Markdown Link"
|
|
340
|
+
],
|
|
341
|
+
"ordering": [
|
|
342
|
+
"relative",
|
|
343
|
+
"absolute",
|
|
344
|
+
"browse + git"
|
|
345
|
+
]
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"name": "Envelope Extension",
|
|
349
|
+
"requiredWhen": [
|
|
350
|
+
"A descendant schema adds envelope fields."
|
|
351
|
+
],
|
|
352
|
+
"requiredSections": [],
|
|
353
|
+
"requiredFields": [],
|
|
354
|
+
"requiredEntries": [],
|
|
355
|
+
"allowedLabels": [],
|
|
356
|
+
"entryShapes": [
|
|
357
|
+
"Named Declaration"
|
|
358
|
+
],
|
|
359
|
+
"ordering": []
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "Extension",
|
|
363
|
+
"requiredWhen": [
|
|
364
|
+
"A descendant schema introduces an extension."
|
|
365
|
+
],
|
|
366
|
+
"requiredSections": [],
|
|
367
|
+
"requiredFields": [],
|
|
368
|
+
"requiredEntries": [],
|
|
369
|
+
"allowedLabels": [],
|
|
370
|
+
"entryShapes": [
|
|
371
|
+
"Named Declaration"
|
|
372
|
+
],
|
|
373
|
+
"ordering": []
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"fieldShapes": [
|
|
377
|
+
{
|
|
378
|
+
"kind": "field-shape",
|
|
379
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
380
|
+
"group": "Schema Reference Fields",
|
|
381
|
+
"field": "Envelope Schema",
|
|
382
|
+
"allowedShapes": [
|
|
383
|
+
"Markdown Link",
|
|
384
|
+
"Plain Schema Id"
|
|
385
|
+
],
|
|
386
|
+
"allowedShapeAuthorities": [
|
|
387
|
+
{
|
|
388
|
+
"shapeLabel": "Markdown Link",
|
|
389
|
+
"qualification": "evaluable",
|
|
390
|
+
"useSourceSchemaId": "tiinex.root.v1",
|
|
391
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
392
|
+
"visibleSchemaIds": [
|
|
393
|
+
"tiinex.root.v1"
|
|
394
|
+
],
|
|
395
|
+
"definition": {
|
|
396
|
+
"kind": "machine-shape-definition",
|
|
397
|
+
"shapeLabel": "Markdown Link",
|
|
398
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
399
|
+
"sourceGroup": "Machine Shape Authority",
|
|
400
|
+
"declarationSource": {
|
|
401
|
+
"line": 408
|
|
402
|
+
},
|
|
403
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
404
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
405
|
+
"startRule": "markdown-link",
|
|
406
|
+
"grammarRules": [
|
|
407
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
408
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
409
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
410
|
+
],
|
|
411
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
412
|
+
"qualificationSupport": "available",
|
|
413
|
+
"definitionQualification": "valid",
|
|
414
|
+
"definitionFindings": [],
|
|
415
|
+
"declarationStructure": {
|
|
416
|
+
"value": "Markdown Link",
|
|
417
|
+
"children": [
|
|
418
|
+
{
|
|
419
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
420
|
+
"children": []
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
424
|
+
"children": []
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
428
|
+
"children": []
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
432
|
+
"children": []
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
436
|
+
"children": []
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"value": "Start Rule: markdown-link",
|
|
440
|
+
"children": []
|
|
441
|
+
}
|
|
442
|
+
]
|
|
443
|
+
},
|
|
444
|
+
"compiledGrammar": {
|
|
445
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
446
|
+
"qualification": "valid",
|
|
447
|
+
"startRule": "markdown-link",
|
|
448
|
+
"grammarRules": [
|
|
449
|
+
{
|
|
450
|
+
"name": "markdown-link",
|
|
451
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
452
|
+
"expression": {
|
|
453
|
+
"type": "concatenation",
|
|
454
|
+
"parts": [
|
|
455
|
+
{
|
|
456
|
+
"type": "literal",
|
|
457
|
+
"value": "["
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"type": "reference",
|
|
461
|
+
"name": "label"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"type": "literal",
|
|
465
|
+
"value": "]("
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"type": "reference",
|
|
469
|
+
"name": "target"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"type": "literal",
|
|
473
|
+
"value": ")"
|
|
474
|
+
}
|
|
475
|
+
]
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"name": "label",
|
|
480
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
481
|
+
"expression": {
|
|
482
|
+
"type": "repeat",
|
|
483
|
+
"quantifier": "+",
|
|
484
|
+
"expression": {
|
|
485
|
+
"type": "any-except",
|
|
486
|
+
"exclusions": [
|
|
487
|
+
"]",
|
|
488
|
+
"\t",
|
|
489
|
+
"\r",
|
|
490
|
+
"\n"
|
|
491
|
+
]
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"name": "target",
|
|
497
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
498
|
+
"expression": {
|
|
499
|
+
"type": "repeat",
|
|
500
|
+
"quantifier": "+",
|
|
501
|
+
"expression": {
|
|
502
|
+
"type": "any-except",
|
|
503
|
+
"exclusions": [
|
|
504
|
+
")",
|
|
505
|
+
" ",
|
|
506
|
+
"\t",
|
|
507
|
+
"\r",
|
|
508
|
+
"\n"
|
|
509
|
+
]
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
],
|
|
514
|
+
"findings": []
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"resolvedDefinitionProvenance": {
|
|
518
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
519
|
+
"sourceGroup": "Machine Shape Authority",
|
|
520
|
+
"declarationSource": {
|
|
521
|
+
"line": 408
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"visibleDefinitions": [
|
|
525
|
+
{
|
|
526
|
+
"shapeLabel": "Markdown Link",
|
|
527
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
528
|
+
"sourceGroup": "Machine Shape Authority",
|
|
529
|
+
"declarationSource": {
|
|
530
|
+
"line": 408
|
|
531
|
+
},
|
|
532
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
533
|
+
"definitionQualification": "valid",
|
|
534
|
+
"qualificationSupport": "available"
|
|
535
|
+
}
|
|
536
|
+
],
|
|
537
|
+
"findings": []
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"shapeLabel": "Plain Schema Id",
|
|
541
|
+
"qualification": "unresolved",
|
|
542
|
+
"useSourceSchemaId": "tiinex.root.v1",
|
|
543
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
544
|
+
"visibleSchemaIds": [
|
|
545
|
+
"tiinex.root.v1"
|
|
546
|
+
],
|
|
547
|
+
"definition": null,
|
|
548
|
+
"resolvedDefinitionProvenance": null,
|
|
549
|
+
"visibleDefinitions": [],
|
|
550
|
+
"findings": [
|
|
551
|
+
"No visible Machine Shape Definition exists for exact label Plain Schema Id."
|
|
552
|
+
]
|
|
553
|
+
}
|
|
554
|
+
]
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"kind": "field-shape",
|
|
558
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
559
|
+
"group": "Schema Reference Fields",
|
|
560
|
+
"field": "Parent Schema",
|
|
561
|
+
"allowedShapes": [
|
|
562
|
+
"Markdown Link",
|
|
563
|
+
"Plain Schema Id"
|
|
564
|
+
],
|
|
565
|
+
"allowedShapeAuthorities": [
|
|
566
|
+
{
|
|
567
|
+
"shapeLabel": "Markdown Link",
|
|
568
|
+
"qualification": "evaluable",
|
|
569
|
+
"useSourceSchemaId": "tiinex.root.v1",
|
|
570
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
571
|
+
"visibleSchemaIds": [
|
|
572
|
+
"tiinex.root.v1"
|
|
573
|
+
],
|
|
574
|
+
"definition": {
|
|
575
|
+
"kind": "machine-shape-definition",
|
|
576
|
+
"shapeLabel": "Markdown Link",
|
|
577
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
578
|
+
"sourceGroup": "Machine Shape Authority",
|
|
579
|
+
"declarationSource": {
|
|
580
|
+
"line": 408
|
|
581
|
+
},
|
|
582
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
583
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
584
|
+
"startRule": "markdown-link",
|
|
585
|
+
"grammarRules": [
|
|
586
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
587
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
588
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
589
|
+
],
|
|
590
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
591
|
+
"qualificationSupport": "available",
|
|
592
|
+
"definitionQualification": "valid",
|
|
593
|
+
"definitionFindings": [],
|
|
594
|
+
"declarationStructure": {
|
|
595
|
+
"value": "Markdown Link",
|
|
596
|
+
"children": [
|
|
597
|
+
{
|
|
598
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
599
|
+
"children": []
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
603
|
+
"children": []
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
607
|
+
"children": []
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
611
|
+
"children": []
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
615
|
+
"children": []
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"value": "Start Rule: markdown-link",
|
|
619
|
+
"children": []
|
|
620
|
+
}
|
|
621
|
+
]
|
|
622
|
+
},
|
|
623
|
+
"compiledGrammar": {
|
|
624
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
625
|
+
"qualification": "valid",
|
|
626
|
+
"startRule": "markdown-link",
|
|
627
|
+
"grammarRules": [
|
|
628
|
+
{
|
|
629
|
+
"name": "markdown-link",
|
|
630
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
631
|
+
"expression": {
|
|
632
|
+
"type": "concatenation",
|
|
633
|
+
"parts": [
|
|
634
|
+
{
|
|
635
|
+
"type": "literal",
|
|
636
|
+
"value": "["
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"type": "reference",
|
|
640
|
+
"name": "label"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"type": "literal",
|
|
644
|
+
"value": "]("
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"type": "reference",
|
|
648
|
+
"name": "target"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"type": "literal",
|
|
652
|
+
"value": ")"
|
|
653
|
+
}
|
|
654
|
+
]
|
|
655
|
+
}
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"name": "label",
|
|
659
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
660
|
+
"expression": {
|
|
661
|
+
"type": "repeat",
|
|
662
|
+
"quantifier": "+",
|
|
663
|
+
"expression": {
|
|
664
|
+
"type": "any-except",
|
|
665
|
+
"exclusions": [
|
|
666
|
+
"]",
|
|
667
|
+
"\t",
|
|
668
|
+
"\r",
|
|
669
|
+
"\n"
|
|
670
|
+
]
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"name": "target",
|
|
676
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
677
|
+
"expression": {
|
|
678
|
+
"type": "repeat",
|
|
679
|
+
"quantifier": "+",
|
|
680
|
+
"expression": {
|
|
681
|
+
"type": "any-except",
|
|
682
|
+
"exclusions": [
|
|
683
|
+
")",
|
|
684
|
+
" ",
|
|
685
|
+
"\t",
|
|
686
|
+
"\r",
|
|
687
|
+
"\n"
|
|
688
|
+
]
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
],
|
|
693
|
+
"findings": []
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
"resolvedDefinitionProvenance": {
|
|
697
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
698
|
+
"sourceGroup": "Machine Shape Authority",
|
|
699
|
+
"declarationSource": {
|
|
700
|
+
"line": 408
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"visibleDefinitions": [
|
|
704
|
+
{
|
|
705
|
+
"shapeLabel": "Markdown Link",
|
|
706
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
707
|
+
"sourceGroup": "Machine Shape Authority",
|
|
708
|
+
"declarationSource": {
|
|
709
|
+
"line": 408
|
|
710
|
+
},
|
|
711
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
712
|
+
"definitionQualification": "valid",
|
|
713
|
+
"qualificationSupport": "available"
|
|
714
|
+
}
|
|
715
|
+
],
|
|
716
|
+
"findings": []
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"shapeLabel": "Plain Schema Id",
|
|
720
|
+
"qualification": "unresolved",
|
|
721
|
+
"useSourceSchemaId": "tiinex.root.v1",
|
|
722
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
723
|
+
"visibleSchemaIds": [
|
|
724
|
+
"tiinex.root.v1"
|
|
725
|
+
],
|
|
726
|
+
"definition": null,
|
|
727
|
+
"resolvedDefinitionProvenance": null,
|
|
728
|
+
"visibleDefinitions": [],
|
|
729
|
+
"findings": [
|
|
730
|
+
"No visible Machine Shape Definition exists for exact label Plain Schema Id."
|
|
731
|
+
]
|
|
732
|
+
}
|
|
733
|
+
]
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"kind": "field-shape",
|
|
737
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
738
|
+
"group": "Schema Reference Fields",
|
|
739
|
+
"field": "Current Schema",
|
|
740
|
+
"allowedShapes": [
|
|
741
|
+
"Markdown Link",
|
|
742
|
+
"Plain Schema Id"
|
|
743
|
+
],
|
|
744
|
+
"allowedShapeAuthorities": [
|
|
745
|
+
{
|
|
746
|
+
"shapeLabel": "Markdown Link",
|
|
747
|
+
"qualification": "evaluable",
|
|
748
|
+
"useSourceSchemaId": "tiinex.root.v1",
|
|
749
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
750
|
+
"visibleSchemaIds": [
|
|
751
|
+
"tiinex.root.v1"
|
|
752
|
+
],
|
|
753
|
+
"definition": {
|
|
754
|
+
"kind": "machine-shape-definition",
|
|
755
|
+
"shapeLabel": "Markdown Link",
|
|
756
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
757
|
+
"sourceGroup": "Machine Shape Authority",
|
|
758
|
+
"declarationSource": {
|
|
759
|
+
"line": 408
|
|
760
|
+
},
|
|
761
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
762
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
763
|
+
"startRule": "markdown-link",
|
|
764
|
+
"grammarRules": [
|
|
765
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
766
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
767
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
768
|
+
],
|
|
769
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
770
|
+
"qualificationSupport": "available",
|
|
771
|
+
"definitionQualification": "valid",
|
|
772
|
+
"definitionFindings": [],
|
|
773
|
+
"declarationStructure": {
|
|
774
|
+
"value": "Markdown Link",
|
|
775
|
+
"children": [
|
|
776
|
+
{
|
|
777
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
778
|
+
"children": []
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
782
|
+
"children": []
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
786
|
+
"children": []
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
790
|
+
"children": []
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
794
|
+
"children": []
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"value": "Start Rule: markdown-link",
|
|
798
|
+
"children": []
|
|
799
|
+
}
|
|
800
|
+
]
|
|
801
|
+
},
|
|
802
|
+
"compiledGrammar": {
|
|
803
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
804
|
+
"qualification": "valid",
|
|
805
|
+
"startRule": "markdown-link",
|
|
806
|
+
"grammarRules": [
|
|
807
|
+
{
|
|
808
|
+
"name": "markdown-link",
|
|
809
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
810
|
+
"expression": {
|
|
811
|
+
"type": "concatenation",
|
|
812
|
+
"parts": [
|
|
813
|
+
{
|
|
814
|
+
"type": "literal",
|
|
815
|
+
"value": "["
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"type": "reference",
|
|
819
|
+
"name": "label"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"type": "literal",
|
|
823
|
+
"value": "]("
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"type": "reference",
|
|
827
|
+
"name": "target"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"type": "literal",
|
|
831
|
+
"value": ")"
|
|
832
|
+
}
|
|
833
|
+
]
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"name": "label",
|
|
838
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
839
|
+
"expression": {
|
|
840
|
+
"type": "repeat",
|
|
841
|
+
"quantifier": "+",
|
|
842
|
+
"expression": {
|
|
843
|
+
"type": "any-except",
|
|
844
|
+
"exclusions": [
|
|
845
|
+
"]",
|
|
846
|
+
"\t",
|
|
847
|
+
"\r",
|
|
848
|
+
"\n"
|
|
849
|
+
]
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"name": "target",
|
|
855
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
856
|
+
"expression": {
|
|
857
|
+
"type": "repeat",
|
|
858
|
+
"quantifier": "+",
|
|
859
|
+
"expression": {
|
|
860
|
+
"type": "any-except",
|
|
861
|
+
"exclusions": [
|
|
862
|
+
")",
|
|
863
|
+
" ",
|
|
864
|
+
"\t",
|
|
865
|
+
"\r",
|
|
866
|
+
"\n"
|
|
867
|
+
]
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
],
|
|
872
|
+
"findings": []
|
|
873
|
+
}
|
|
874
|
+
},
|
|
875
|
+
"resolvedDefinitionProvenance": {
|
|
876
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
877
|
+
"sourceGroup": "Machine Shape Authority",
|
|
878
|
+
"declarationSource": {
|
|
879
|
+
"line": 408
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
"visibleDefinitions": [
|
|
883
|
+
{
|
|
884
|
+
"shapeLabel": "Markdown Link",
|
|
885
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
886
|
+
"sourceGroup": "Machine Shape Authority",
|
|
887
|
+
"declarationSource": {
|
|
888
|
+
"line": 408
|
|
889
|
+
},
|
|
890
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
891
|
+
"definitionQualification": "valid",
|
|
892
|
+
"qualificationSupport": "available"
|
|
893
|
+
}
|
|
894
|
+
],
|
|
895
|
+
"findings": []
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"shapeLabel": "Plain Schema Id",
|
|
899
|
+
"qualification": "unresolved",
|
|
900
|
+
"useSourceSchemaId": "tiinex.root.v1",
|
|
901
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
902
|
+
"visibleSchemaIds": [
|
|
903
|
+
"tiinex.root.v1"
|
|
904
|
+
],
|
|
905
|
+
"definition": null,
|
|
906
|
+
"resolvedDefinitionProvenance": null,
|
|
907
|
+
"visibleDefinitions": [],
|
|
908
|
+
"findings": [
|
|
909
|
+
"No visible Machine Shape Definition exists for exact label Plain Schema Id."
|
|
910
|
+
]
|
|
911
|
+
}
|
|
912
|
+
]
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"kind": "field-shape",
|
|
916
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
917
|
+
"group": "Trace Field",
|
|
918
|
+
"field": "Trace",
|
|
919
|
+
"allowedShapes": [
|
|
920
|
+
"Markdown Link",
|
|
921
|
+
"Relative Path"
|
|
922
|
+
],
|
|
923
|
+
"allowedShapeAuthorities": [
|
|
924
|
+
{
|
|
925
|
+
"shapeLabel": "Markdown Link",
|
|
926
|
+
"qualification": "evaluable",
|
|
927
|
+
"useSourceSchemaId": "tiinex.root.v1",
|
|
928
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
929
|
+
"visibleSchemaIds": [
|
|
930
|
+
"tiinex.root.v1"
|
|
931
|
+
],
|
|
932
|
+
"definition": {
|
|
933
|
+
"kind": "machine-shape-definition",
|
|
934
|
+
"shapeLabel": "Markdown Link",
|
|
935
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
936
|
+
"sourceGroup": "Machine Shape Authority",
|
|
937
|
+
"declarationSource": {
|
|
938
|
+
"line": 408
|
|
939
|
+
},
|
|
940
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
941
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
942
|
+
"startRule": "markdown-link",
|
|
943
|
+
"grammarRules": [
|
|
944
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
945
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
946
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
947
|
+
],
|
|
948
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
949
|
+
"qualificationSupport": "available",
|
|
950
|
+
"definitionQualification": "valid",
|
|
951
|
+
"definitionFindings": [],
|
|
952
|
+
"declarationStructure": {
|
|
953
|
+
"value": "Markdown Link",
|
|
954
|
+
"children": [
|
|
955
|
+
{
|
|
956
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
957
|
+
"children": []
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
961
|
+
"children": []
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
965
|
+
"children": []
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
969
|
+
"children": []
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
973
|
+
"children": []
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"value": "Start Rule: markdown-link",
|
|
977
|
+
"children": []
|
|
978
|
+
}
|
|
979
|
+
]
|
|
980
|
+
},
|
|
981
|
+
"compiledGrammar": {
|
|
982
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
983
|
+
"qualification": "valid",
|
|
984
|
+
"startRule": "markdown-link",
|
|
985
|
+
"grammarRules": [
|
|
986
|
+
{
|
|
987
|
+
"name": "markdown-link",
|
|
988
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
989
|
+
"expression": {
|
|
990
|
+
"type": "concatenation",
|
|
991
|
+
"parts": [
|
|
992
|
+
{
|
|
993
|
+
"type": "literal",
|
|
994
|
+
"value": "["
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"type": "reference",
|
|
998
|
+
"name": "label"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"type": "literal",
|
|
1002
|
+
"value": "]("
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"type": "reference",
|
|
1006
|
+
"name": "target"
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"type": "literal",
|
|
1010
|
+
"value": ")"
|
|
1011
|
+
}
|
|
1012
|
+
]
|
|
1013
|
+
}
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"name": "label",
|
|
1017
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
1018
|
+
"expression": {
|
|
1019
|
+
"type": "repeat",
|
|
1020
|
+
"quantifier": "+",
|
|
1021
|
+
"expression": {
|
|
1022
|
+
"type": "any-except",
|
|
1023
|
+
"exclusions": [
|
|
1024
|
+
"]",
|
|
1025
|
+
"\t",
|
|
1026
|
+
"\r",
|
|
1027
|
+
"\n"
|
|
1028
|
+
]
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"name": "target",
|
|
1034
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
1035
|
+
"expression": {
|
|
1036
|
+
"type": "repeat",
|
|
1037
|
+
"quantifier": "+",
|
|
1038
|
+
"expression": {
|
|
1039
|
+
"type": "any-except",
|
|
1040
|
+
"exclusions": [
|
|
1041
|
+
")",
|
|
1042
|
+
" ",
|
|
1043
|
+
"\t",
|
|
1044
|
+
"\r",
|
|
1045
|
+
"\n"
|
|
1046
|
+
]
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
],
|
|
1051
|
+
"findings": []
|
|
1052
|
+
}
|
|
1053
|
+
},
|
|
1054
|
+
"resolvedDefinitionProvenance": {
|
|
1055
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
1056
|
+
"sourceGroup": "Machine Shape Authority",
|
|
1057
|
+
"declarationSource": {
|
|
1058
|
+
"line": 408
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"visibleDefinitions": [
|
|
1062
|
+
{
|
|
1063
|
+
"shapeLabel": "Markdown Link",
|
|
1064
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
1065
|
+
"sourceGroup": "Machine Shape Authority",
|
|
1066
|
+
"declarationSource": {
|
|
1067
|
+
"line": 408
|
|
1068
|
+
},
|
|
1069
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
1070
|
+
"definitionQualification": "valid",
|
|
1071
|
+
"qualificationSupport": "available"
|
|
1072
|
+
}
|
|
1073
|
+
],
|
|
1074
|
+
"findings": []
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"shapeLabel": "Relative Path",
|
|
1078
|
+
"qualification": "unresolved",
|
|
1079
|
+
"useSourceSchemaId": "tiinex.root.v1",
|
|
1080
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
1081
|
+
"visibleSchemaIds": [
|
|
1082
|
+
"tiinex.root.v1"
|
|
1083
|
+
],
|
|
1084
|
+
"definition": null,
|
|
1085
|
+
"resolvedDefinitionProvenance": null,
|
|
1086
|
+
"visibleDefinitions": [],
|
|
1087
|
+
"findings": [
|
|
1088
|
+
"No visible Machine Shape Definition exists for exact label Relative Path."
|
|
1089
|
+
]
|
|
1090
|
+
}
|
|
1091
|
+
]
|
|
1092
|
+
}
|
|
1093
|
+
]
|
|
1094
|
+
},
|
|
1095
|
+
"declarations": [
|
|
1096
|
+
{
|
|
1097
|
+
"group": "Inheritance Overrides",
|
|
1098
|
+
"entryShape": [
|
|
1099
|
+
"Named Declaration"
|
|
1100
|
+
],
|
|
1101
|
+
"requiredFields": [
|
|
1102
|
+
"Merge Operation",
|
|
1103
|
+
"Parent Schema",
|
|
1104
|
+
"Parent Node",
|
|
1105
|
+
"Child Node"
|
|
1106
|
+
],
|
|
1107
|
+
"optionalFields": [
|
|
1108
|
+
"Reason",
|
|
1109
|
+
"Effective Result"
|
|
1110
|
+
],
|
|
1111
|
+
"declarationFields": [],
|
|
1112
|
+
"allowedLabels": [],
|
|
1113
|
+
"allowedShapes": [],
|
|
1114
|
+
"targetHeadings": [],
|
|
1115
|
+
"allowLiteralNone": false,
|
|
1116
|
+
"rules": [
|
|
1117
|
+
"`Inheritance Overrides` is the canonical schema-local machine category for explicit inherited contract replacement.",
|
|
1118
|
+
"The declaration name identifies one override declaration within the declaring child schema.",
|
|
1119
|
+
"`Merge Operation` must be exactly `override`; unsupported operations are unresolved and must not be guessed.",
|
|
1120
|
+
"`Parent Schema` must resolve to an actual ancestor of the declaring child schema in the active lineage.",
|
|
1121
|
+
"`Parent Node` and `Child Node` each use the exact path shape `Schema Validation Contract / <third-level group> / <category label>` and must resolve exactly once.",
|
|
1122
|
+
"The declaring child schema is the child schema identity; no duplicate `Child Schema` field is part of the inline declaration.",
|
|
1123
|
+
"A qualified override deactivates only the exact addressed parent contribution and activates the exact addressed child replacement contribution while retaining declaration and contributor provenance.",
|
|
1124
|
+
"Competing declarations for the same exact parent contribution, malformed declarations, unresolved lineage, missing or ambiguous nodes, or non-ancestor parents are unresolved/error.",
|
|
1125
|
+
"Source order, filename order, directory adjacency, prose wording, and schema identity must not choose a winner.",
|
|
1126
|
+
"When both addressed nodes are `Required Shape`, parent ordinary instance-field groups whose Root-authorized exact second-level target heading is required by the parent shape but absent from the child replacement shape become inactive; groups targeting surviving headings remain additive.",
|
|
1127
|
+
"If Required Shape heading identity or ordinary target ownership cannot be resolved exactly, the override is unresolved rather than guessed.",
|
|
1128
|
+
"Standalone `tiinex.schema.inheritance.v1` artifacts may document, propose, test, audit, or migrate an inheritance relationship, but they do not silently add or change schema-local compilation authority."
|
|
1129
|
+
]
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"group": "Field Value Constraints",
|
|
1133
|
+
"entryShape": [
|
|
1134
|
+
"Named Declaration"
|
|
1135
|
+
],
|
|
1136
|
+
"requiredFields": [
|
|
1137
|
+
"Allowed Value",
|
|
1138
|
+
"Allowed Shape",
|
|
1139
|
+
"Domain Policy"
|
|
1140
|
+
],
|
|
1141
|
+
"optionalFields": [],
|
|
1142
|
+
"declarationFields": [
|
|
1143
|
+
"Allowed Value",
|
|
1144
|
+
"Allowed Shape",
|
|
1145
|
+
"Domain Policy"
|
|
1146
|
+
],
|
|
1147
|
+
"allowedLabels": [],
|
|
1148
|
+
"allowedShapes": [],
|
|
1149
|
+
"targetHeadings": [],
|
|
1150
|
+
"allowLiteralNone": false,
|
|
1151
|
+
"rules": [
|
|
1152
|
+
"A `Field Value Constraints` declaration binds value-domain authority to one exact contract field.",
|
|
1153
|
+
"The declaration name is the exact case-sensitive field label being constrained.",
|
|
1154
|
+
"When the declaring contract group declares that field under `Required Fields` or `Optional Fields`, the constraint targets that local field only, even when that group has an `Applies To` category for another semantic purpose.",
|
|
1155
|
+
"When the declaring contract group does not declare that field, the group may share the constraint through `Applies To` only when every `Applies To` entry resolves unambiguously to a contract group that declares the exact field under `Required Fields` or `Optional Fields`; otherwise target authority is unresolved/error and validators must not choose a partial subset or guess a target.",
|
|
1156
|
+
"This field-domain targeting rule does not reinterpret or broaden Root's generic `Fields` category.",
|
|
1157
|
+
"`Allowed Value` and `Allowed Shape` may repeat inside one declaration; their order is not semantic.",
|
|
1158
|
+
"Exactly one `Domain Policy` is required per declaration.",
|
|
1159
|
+
"`Domain Policy` must be `closed` or `extension-authorized`.",
|
|
1160
|
+
"Every declaration must contain at least one `Allowed Value` or `Allowed Shape`.",
|
|
1161
|
+
"`Allowed Value` compares the extracted scalar value exactly and case-sensitively to the declared literal; validators must not normalize aliases, spelling, punctuation, case, separators, or typos.",
|
|
1162
|
+
"`Allowed Shape` must name a machine-defined shape available under the active contract. This category does not create a new shape registry. An unknown, unavailable, or unresolved shape authority must remain unresolved and validators must not infer a matcher from the shape's English name.",
|
|
1163
|
+
"A value satisfies one constraint contribution when it matches an `Allowed Value` exactly or satisfies one declared `Allowed Shape`.",
|
|
1164
|
+
"Shape qualification and reference-target resolution are separate truths. Satisfying a reference shape does not by itself prove that the reference target resolves or is semantically suitable.",
|
|
1165
|
+
"Under `closed`, a value that satisfies no declared value or shape is invalid for that contribution.",
|
|
1166
|
+
"Under `extension-authorized`, a value that satisfies no declared value or shape is an unresolved extension candidate, not an accepted core value; separate authority must qualify the extension before a validator or runtime may treat it as an accepted extension.",
|
|
1167
|
+
"The literal `unknown` is a Tiinex uncertainty sentinel, not an extension-name escape hatch. If `unknown` is not explicitly declared as an `Allowed Value`, it is invalid for that contribution and must not be reclassified as an extension candidate merely because `Domain Policy` is `extension-authorized`.",
|
|
1168
|
+
"`unknown` has no global validity. It is permitted only when explicitly declared as an `Allowed Value` by every applicable constraint contribution.",
|
|
1169
|
+
"Absence of `Field Value Constraints` for a field is valid and means no closed value domain or shape is inferred for that field from `Allowed Labels`, prose, field name, list position, neighboring fields, or UI/runtime behavior.",
|
|
1170
|
+
"Multiple applicable field-value constraint contributions are additive obligations. A concrete value must satisfy every applicable contribution unless separately defined explicit override authority validly replaces an inherited obligation.",
|
|
1171
|
+
"A descendant may narrow an inherited field domain by adding a stricter compatible contribution.",
|
|
1172
|
+
"A wider descendant contribution does not widen inherited acceptance. This contract introduces no generic field-value-constraint override selector or widening operator; validators must not guess one. Any future replacement/widening authority must separately identify the inherited obligation being replaced.",
|
|
1173
|
+
"Contradictory applicable constraints must be reported as a contract conflict and must not be silently unioned, source-ordered, or resolved by child-wins precedence.",
|
|
1174
|
+
"Compiled field-value authority must retain source schema, contract group, exact target field, whether targeting is local or shared through `Applies To`, declared values and shapes, policy, and inherited contribution provenance.",
|
|
1175
|
+
"Existing `Allowed Labels` semantics remain unchanged. `Allowed Labels` is group-level vocabulary/readability authority and is not field-domain closure."
|
|
1176
|
+
]
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"group": "Machine Shape Authority",
|
|
1180
|
+
"entryShape": [
|
|
1181
|
+
"Named Declaration"
|
|
1182
|
+
],
|
|
1183
|
+
"requiredFields": [
|
|
1184
|
+
"Grammar Profile",
|
|
1185
|
+
"Start Rule",
|
|
1186
|
+
"Grammar Rule",
|
|
1187
|
+
"Human Meaning"
|
|
1188
|
+
],
|
|
1189
|
+
"optionalFields": [],
|
|
1190
|
+
"declarationFields": [
|
|
1191
|
+
"Grammar Profile",
|
|
1192
|
+
"Start Rule",
|
|
1193
|
+
"Grammar Rule",
|
|
1194
|
+
"Human Meaning"
|
|
1195
|
+
],
|
|
1196
|
+
"allowedLabels": [],
|
|
1197
|
+
"allowedShapes": [],
|
|
1198
|
+
"targetHeadings": [],
|
|
1199
|
+
"allowLiteralNone": false,
|
|
1200
|
+
"rules": [
|
|
1201
|
+
"`Machine Shape Definitions` declares exact machine-readable lexical shape authorities available to `Allowed Shape` and to any future contract surface that explicitly delegates to this authority.",
|
|
1202
|
+
"Each first-level entry under `Machine Shape Definitions` is one named machine-shape declaration. The declaration name is the exact case-sensitive shape label.",
|
|
1203
|
+
"Every machine-shape declaration must contain exactly one `Grammar Profile`, exactly one `Start Rule`, one or more `Grammar Rule` fields, and exactly one `Human Meaning`.",
|
|
1204
|
+
"`Grammar Rule` may repeat and its ordering is not semantic. Other single-cardinality declaration fields must not repeat.",
|
|
1205
|
+
"Machine-shape definitions are resolved by lineage prefix at the source point of the shape use: ancestor schema definitions and definitions from the same source schema are visible; definitions introduced only by later descendants are not visible to an ancestor contribution.",
|
|
1206
|
+
"Source order inside one schema is not semantic. A same-schema definition may qualify a same-schema shape use regardless of whether the declaration text appears before or after the use.",
|
|
1207
|
+
"A descendant may add a new distinct shape label. That definition is visible to uses in the descendant source and its later descendants, but not to ancestor or sibling-branch uses that do not inherit it.",
|
|
1208
|
+
"For one exact shape label within the active lineage prefix, zero active definitions means shape authority is unresolved; exactly one valid definition is usable when its grammar profile is supported; more than one active definition is a contract/authority conflict and consumers of that label are unresolved.",
|
|
1209
|
+
"Duplicate exact-label definitions are not deduplicated even when their text is identical. No source-order, descendant-wins, first-definition, or hidden-registry precedence exists.",
|
|
1210
|
+
"This contract introduces no generic inherited machine-shape replacement operator. A future replacement authority may be defined only when it can explicitly identify the inherited definition being replaced.",
|
|
1211
|
+
"Compiled machine-shape authority must preserve the exact shape label, source schema, source contract group, declaration source, lineage/source-point visibility, grammar profile, start rule, grammar rules, human meaning, and qualification-support state.",
|
|
1212
|
+
"A consumer of machine-shape authority must retain the source schema, contract group, exact field/use, requested shape label, resolved definition provenance, and qualification result `match`, `no-match`, or `unresolved`.",
|
|
1213
|
+
"`Human Meaning` is explanatory readability authority only. Machine lexical acceptance is owned by `Grammar Profile`, `Start Rule`, and `Grammar Rule`; validators must not infer a matcher from `Human Meaning`.",
|
|
1214
|
+
"`tiinex.lexical.shape.v1` is the Root-owned generic lexical grammar profile defined by this group. It is interpreter semantics and is not itself resolved through another Machine Shape Definition.",
|
|
1215
|
+
"Under `tiinex.lexical.shape.v1`, grammar-source meta-whitespace is exactly ASCII SPACE U+0020 and TAB U+0009. It may appear before the first grammar token, between grammar tokens where token boundaries permit, and after the last grammar token, and is ignored as grammar-source separation. It must not split an identifier or alter a quoted literal. CR, LF, and every non-ASCII whitespace character are not grammar-source meta-whitespace. Implementations must not derive grammar-source whitespace from a host-language class such as `\\s`.",
|
|
1216
|
+
"After ignoring permitted grammar-source meta-whitespace, each `Grammar Rule` has the form `identifier = expression`. Rule identifiers are case-sensitive, begin with an ASCII letter, and continue with ASCII letters, ASCII digits, or hyphen. Rule identifiers must be unique inside one shape declaration. `Start Rule` must name exactly one declared `Grammar Rule` identifier.",
|
|
1217
|
+
"Reserved identifier tokens are exactly `SPACE`, `TAB`, `CR`, `LF`, `DIGIT`, `ASCII-LETTER`, `ANY`, and `ANY-EXCEPT`. Reserved punctuation/operator tokens are exactly `?`, `*`, `+`, `|`, `(`, `)`, `,`, and `=`. A declared Grammar Rule identifier must not use a reserved identifier token.",
|
|
1218
|
+
"The normative expression productions are `grammar-rule = identifier \"=\" expression`, `expression = concatenation (\"|\" concatenation)*`, `concatenation = postfix-expression+`, `postfix-expression = atom (\"?\" | \"*\" | \"+\")?`, and `atom = quoted-literal | builtin | rule-reference | any-except | \"(\" expression \")\"`. These productions, rather than host-language parser precedence, define `tiinex.lexical.shape.v1`.",
|
|
1219
|
+
"The productions make postfix `?`, `*`, or `+` highest precedence and permit at most one postfix quantifier per postfix-expression; concatenation/adjacency binds next; alternation `|` binds lowest; parentheses explicitly group an expression. Concatenation is evaluated left-to-right. Alternation is a left-to-right list of alternatives whose acceptance is their union, so alternative ordering does not create precedence.",
|
|
1220
|
+
"Under `tiinex.lexical.shape.v1`, postfix operators define accepted lexical languages rather than regex-engine execution strategy. For an atom or grouped expression `x`, `x?` accepts zero or one consecutive occurrence of a scalar sequence accepted by `x`; `x*` accepts the union of all finite concatenations of zero or more consecutive occurrences accepted by `x`; and `x+` accepts the union of all finite concatenations of one or more consecutive occurrences accepted by `x`.",
|
|
1221
|
+
"Postfix repetition has no greedy, lazy, capture, or backtracking semantics. An implementation may use any evaluation strategy that preserves the same accepted language.",
|
|
1222
|
+
"Repetition remains well-defined when `x` can accept the empty scalar. Such repetition is not a grammar error: its meaning remains the finite-concatenation language above, and implementations must avoid nontermination without inventing a different acceptance rule or enumerating infinitely many equivalent empty derivations.",
|
|
1223
|
+
"Whole-value shape qualification succeeds when at least one finite derivation of the `Start Rule` consumes the complete extracted scalar. No particular derivation is preferred merely because another implementation would call it greedy, lazy, earlier, or later.",
|
|
1224
|
+
"An expression, each side of `|`, and a parenthesized expression must be non-empty. Therefore an empty expression, an empty left or right alternative, empty parentheses, `\"x\"??`, `\"x\"*+`, and every other repeated postfix sequence are grammar errors. Parentheses may be used to group an expression before applying one postfix quantifier to that grouped atom.",
|
|
1225
|
+
"A non-reserved identifier used as an expression atom is a same-definition `Grammar Rule` reference. It must resolve to exactly one declared rule identifier in the same machine-shape declaration. Undefined rule references are grammar errors under the known profile. Cross-shape rule references do not exist in `tiinex.lexical.shape.v1`.",
|
|
1226
|
+
"A quoted literal denotes the exact Unicode scalar sequence between double quotes. The only quoted-literal escapes are `\\\"`, `\\\\`, `\\t`, `\\r`, and `\\n`; any other escape is grammar error. Grammar-source meta-whitespace inside a quoted literal is literal content, not token separation.",
|
|
1227
|
+
"Builtins are exact and case-sensitive: `SPACE` is U+0020, `TAB` is U+0009, `CR` is U+000D, `LF` is U+000A, `DIGIT` is ASCII `0` through `9`, `ASCII-LETTER` is ASCII `A` through `Z` or `a` through `z`, and `ANY` matches exactly one Unicode scalar value.",
|
|
1228
|
+
"`ANY-EXCEPT(...)` matches exactly one Unicode scalar value not matched by its exclusions. It requires one or more exclusion terms separated by the reserved comma token. Permitted ASCII grammar-source meta-whitespace may appear around commas and exclusion terms. Each exclusion term must be a quoted literal containing exactly one Unicode scalar value or one of `SPACE`, `TAB`, `CR`, or `LF`.",
|
|
1229
|
+
"Supported expression forms are quoted literal, same-definition rule reference, builtin, `ANY-EXCEPT(...)`, parenthesized expression, alternation `|`, adjacency/concatenation, and one optional postfix `?`, `*`, or `+` per postfix-expression. No other operator, builtin, import, capture, backreference, lookaround, implementation-language regex feature, or cross-shape rule reference exists in `tiinex.lexical.shape.v1`.",
|
|
1230
|
+
"Matching consumes the complete extracted scalar. There is no implicit trimming, substring matching, case folding, Unicode normalization, URL decoding, Markdown escape processing, or target/reference resolution.",
|
|
1231
|
+
"For a definition using the known `tiinex.lexical.shape.v1` profile, missing required declaration fields, duplicate single-cardinality declaration fields, zero `Grammar Rule` fields, duplicate grammar-rule identifiers, a missing `Start Rule` target, cyclic rule references, an unknown builtin or operator, malformed expression, invalid quoted escape, invalid `ANY-EXCEPT` exclusions, or another grammar violation is a schema contract `error`; a consumer depending on that invalid definition has unresolved machine-shape authority and must fail closed.",
|
|
1232
|
+
"A structurally valid declaration naming an unknown or unsupported `Grammar Profile` is preserved as declared authority, but qualification support is unavailable and consumers of that definition remain unresolved. Validators must not reinterpret its grammar or infer a matcher from the profile name or `Human Meaning`.",
|
|
1233
|
+
"Shape syntax qualification is distinct from existence, reference resolution, reachability, schema suitability, semantic suitability, truth, or authorization of any referenced target.",
|
|
1234
|
+
"When a consuming contract explicitly offers multiple machine-shape alternatives, any resolved matching alternative is a shape match; if no resolved alternative matches and at least one requested shape authority is unresolved, the shape result is `unresolved`; only when every requested shape authority is resolved/evaluable and none matches is the shape result `no-match`.",
|
|
1235
|
+
"Existing `Allowed Shapes`, `Required Shape`, `Entry Shape`, and `Towards Allowed Shapes` semantics remain unchanged; this category does not reinterpret those historical surfaces as a global registry.",
|
|
1236
|
+
"The `Markdown Link` definition intentionally defines a bounded Tiinex lexical profile, not all CommonMark links. It accepts exactly one complete `[label](target)` scalar with non-empty label and target, permits ASCII space inside the label, forbids raw `]`, TAB, CR, and LF in the label, and forbids raw `)`, SPACE, TAB, CR, and LF in the target."
|
|
1237
|
+
]
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"group": "Named Declaration",
|
|
1241
|
+
"entryShape": [
|
|
1242
|
+
"First-Level Hyphen List Item"
|
|
1243
|
+
],
|
|
1244
|
+
"requiredFields": [
|
|
1245
|
+
"Base Concept",
|
|
1246
|
+
"Interpretation"
|
|
1247
|
+
],
|
|
1248
|
+
"optionalFields": [],
|
|
1249
|
+
"declarationFields": [
|
|
1250
|
+
"Base Concept",
|
|
1251
|
+
"Interpretation"
|
|
1252
|
+
],
|
|
1253
|
+
"allowedLabels": [],
|
|
1254
|
+
"allowedShapes": [],
|
|
1255
|
+
"targetHeadings": [],
|
|
1256
|
+
"allowLiteralNone": false,
|
|
1257
|
+
"rules": [
|
|
1258
|
+
"Each named declaration is represented as one first-level hyphen list item.",
|
|
1259
|
+
"The first-level list item text is the declaration name.",
|
|
1260
|
+
"Declaration fields are represented as nested hyphen list items under the declaration entry.",
|
|
1261
|
+
"Declaration names must be unique within the same contract group.",
|
|
1262
|
+
"Duplicate declaration names are invalid unless a descendant schema explicitly defines override semantics."
|
|
1263
|
+
]
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"group": "Contract Category Extension",
|
|
1267
|
+
"entryShape": [
|
|
1268
|
+
"Named Declaration"
|
|
1269
|
+
],
|
|
1270
|
+
"requiredFields": [
|
|
1271
|
+
"Base Concept",
|
|
1272
|
+
"Interpretation"
|
|
1273
|
+
],
|
|
1274
|
+
"optionalFields": [],
|
|
1275
|
+
"declarationFields": [
|
|
1276
|
+
"Base Concept",
|
|
1277
|
+
"Interpretation"
|
|
1278
|
+
],
|
|
1279
|
+
"allowedLabels": [],
|
|
1280
|
+
"allowedShapes": [],
|
|
1281
|
+
"targetHeadings": [],
|
|
1282
|
+
"allowLiteralNone": false,
|
|
1283
|
+
"rules": [
|
|
1284
|
+
"Each contract category extension uses the `Named Declaration` shape.",
|
|
1285
|
+
"The declaration name is the new contract category label.",
|
|
1286
|
+
"A descendant schema must not redeclare an already inherited category label here unless it explicitly defines override semantics.",
|
|
1287
|
+
"A descendant schema must declare a new category label in `Contract Category Extension` before using it in its own contract.",
|
|
1288
|
+
"Declared category labels extend the known category label set for that schema and its descendants.",
|
|
1289
|
+
"Validators that do not understand a declared category label should preserve it and may warn.",
|
|
1290
|
+
"Strict validators may fail on undeclared category labels when the full schema lineage is available."
|
|
1291
|
+
]
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"group": "Contract Category Override",
|
|
1295
|
+
"entryShape": [
|
|
1296
|
+
"Named Declaration"
|
|
1297
|
+
],
|
|
1298
|
+
"requiredFields": [
|
|
1299
|
+
"Replacement Interpretation"
|
|
1300
|
+
],
|
|
1301
|
+
"optionalFields": [],
|
|
1302
|
+
"declarationFields": [
|
|
1303
|
+
"Replacement Interpretation"
|
|
1304
|
+
],
|
|
1305
|
+
"allowedLabels": [],
|
|
1306
|
+
"allowedShapes": [],
|
|
1307
|
+
"targetHeadings": [],
|
|
1308
|
+
"allowLiteralNone": false,
|
|
1309
|
+
"rules": [
|
|
1310
|
+
"Each contract category override uses the `Named Declaration` shape.",
|
|
1311
|
+
"The declaration name identifies the inherited contract category label being replaced.",
|
|
1312
|
+
"`Replacement Interpretation` describes how the descendant schema now interprets that inherited label.",
|
|
1313
|
+
"A descendant schema must not rely on an override unless it declares it here.",
|
|
1314
|
+
"Validators must not guess contract category overrides that are not declared here."
|
|
1315
|
+
]
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"group": "Repairs",
|
|
1319
|
+
"entryShape": [
|
|
1320
|
+
"First-Level Hyphen List Item"
|
|
1321
|
+
],
|
|
1322
|
+
"requiredFields": [],
|
|
1323
|
+
"optionalFields": [
|
|
1324
|
+
"Target",
|
|
1325
|
+
"Note",
|
|
1326
|
+
"Reason"
|
|
1327
|
+
],
|
|
1328
|
+
"declarationFields": [],
|
|
1329
|
+
"allowedLabels": [],
|
|
1330
|
+
"allowedShapes": [],
|
|
1331
|
+
"targetHeadings": [],
|
|
1332
|
+
"allowLiteralNone": false,
|
|
1333
|
+
"rules": [
|
|
1334
|
+
"`Repairs` records known repairs, corrections, or trust-impacting changes to the artifact.",
|
|
1335
|
+
"A repair entry should state what was repaired and why.",
|
|
1336
|
+
"A repair entry may refer to lineage, parent, origin, current metadata, body claims, schema references, integrity, or another readable target.",
|
|
1337
|
+
"Structured repair entries should expose `Target`, `Note`, and `Reason` as nested fields.",
|
|
1338
|
+
"Free-text repair entries are allowed and must be preserved, but structured entries are preferred for tooling.",
|
|
1339
|
+
"`Repairs` must not silently replace `Parent`, `Trace`, `Origin`, `Current`, or `Continuity Integrity` semantics.",
|
|
1340
|
+
"`Repairs` does not automatically invalidate the artifact or lineage.",
|
|
1341
|
+
"Validators may warn when a repair entry is too vague to support audit or update tooling.",
|
|
1342
|
+
"Tools that update descendants because of a repair should preserve the repair note or point to the artifact that contains it."
|
|
1343
|
+
]
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"group": "Envelope Extension",
|
|
1347
|
+
"entryShape": [
|
|
1348
|
+
"Named Declaration"
|
|
1349
|
+
],
|
|
1350
|
+
"requiredFields": [
|
|
1351
|
+
"Target Block",
|
|
1352
|
+
"Base Concept",
|
|
1353
|
+
"Interpretation"
|
|
1354
|
+
],
|
|
1355
|
+
"optionalFields": [],
|
|
1356
|
+
"declarationFields": [
|
|
1357
|
+
"Target Block",
|
|
1358
|
+
"Base Concept",
|
|
1359
|
+
"Interpretation"
|
|
1360
|
+
],
|
|
1361
|
+
"allowedLabels": [],
|
|
1362
|
+
"allowedShapes": [],
|
|
1363
|
+
"targetHeadings": [],
|
|
1364
|
+
"allowLiteralNone": false,
|
|
1365
|
+
"rules": [
|
|
1366
|
+
"Each envelope extension uses the `Named Declaration` shape.",
|
|
1367
|
+
"The declaration name is the added envelope field name.",
|
|
1368
|
+
"Declaration fields are represented as nested hyphen list items under the declaration entry.",
|
|
1369
|
+
"Descendant schemas may add machine-readable envelope fields.",
|
|
1370
|
+
"Added envelope fields must declare which envelope block they extend.",
|
|
1371
|
+
"Root validators should preserve unknown envelope fields even when they cannot validate them.",
|
|
1372
|
+
"Strict validators may warn or fail on undeclared envelope fields when the full schema lineage is available."
|
|
1373
|
+
]
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
"group": "Method Entry",
|
|
1377
|
+
"entryShape": [
|
|
1378
|
+
"First-Level Hyphen List Item"
|
|
1379
|
+
],
|
|
1380
|
+
"requiredFields": [
|
|
1381
|
+
"Towards",
|
|
1382
|
+
"Value"
|
|
1383
|
+
],
|
|
1384
|
+
"optionalFields": [],
|
|
1385
|
+
"declarationFields": [],
|
|
1386
|
+
"allowedLabels": [],
|
|
1387
|
+
"allowedShapes": [
|
|
1388
|
+
"Plain Method Identifier",
|
|
1389
|
+
"Markdown Link Method Label"
|
|
1390
|
+
],
|
|
1391
|
+
"targetHeadings": [
|
|
1392
|
+
"Continuity Integrity"
|
|
1393
|
+
],
|
|
1394
|
+
"allowLiteralNone": false,
|
|
1395
|
+
"rules": [
|
|
1396
|
+
"`Method Entry` is represented by a first-level hyphen list item under `Continuity Integrity`.",
|
|
1397
|
+
"The `Method Entry` label names the integrity method.",
|
|
1398
|
+
"The `Method Entry` label may be a plain canonical method identifier or a markdown link to a validation method artifact.",
|
|
1399
|
+
"A markdown-link method label must use the canonical method identifier as link text.",
|
|
1400
|
+
"When a maintained validation method artifact has an available commit-pinned `browse + git` permalink, the markdown-link method label must use that permalink as its link target.",
|
|
1401
|
+
"`Towards` identifies the validated target.",
|
|
1402
|
+
"`Value` carries the method output.",
|
|
1403
|
+
"An integrity value identifies or verifies the representation or declared continuity target covered by the named method.",
|
|
1404
|
+
"For content-derived self methods, changing covered content normally changes the integrity value.",
|
|
1405
|
+
"An integrity value does not by itself prove immutable logical artifact identity across revisions or materializations.",
|
|
1406
|
+
"Equal or different integrity values must not by themselves be treated as proof of equal or different logical artifact subjects unless another declared identity contract provides that authority.",
|
|
1407
|
+
"For hash-based continuity methods, the validated target is hashed without the `# Continuity Integrity` section and everything after it.",
|
|
1408
|
+
"When `Towards` is not `self`, `Value` must be computed from the validated target identified by `Towards`, not from the current artifact body.",
|
|
1409
|
+
"`self` is allowed only when the method validates the current artifact itself.",
|
|
1410
|
+
"When a maintained schema artifact has an available commit-pinned `browse + git` permalink for its validated target, `Towards` should use that permalink instead of a relative local path."
|
|
1411
|
+
]
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"group": "Extension",
|
|
1415
|
+
"entryShape": [
|
|
1416
|
+
"Named Declaration"
|
|
1417
|
+
],
|
|
1418
|
+
"requiredFields": [
|
|
1419
|
+
"Base Concept",
|
|
1420
|
+
"Interpretation"
|
|
1421
|
+
],
|
|
1422
|
+
"optionalFields": [],
|
|
1423
|
+
"declarationFields": [
|
|
1424
|
+
"Base Concept",
|
|
1425
|
+
"Interpretation"
|
|
1426
|
+
],
|
|
1427
|
+
"allowedLabels": [],
|
|
1428
|
+
"allowedShapes": [],
|
|
1429
|
+
"targetHeadings": [],
|
|
1430
|
+
"allowLiteralNone": false,
|
|
1431
|
+
"rules": [
|
|
1432
|
+
"Each extension uses the `Named Declaration` shape.",
|
|
1433
|
+
"The declaration name is the extension name.",
|
|
1434
|
+
"Declaration fields are represented as nested hyphen list items under the declaration entry.",
|
|
1435
|
+
"Root defines how extensions are introduced.",
|
|
1436
|
+
"Root does not define all future extensions."
|
|
1437
|
+
]
|
|
1438
|
+
},
|
|
1439
|
+
{
|
|
1440
|
+
"group": "Transfers",
|
|
1441
|
+
"entryShape": [
|
|
1442
|
+
"First-Level Hyphen List Item"
|
|
1443
|
+
],
|
|
1444
|
+
"requiredFields": [
|
|
1445
|
+
"Transfer Kind",
|
|
1446
|
+
"Description"
|
|
1447
|
+
],
|
|
1448
|
+
"optionalFields": [
|
|
1449
|
+
"Controlling Artifact",
|
|
1450
|
+
"Boundary",
|
|
1451
|
+
"Notes"
|
|
1452
|
+
],
|
|
1453
|
+
"declarationFields": [],
|
|
1454
|
+
"allowedLabels": [],
|
|
1455
|
+
"allowedShapes": [],
|
|
1456
|
+
"targetHeadings": [
|
|
1457
|
+
"## Transfers"
|
|
1458
|
+
],
|
|
1459
|
+
"allowLiteralNone": false,
|
|
1460
|
+
"rules": [
|
|
1461
|
+
"Entries under `## Transfers` are repeated named transfer declarations.",
|
|
1462
|
+
"The declaration name is a local readability handle only and is not responsibility identity.",
|
|
1463
|
+
"`work` transfers a bounded execution/work obligation without by itself asserting a broader ongoing responsibility transfer.",
|
|
1464
|
+
"`responsibility` transfers the responsibility described by the declaration without by itself creating an executable Task.",
|
|
1465
|
+
"`work-and-responsibility` transfers both the described work and responsibility for that bounded work.",
|
|
1466
|
+
"Every transfer declaration is interpreted from the Handoff `From` endpoint to the Handoff `To` endpoint.",
|
|
1467
|
+
"`Controlling Artifact`, when present, identifies the durable artifact that controls or defines the transferred work/responsibility; linking that artifact does not transfer responsibility for every artifact it references.",
|
|
1468
|
+
"`Boundary` should state important limits when the transferred description could otherwise be over-read.",
|
|
1469
|
+
"Only items explicitly declared in `## Transfers` are transferred by this Handoff.",
|
|
1470
|
+
"Presence in the same workspace, package, ZIP, directory, source tree, or transport does not create a transfer declaration.",
|
|
1471
|
+
"A Handoff transfer declaration does not by itself prove that `From` possessed delegation authority or that `To` accepted the transfer; separate Decision, Party/Role, Instrument, Evidence, Attestation, or other authority may support those claims when needed."
|
|
1472
|
+
]
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
"group": "Required Context",
|
|
1476
|
+
"entryShape": [
|
|
1477
|
+
"First-Level Hyphen List Item"
|
|
1478
|
+
],
|
|
1479
|
+
"requiredFields": [
|
|
1480
|
+
"Material",
|
|
1481
|
+
"Purpose",
|
|
1482
|
+
"Availability"
|
|
1483
|
+
],
|
|
1484
|
+
"optionalFields": [
|
|
1485
|
+
"Material Reference",
|
|
1486
|
+
"Notes"
|
|
1487
|
+
],
|
|
1488
|
+
"declarationFields": [],
|
|
1489
|
+
"allowedLabels": [],
|
|
1490
|
+
"allowedShapes": [],
|
|
1491
|
+
"targetHeadings": [
|
|
1492
|
+
"## Required Context"
|
|
1493
|
+
],
|
|
1494
|
+
"allowLiteralNone": true,
|
|
1495
|
+
"rules": [
|
|
1496
|
+
"Entries under `## Required Context` are repeated named declarations for material required to understand, execute, review, or complete the declared transfer.",
|
|
1497
|
+
"The declaration name is a local readability handle only and is not material identity.",
|
|
1498
|
+
"`Material` describes the required context item.",
|
|
1499
|
+
"`Purpose` explains why the item is required for this handoff.",
|
|
1500
|
+
"`Availability` preserves whether the required context is currently available, unavailable, unresolved, or unknown.",
|
|
1501
|
+
"`Material Reference`, when present, is a resolution aid and does not transfer responsibility for the referenced artifact.",
|
|
1502
|
+
"Required context may be referenced rather than physically packaged when the reference remains usable.",
|
|
1503
|
+
"`Availability: unavailable`, `unresolved`, or `unknown` is an explicit handoff fact and must not be replaced by repository-global search, filename guessing, package guessing, or fabricated source.",
|
|
1504
|
+
"Explicitly unavailable required material does not make the Handoff artifact unreadable or invalid merely because execution readiness may remain blocked or unresolved.",
|
|
1505
|
+
"The literal entry `none` is allowed only as the sole `## Required Context` entry and is exempt from declaration fields."
|
|
1506
|
+
]
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
"group": "Reference Context",
|
|
1510
|
+
"entryShape": [
|
|
1511
|
+
"First-Level Hyphen List Item"
|
|
1512
|
+
],
|
|
1513
|
+
"requiredFields": [
|
|
1514
|
+
"Material",
|
|
1515
|
+
"Purpose",
|
|
1516
|
+
"Availability"
|
|
1517
|
+
],
|
|
1518
|
+
"optionalFields": [
|
|
1519
|
+
"Material Reference",
|
|
1520
|
+
"Notes"
|
|
1521
|
+
],
|
|
1522
|
+
"declarationFields": [],
|
|
1523
|
+
"allowedLabels": [],
|
|
1524
|
+
"allowedShapes": [],
|
|
1525
|
+
"targetHeadings": [
|
|
1526
|
+
"## Reference Context"
|
|
1527
|
+
],
|
|
1528
|
+
"allowLiteralNone": true,
|
|
1529
|
+
"rules": [
|
|
1530
|
+
"Entries under `## Reference Context` are repeated named declarations for useful supporting material that is not required for the declared transfer to be understood or attempted.",
|
|
1531
|
+
"The declaration name is a local readability handle only and is not material identity.",
|
|
1532
|
+
"`Material` describes the reference-only context item.",
|
|
1533
|
+
"`Purpose` explains why the item may help.",
|
|
1534
|
+
"`Availability` preserves current availability without promoting the item into required context.",
|
|
1535
|
+
"`Material Reference`, when present, is a resolution aid only.",
|
|
1536
|
+
"Reference-only context must not be interpreted as transferred work, transferred responsibility, a required dependency, or proof that the recipient reviewed it.",
|
|
1537
|
+
"The literal entry `none` is allowed only as the sole `## Reference Context` entry and is exempt from declaration fields."
|
|
1538
|
+
]
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"group": "Retained Responsibilities",
|
|
1542
|
+
"entryShape": [
|
|
1543
|
+
"First-Level Hyphen List Item"
|
|
1544
|
+
],
|
|
1545
|
+
"requiredFields": [
|
|
1546
|
+
"Retained By",
|
|
1547
|
+
"Responsibility"
|
|
1548
|
+
],
|
|
1549
|
+
"optionalFields": [
|
|
1550
|
+
"Retained By Reference",
|
|
1551
|
+
"Boundary",
|
|
1552
|
+
"Notes"
|
|
1553
|
+
],
|
|
1554
|
+
"declarationFields": [],
|
|
1555
|
+
"allowedLabels": [],
|
|
1556
|
+
"allowedShapes": [],
|
|
1557
|
+
"targetHeadings": [
|
|
1558
|
+
"## Retained Responsibilities"
|
|
1559
|
+
],
|
|
1560
|
+
"allowLiteralNone": true,
|
|
1561
|
+
"rules": [
|
|
1562
|
+
"Entries under `## Retained Responsibilities` are repeated named declarations for relevant responsibility that remains outside the handoff transfer.",
|
|
1563
|
+
"The declaration name is a local readability handle only and is not responsibility identity.",
|
|
1564
|
+
"`Retained By` explicitly identifies the party or role that keeps the declared responsibility; it may be the Handoff `From` endpoint or another prior responsible party/role.",
|
|
1565
|
+
"`Retained By Reference`, when present, is an optional resolution aid and does not prove holder authority.",
|
|
1566
|
+
"`Boundary` should clarify partial retention when the same broad domain contains both transferred and retained work.",
|
|
1567
|
+
"A responsibility declared here must not be treated as transferred to `To`.",
|
|
1568
|
+
"Responsibility not listed under `## Transfers` is not silently transferred merely because it is absent from this section.",
|
|
1569
|
+
"The literal entry `none` is allowed only as the sole `## Retained Responsibilities` entry and means only that no relevant retained-responsibility declaration is recorded for this bounded Handoff scope; it does not mean all possible responsibility has transferred."
|
|
1570
|
+
]
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"group": "Exclusions And Dependencies",
|
|
1574
|
+
"entryShape": [
|
|
1575
|
+
"First-Level Hyphen List Item"
|
|
1576
|
+
],
|
|
1577
|
+
"requiredFields": [
|
|
1578
|
+
"Kind",
|
|
1579
|
+
"Description"
|
|
1580
|
+
],
|
|
1581
|
+
"optionalFields": [
|
|
1582
|
+
"Reference",
|
|
1583
|
+
"Responsible Party Or Role",
|
|
1584
|
+
"Notes"
|
|
1585
|
+
],
|
|
1586
|
+
"declarationFields": [],
|
|
1587
|
+
"allowedLabels": [],
|
|
1588
|
+
"allowedShapes": [],
|
|
1589
|
+
"targetHeadings": [
|
|
1590
|
+
"## Exclusions And Dependencies"
|
|
1591
|
+
],
|
|
1592
|
+
"allowLiteralNone": true,
|
|
1593
|
+
"rules": [
|
|
1594
|
+
"Entries under `## Exclusions And Dependencies` are repeated named declarations for explicit out-of-scope boundaries or unresolved dependencies that materially affect the handoff.",
|
|
1595
|
+
"`Kind: excluded-scope` records work, responsibility, authority, or material explicitly excluded from the transfer.",
|
|
1596
|
+
"`Kind: unresolved-dependency` records a dependency whose resolution is not currently established.",
|
|
1597
|
+
"`Responsible Party Or Role`, when present, is readable coordination context and does not by itself create or transfer that responsibility.",
|
|
1598
|
+
"Required material that is unavailable, unresolved, or unknown should preserve that truth primarily in its `## Required Context` declaration through `Availability`; this section may describe the dependency consequence without duplicating material identity authority.",
|
|
1599
|
+
"Exclusions and unresolved dependencies must not be silently filled from package membership, nearby files, repository-global search, or UI defaults.",
|
|
1600
|
+
"The literal entry `none` is allowed only as the sole `## Exclusions And Dependencies` entry and is exempt from declaration fields."
|
|
1601
|
+
]
|
|
1602
|
+
}
|
|
1603
|
+
],
|
|
1604
|
+
"constraints": [
|
|
1605
|
+
{
|
|
1606
|
+
"kind": "field-domain",
|
|
1607
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
1608
|
+
"sourceGroup": "Inheritance Overrides",
|
|
1609
|
+
"field": "Merge Operation",
|
|
1610
|
+
"allowedValues": [
|
|
1611
|
+
"override"
|
|
1612
|
+
],
|
|
1613
|
+
"allowedShapes": [],
|
|
1614
|
+
"domainPolicy": "closed",
|
|
1615
|
+
"declarationLine": 269,
|
|
1616
|
+
"declarationQualification": "valid",
|
|
1617
|
+
"declarationFindings": [],
|
|
1618
|
+
"targetMode": "local",
|
|
1619
|
+
"targetOwnership": "source-local",
|
|
1620
|
+
"ownershipSourceSchemaIds": [
|
|
1621
|
+
"tiinex.root.v1"
|
|
1622
|
+
],
|
|
1623
|
+
"targetGroup": "Inheritance Overrides",
|
|
1624
|
+
"appliesToTarget": "",
|
|
1625
|
+
"authorityQualification": "valid",
|
|
1626
|
+
"authorityFindings": [],
|
|
1627
|
+
"allowedShapeAuthorities": []
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"kind": "field-domain",
|
|
1631
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
1632
|
+
"sourceGroup": "Handoff Parties",
|
|
1633
|
+
"field": "From Kind",
|
|
1634
|
+
"allowedValues": [
|
|
1635
|
+
"party",
|
|
1636
|
+
"role",
|
|
1637
|
+
"unknown"
|
|
1638
|
+
],
|
|
1639
|
+
"allowedShapes": [],
|
|
1640
|
+
"domainPolicy": "closed",
|
|
1641
|
+
"declarationLine": 104,
|
|
1642
|
+
"declarationQualification": "valid",
|
|
1643
|
+
"declarationFindings": [],
|
|
1644
|
+
"targetMode": "local",
|
|
1645
|
+
"targetOwnership": "source-local",
|
|
1646
|
+
"ownershipSourceSchemaIds": [
|
|
1647
|
+
"tiinex.handoff.v1"
|
|
1648
|
+
],
|
|
1649
|
+
"targetGroup": "Handoff Parties",
|
|
1650
|
+
"appliesToTarget": "",
|
|
1651
|
+
"authorityQualification": "valid",
|
|
1652
|
+
"authorityFindings": [],
|
|
1653
|
+
"allowedShapeAuthorities": []
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"kind": "field-domain",
|
|
1657
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
1658
|
+
"sourceGroup": "Handoff Parties",
|
|
1659
|
+
"field": "To Kind",
|
|
1660
|
+
"allowedValues": [
|
|
1661
|
+
"party",
|
|
1662
|
+
"role",
|
|
1663
|
+
"unknown"
|
|
1664
|
+
],
|
|
1665
|
+
"allowedShapes": [],
|
|
1666
|
+
"domainPolicy": "closed",
|
|
1667
|
+
"declarationLine": 110,
|
|
1668
|
+
"declarationQualification": "valid",
|
|
1669
|
+
"declarationFindings": [],
|
|
1670
|
+
"targetMode": "local",
|
|
1671
|
+
"targetOwnership": "source-local",
|
|
1672
|
+
"ownershipSourceSchemaIds": [
|
|
1673
|
+
"tiinex.handoff.v1"
|
|
1674
|
+
],
|
|
1675
|
+
"targetGroup": "Handoff Parties",
|
|
1676
|
+
"appliesToTarget": "",
|
|
1677
|
+
"authorityQualification": "valid",
|
|
1678
|
+
"authorityFindings": [],
|
|
1679
|
+
"allowedShapeAuthorities": []
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"kind": "field-domain",
|
|
1683
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
1684
|
+
"sourceGroup": "Handoff Parties",
|
|
1685
|
+
"field": "From Reference",
|
|
1686
|
+
"allowedValues": [],
|
|
1687
|
+
"allowedShapes": [
|
|
1688
|
+
"Markdown Link"
|
|
1689
|
+
],
|
|
1690
|
+
"domainPolicy": "closed",
|
|
1691
|
+
"declarationLine": 116,
|
|
1692
|
+
"declarationQualification": "valid",
|
|
1693
|
+
"declarationFindings": [],
|
|
1694
|
+
"targetMode": "local",
|
|
1695
|
+
"targetOwnership": "source-local",
|
|
1696
|
+
"ownershipSourceSchemaIds": [
|
|
1697
|
+
"tiinex.handoff.v1"
|
|
1698
|
+
],
|
|
1699
|
+
"targetGroup": "Handoff Parties",
|
|
1700
|
+
"appliesToTarget": "",
|
|
1701
|
+
"authorityQualification": "valid",
|
|
1702
|
+
"authorityFindings": [],
|
|
1703
|
+
"allowedShapeAuthorities": [
|
|
1704
|
+
{
|
|
1705
|
+
"shapeLabel": "Markdown Link",
|
|
1706
|
+
"qualification": "evaluable",
|
|
1707
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
1708
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
1709
|
+
"visibleSchemaIds": [
|
|
1710
|
+
"tiinex.root.v1",
|
|
1711
|
+
"tiinex.handoff.v1"
|
|
1712
|
+
],
|
|
1713
|
+
"definition": {
|
|
1714
|
+
"kind": "machine-shape-definition",
|
|
1715
|
+
"shapeLabel": "Markdown Link",
|
|
1716
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
1717
|
+
"sourceGroup": "Machine Shape Authority",
|
|
1718
|
+
"declarationSource": {
|
|
1719
|
+
"line": 408
|
|
1720
|
+
},
|
|
1721
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
1722
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
1723
|
+
"startRule": "markdown-link",
|
|
1724
|
+
"grammarRules": [
|
|
1725
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
1726
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
1727
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
1728
|
+
],
|
|
1729
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
1730
|
+
"qualificationSupport": "available",
|
|
1731
|
+
"definitionQualification": "valid",
|
|
1732
|
+
"definitionFindings": [],
|
|
1733
|
+
"declarationStructure": {
|
|
1734
|
+
"value": "Markdown Link",
|
|
1735
|
+
"children": [
|
|
1736
|
+
{
|
|
1737
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
1738
|
+
"children": []
|
|
1739
|
+
},
|
|
1740
|
+
{
|
|
1741
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
1742
|
+
"children": []
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
1746
|
+
"children": []
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
1750
|
+
"children": []
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
1754
|
+
"children": []
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"value": "Start Rule: markdown-link",
|
|
1758
|
+
"children": []
|
|
1759
|
+
}
|
|
1760
|
+
]
|
|
1761
|
+
},
|
|
1762
|
+
"compiledGrammar": {
|
|
1763
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
1764
|
+
"qualification": "valid",
|
|
1765
|
+
"startRule": "markdown-link",
|
|
1766
|
+
"grammarRules": [
|
|
1767
|
+
{
|
|
1768
|
+
"name": "markdown-link",
|
|
1769
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
1770
|
+
"expression": {
|
|
1771
|
+
"type": "concatenation",
|
|
1772
|
+
"parts": [
|
|
1773
|
+
{
|
|
1774
|
+
"type": "literal",
|
|
1775
|
+
"value": "["
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"type": "reference",
|
|
1779
|
+
"name": "label"
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
"type": "literal",
|
|
1783
|
+
"value": "]("
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
"type": "reference",
|
|
1787
|
+
"name": "target"
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"type": "literal",
|
|
1791
|
+
"value": ")"
|
|
1792
|
+
}
|
|
1793
|
+
]
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"name": "label",
|
|
1798
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
1799
|
+
"expression": {
|
|
1800
|
+
"type": "repeat",
|
|
1801
|
+
"quantifier": "+",
|
|
1802
|
+
"expression": {
|
|
1803
|
+
"type": "any-except",
|
|
1804
|
+
"exclusions": [
|
|
1805
|
+
"]",
|
|
1806
|
+
"\t",
|
|
1807
|
+
"\r",
|
|
1808
|
+
"\n"
|
|
1809
|
+
]
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"name": "target",
|
|
1815
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
1816
|
+
"expression": {
|
|
1817
|
+
"type": "repeat",
|
|
1818
|
+
"quantifier": "+",
|
|
1819
|
+
"expression": {
|
|
1820
|
+
"type": "any-except",
|
|
1821
|
+
"exclusions": [
|
|
1822
|
+
")",
|
|
1823
|
+
" ",
|
|
1824
|
+
"\t",
|
|
1825
|
+
"\r",
|
|
1826
|
+
"\n"
|
|
1827
|
+
]
|
|
1828
|
+
}
|
|
1829
|
+
}
|
|
1830
|
+
}
|
|
1831
|
+
],
|
|
1832
|
+
"findings": []
|
|
1833
|
+
}
|
|
1834
|
+
},
|
|
1835
|
+
"resolvedDefinitionProvenance": {
|
|
1836
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
1837
|
+
"sourceGroup": "Machine Shape Authority",
|
|
1838
|
+
"declarationSource": {
|
|
1839
|
+
"line": 408
|
|
1840
|
+
}
|
|
1841
|
+
},
|
|
1842
|
+
"visibleDefinitions": [
|
|
1843
|
+
{
|
|
1844
|
+
"shapeLabel": "Markdown Link",
|
|
1845
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
1846
|
+
"sourceGroup": "Machine Shape Authority",
|
|
1847
|
+
"declarationSource": {
|
|
1848
|
+
"line": 408
|
|
1849
|
+
},
|
|
1850
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
1851
|
+
"definitionQualification": "valid",
|
|
1852
|
+
"qualificationSupport": "available"
|
|
1853
|
+
}
|
|
1854
|
+
],
|
|
1855
|
+
"findings": []
|
|
1856
|
+
}
|
|
1857
|
+
]
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
"kind": "field-domain",
|
|
1861
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
1862
|
+
"sourceGroup": "Handoff Parties",
|
|
1863
|
+
"field": "To Reference",
|
|
1864
|
+
"allowedValues": [],
|
|
1865
|
+
"allowedShapes": [
|
|
1866
|
+
"Markdown Link"
|
|
1867
|
+
],
|
|
1868
|
+
"domainPolicy": "closed",
|
|
1869
|
+
"declarationLine": 120,
|
|
1870
|
+
"declarationQualification": "valid",
|
|
1871
|
+
"declarationFindings": [],
|
|
1872
|
+
"targetMode": "local",
|
|
1873
|
+
"targetOwnership": "source-local",
|
|
1874
|
+
"ownershipSourceSchemaIds": [
|
|
1875
|
+
"tiinex.handoff.v1"
|
|
1876
|
+
],
|
|
1877
|
+
"targetGroup": "Handoff Parties",
|
|
1878
|
+
"appliesToTarget": "",
|
|
1879
|
+
"authorityQualification": "valid",
|
|
1880
|
+
"authorityFindings": [],
|
|
1881
|
+
"allowedShapeAuthorities": [
|
|
1882
|
+
{
|
|
1883
|
+
"shapeLabel": "Markdown Link",
|
|
1884
|
+
"qualification": "evaluable",
|
|
1885
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
1886
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
1887
|
+
"visibleSchemaIds": [
|
|
1888
|
+
"tiinex.root.v1",
|
|
1889
|
+
"tiinex.handoff.v1"
|
|
1890
|
+
],
|
|
1891
|
+
"definition": {
|
|
1892
|
+
"kind": "machine-shape-definition",
|
|
1893
|
+
"shapeLabel": "Markdown Link",
|
|
1894
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
1895
|
+
"sourceGroup": "Machine Shape Authority",
|
|
1896
|
+
"declarationSource": {
|
|
1897
|
+
"line": 408
|
|
1898
|
+
},
|
|
1899
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
1900
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
1901
|
+
"startRule": "markdown-link",
|
|
1902
|
+
"grammarRules": [
|
|
1903
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
1904
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
1905
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
1906
|
+
],
|
|
1907
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
1908
|
+
"qualificationSupport": "available",
|
|
1909
|
+
"definitionQualification": "valid",
|
|
1910
|
+
"definitionFindings": [],
|
|
1911
|
+
"declarationStructure": {
|
|
1912
|
+
"value": "Markdown Link",
|
|
1913
|
+
"children": [
|
|
1914
|
+
{
|
|
1915
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
1916
|
+
"children": []
|
|
1917
|
+
},
|
|
1918
|
+
{
|
|
1919
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
1920
|
+
"children": []
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
1924
|
+
"children": []
|
|
1925
|
+
},
|
|
1926
|
+
{
|
|
1927
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
1928
|
+
"children": []
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
1932
|
+
"children": []
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"value": "Start Rule: markdown-link",
|
|
1936
|
+
"children": []
|
|
1937
|
+
}
|
|
1938
|
+
]
|
|
1939
|
+
},
|
|
1940
|
+
"compiledGrammar": {
|
|
1941
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
1942
|
+
"qualification": "valid",
|
|
1943
|
+
"startRule": "markdown-link",
|
|
1944
|
+
"grammarRules": [
|
|
1945
|
+
{
|
|
1946
|
+
"name": "markdown-link",
|
|
1947
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
1948
|
+
"expression": {
|
|
1949
|
+
"type": "concatenation",
|
|
1950
|
+
"parts": [
|
|
1951
|
+
{
|
|
1952
|
+
"type": "literal",
|
|
1953
|
+
"value": "["
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"type": "reference",
|
|
1957
|
+
"name": "label"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"type": "literal",
|
|
1961
|
+
"value": "]("
|
|
1962
|
+
},
|
|
1963
|
+
{
|
|
1964
|
+
"type": "reference",
|
|
1965
|
+
"name": "target"
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
"type": "literal",
|
|
1969
|
+
"value": ")"
|
|
1970
|
+
}
|
|
1971
|
+
]
|
|
1972
|
+
}
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"name": "label",
|
|
1976
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
1977
|
+
"expression": {
|
|
1978
|
+
"type": "repeat",
|
|
1979
|
+
"quantifier": "+",
|
|
1980
|
+
"expression": {
|
|
1981
|
+
"type": "any-except",
|
|
1982
|
+
"exclusions": [
|
|
1983
|
+
"]",
|
|
1984
|
+
"\t",
|
|
1985
|
+
"\r",
|
|
1986
|
+
"\n"
|
|
1987
|
+
]
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1990
|
+
},
|
|
1991
|
+
{
|
|
1992
|
+
"name": "target",
|
|
1993
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
1994
|
+
"expression": {
|
|
1995
|
+
"type": "repeat",
|
|
1996
|
+
"quantifier": "+",
|
|
1997
|
+
"expression": {
|
|
1998
|
+
"type": "any-except",
|
|
1999
|
+
"exclusions": [
|
|
2000
|
+
")",
|
|
2001
|
+
" ",
|
|
2002
|
+
"\t",
|
|
2003
|
+
"\r",
|
|
2004
|
+
"\n"
|
|
2005
|
+
]
|
|
2006
|
+
}
|
|
2007
|
+
}
|
|
2008
|
+
}
|
|
2009
|
+
],
|
|
2010
|
+
"findings": []
|
|
2011
|
+
}
|
|
2012
|
+
},
|
|
2013
|
+
"resolvedDefinitionProvenance": {
|
|
2014
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2015
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2016
|
+
"declarationSource": {
|
|
2017
|
+
"line": 408
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
"visibleDefinitions": [
|
|
2021
|
+
{
|
|
2022
|
+
"shapeLabel": "Markdown Link",
|
|
2023
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2024
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2025
|
+
"declarationSource": {
|
|
2026
|
+
"line": 408
|
|
2027
|
+
},
|
|
2028
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2029
|
+
"definitionQualification": "valid",
|
|
2030
|
+
"qualificationSupport": "available"
|
|
2031
|
+
}
|
|
2032
|
+
],
|
|
2033
|
+
"findings": []
|
|
2034
|
+
}
|
|
2035
|
+
]
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"kind": "field-domain",
|
|
2039
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
2040
|
+
"sourceGroup": "Handoff Parties",
|
|
2041
|
+
"field": "From Capacity Reference",
|
|
2042
|
+
"allowedValues": [],
|
|
2043
|
+
"allowedShapes": [
|
|
2044
|
+
"Markdown Link"
|
|
2045
|
+
],
|
|
2046
|
+
"domainPolicy": "closed",
|
|
2047
|
+
"declarationLine": 124,
|
|
2048
|
+
"declarationQualification": "valid",
|
|
2049
|
+
"declarationFindings": [],
|
|
2050
|
+
"targetMode": "local",
|
|
2051
|
+
"targetOwnership": "source-local",
|
|
2052
|
+
"ownershipSourceSchemaIds": [
|
|
2053
|
+
"tiinex.handoff.v1"
|
|
2054
|
+
],
|
|
2055
|
+
"targetGroup": "Handoff Parties",
|
|
2056
|
+
"appliesToTarget": "",
|
|
2057
|
+
"authorityQualification": "valid",
|
|
2058
|
+
"authorityFindings": [],
|
|
2059
|
+
"allowedShapeAuthorities": [
|
|
2060
|
+
{
|
|
2061
|
+
"shapeLabel": "Markdown Link",
|
|
2062
|
+
"qualification": "evaluable",
|
|
2063
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
2064
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2065
|
+
"visibleSchemaIds": [
|
|
2066
|
+
"tiinex.root.v1",
|
|
2067
|
+
"tiinex.handoff.v1"
|
|
2068
|
+
],
|
|
2069
|
+
"definition": {
|
|
2070
|
+
"kind": "machine-shape-definition",
|
|
2071
|
+
"shapeLabel": "Markdown Link",
|
|
2072
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2073
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2074
|
+
"declarationSource": {
|
|
2075
|
+
"line": 408
|
|
2076
|
+
},
|
|
2077
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2078
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2079
|
+
"startRule": "markdown-link",
|
|
2080
|
+
"grammarRules": [
|
|
2081
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
2082
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2083
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
2084
|
+
],
|
|
2085
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2086
|
+
"qualificationSupport": "available",
|
|
2087
|
+
"definitionQualification": "valid",
|
|
2088
|
+
"definitionFindings": [],
|
|
2089
|
+
"declarationStructure": {
|
|
2090
|
+
"value": "Markdown Link",
|
|
2091
|
+
"children": [
|
|
2092
|
+
{
|
|
2093
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
2094
|
+
"children": []
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2098
|
+
"children": []
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
2102
|
+
"children": []
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2106
|
+
"children": []
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2110
|
+
"children": []
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
"value": "Start Rule: markdown-link",
|
|
2114
|
+
"children": []
|
|
2115
|
+
}
|
|
2116
|
+
]
|
|
2117
|
+
},
|
|
2118
|
+
"compiledGrammar": {
|
|
2119
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
2120
|
+
"qualification": "valid",
|
|
2121
|
+
"startRule": "markdown-link",
|
|
2122
|
+
"grammarRules": [
|
|
2123
|
+
{
|
|
2124
|
+
"name": "markdown-link",
|
|
2125
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
2126
|
+
"expression": {
|
|
2127
|
+
"type": "concatenation",
|
|
2128
|
+
"parts": [
|
|
2129
|
+
{
|
|
2130
|
+
"type": "literal",
|
|
2131
|
+
"value": "["
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"type": "reference",
|
|
2135
|
+
"name": "label"
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
"type": "literal",
|
|
2139
|
+
"value": "]("
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"type": "reference",
|
|
2143
|
+
"name": "target"
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"type": "literal",
|
|
2147
|
+
"value": ")"
|
|
2148
|
+
}
|
|
2149
|
+
]
|
|
2150
|
+
}
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
"name": "label",
|
|
2154
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2155
|
+
"expression": {
|
|
2156
|
+
"type": "repeat",
|
|
2157
|
+
"quantifier": "+",
|
|
2158
|
+
"expression": {
|
|
2159
|
+
"type": "any-except",
|
|
2160
|
+
"exclusions": [
|
|
2161
|
+
"]",
|
|
2162
|
+
"\t",
|
|
2163
|
+
"\r",
|
|
2164
|
+
"\n"
|
|
2165
|
+
]
|
|
2166
|
+
}
|
|
2167
|
+
}
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"name": "target",
|
|
2171
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2172
|
+
"expression": {
|
|
2173
|
+
"type": "repeat",
|
|
2174
|
+
"quantifier": "+",
|
|
2175
|
+
"expression": {
|
|
2176
|
+
"type": "any-except",
|
|
2177
|
+
"exclusions": [
|
|
2178
|
+
")",
|
|
2179
|
+
" ",
|
|
2180
|
+
"\t",
|
|
2181
|
+
"\r",
|
|
2182
|
+
"\n"
|
|
2183
|
+
]
|
|
2184
|
+
}
|
|
2185
|
+
}
|
|
2186
|
+
}
|
|
2187
|
+
],
|
|
2188
|
+
"findings": []
|
|
2189
|
+
}
|
|
2190
|
+
},
|
|
2191
|
+
"resolvedDefinitionProvenance": {
|
|
2192
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2193
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2194
|
+
"declarationSource": {
|
|
2195
|
+
"line": 408
|
|
2196
|
+
}
|
|
2197
|
+
},
|
|
2198
|
+
"visibleDefinitions": [
|
|
2199
|
+
{
|
|
2200
|
+
"shapeLabel": "Markdown Link",
|
|
2201
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2202
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2203
|
+
"declarationSource": {
|
|
2204
|
+
"line": 408
|
|
2205
|
+
},
|
|
2206
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2207
|
+
"definitionQualification": "valid",
|
|
2208
|
+
"qualificationSupport": "available"
|
|
2209
|
+
}
|
|
2210
|
+
],
|
|
2211
|
+
"findings": []
|
|
2212
|
+
}
|
|
2213
|
+
]
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"kind": "field-domain",
|
|
2217
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
2218
|
+
"sourceGroup": "Handoff Parties",
|
|
2219
|
+
"field": "To Capacity Reference",
|
|
2220
|
+
"allowedValues": [],
|
|
2221
|
+
"allowedShapes": [
|
|
2222
|
+
"Markdown Link"
|
|
2223
|
+
],
|
|
2224
|
+
"domainPolicy": "closed",
|
|
2225
|
+
"declarationLine": 128,
|
|
2226
|
+
"declarationQualification": "valid",
|
|
2227
|
+
"declarationFindings": [],
|
|
2228
|
+
"targetMode": "local",
|
|
2229
|
+
"targetOwnership": "source-local",
|
|
2230
|
+
"ownershipSourceSchemaIds": [
|
|
2231
|
+
"tiinex.handoff.v1"
|
|
2232
|
+
],
|
|
2233
|
+
"targetGroup": "Handoff Parties",
|
|
2234
|
+
"appliesToTarget": "",
|
|
2235
|
+
"authorityQualification": "valid",
|
|
2236
|
+
"authorityFindings": [],
|
|
2237
|
+
"allowedShapeAuthorities": [
|
|
2238
|
+
{
|
|
2239
|
+
"shapeLabel": "Markdown Link",
|
|
2240
|
+
"qualification": "evaluable",
|
|
2241
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
2242
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2243
|
+
"visibleSchemaIds": [
|
|
2244
|
+
"tiinex.root.v1",
|
|
2245
|
+
"tiinex.handoff.v1"
|
|
2246
|
+
],
|
|
2247
|
+
"definition": {
|
|
2248
|
+
"kind": "machine-shape-definition",
|
|
2249
|
+
"shapeLabel": "Markdown Link",
|
|
2250
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2251
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2252
|
+
"declarationSource": {
|
|
2253
|
+
"line": 408
|
|
2254
|
+
},
|
|
2255
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2256
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2257
|
+
"startRule": "markdown-link",
|
|
2258
|
+
"grammarRules": [
|
|
2259
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
2260
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2261
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
2262
|
+
],
|
|
2263
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2264
|
+
"qualificationSupport": "available",
|
|
2265
|
+
"definitionQualification": "valid",
|
|
2266
|
+
"definitionFindings": [],
|
|
2267
|
+
"declarationStructure": {
|
|
2268
|
+
"value": "Markdown Link",
|
|
2269
|
+
"children": [
|
|
2270
|
+
{
|
|
2271
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
2272
|
+
"children": []
|
|
2273
|
+
},
|
|
2274
|
+
{
|
|
2275
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2276
|
+
"children": []
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
2280
|
+
"children": []
|
|
2281
|
+
},
|
|
2282
|
+
{
|
|
2283
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2284
|
+
"children": []
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2288
|
+
"children": []
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
"value": "Start Rule: markdown-link",
|
|
2292
|
+
"children": []
|
|
2293
|
+
}
|
|
2294
|
+
]
|
|
2295
|
+
},
|
|
2296
|
+
"compiledGrammar": {
|
|
2297
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
2298
|
+
"qualification": "valid",
|
|
2299
|
+
"startRule": "markdown-link",
|
|
2300
|
+
"grammarRules": [
|
|
2301
|
+
{
|
|
2302
|
+
"name": "markdown-link",
|
|
2303
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
2304
|
+
"expression": {
|
|
2305
|
+
"type": "concatenation",
|
|
2306
|
+
"parts": [
|
|
2307
|
+
{
|
|
2308
|
+
"type": "literal",
|
|
2309
|
+
"value": "["
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"type": "reference",
|
|
2313
|
+
"name": "label"
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"type": "literal",
|
|
2317
|
+
"value": "]("
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
"type": "reference",
|
|
2321
|
+
"name": "target"
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"type": "literal",
|
|
2325
|
+
"value": ")"
|
|
2326
|
+
}
|
|
2327
|
+
]
|
|
2328
|
+
}
|
|
2329
|
+
},
|
|
2330
|
+
{
|
|
2331
|
+
"name": "label",
|
|
2332
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2333
|
+
"expression": {
|
|
2334
|
+
"type": "repeat",
|
|
2335
|
+
"quantifier": "+",
|
|
2336
|
+
"expression": {
|
|
2337
|
+
"type": "any-except",
|
|
2338
|
+
"exclusions": [
|
|
2339
|
+
"]",
|
|
2340
|
+
"\t",
|
|
2341
|
+
"\r",
|
|
2342
|
+
"\n"
|
|
2343
|
+
]
|
|
2344
|
+
}
|
|
2345
|
+
}
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
"name": "target",
|
|
2349
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2350
|
+
"expression": {
|
|
2351
|
+
"type": "repeat",
|
|
2352
|
+
"quantifier": "+",
|
|
2353
|
+
"expression": {
|
|
2354
|
+
"type": "any-except",
|
|
2355
|
+
"exclusions": [
|
|
2356
|
+
")",
|
|
2357
|
+
" ",
|
|
2358
|
+
"\t",
|
|
2359
|
+
"\r",
|
|
2360
|
+
"\n"
|
|
2361
|
+
]
|
|
2362
|
+
}
|
|
2363
|
+
}
|
|
2364
|
+
}
|
|
2365
|
+
],
|
|
2366
|
+
"findings": []
|
|
2367
|
+
}
|
|
2368
|
+
},
|
|
2369
|
+
"resolvedDefinitionProvenance": {
|
|
2370
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2371
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2372
|
+
"declarationSource": {
|
|
2373
|
+
"line": 408
|
|
2374
|
+
}
|
|
2375
|
+
},
|
|
2376
|
+
"visibleDefinitions": [
|
|
2377
|
+
{
|
|
2378
|
+
"shapeLabel": "Markdown Link",
|
|
2379
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2380
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2381
|
+
"declarationSource": {
|
|
2382
|
+
"line": 408
|
|
2383
|
+
},
|
|
2384
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2385
|
+
"definitionQualification": "valid",
|
|
2386
|
+
"qualificationSupport": "available"
|
|
2387
|
+
}
|
|
2388
|
+
],
|
|
2389
|
+
"findings": []
|
|
2390
|
+
}
|
|
2391
|
+
]
|
|
2392
|
+
},
|
|
2393
|
+
{
|
|
2394
|
+
"kind": "field-domain",
|
|
2395
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
2396
|
+
"sourceGroup": "Transfers",
|
|
2397
|
+
"field": "Transfer Kind",
|
|
2398
|
+
"allowedValues": [
|
|
2399
|
+
"work",
|
|
2400
|
+
"responsibility",
|
|
2401
|
+
"work-and-responsibility"
|
|
2402
|
+
],
|
|
2403
|
+
"allowedShapes": [],
|
|
2404
|
+
"domainPolicy": "closed",
|
|
2405
|
+
"declarationLine": 170,
|
|
2406
|
+
"declarationQualification": "valid",
|
|
2407
|
+
"declarationFindings": [],
|
|
2408
|
+
"targetMode": "local",
|
|
2409
|
+
"targetOwnership": "source-local",
|
|
2410
|
+
"ownershipSourceSchemaIds": [
|
|
2411
|
+
"tiinex.handoff.v1"
|
|
2412
|
+
],
|
|
2413
|
+
"targetGroup": "Transfers",
|
|
2414
|
+
"appliesToTarget": "",
|
|
2415
|
+
"authorityQualification": "valid",
|
|
2416
|
+
"authorityFindings": [],
|
|
2417
|
+
"allowedShapeAuthorities": []
|
|
2418
|
+
},
|
|
2419
|
+
{
|
|
2420
|
+
"kind": "field-domain",
|
|
2421
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
2422
|
+
"sourceGroup": "Transfers",
|
|
2423
|
+
"field": "Controlling Artifact",
|
|
2424
|
+
"allowedValues": [],
|
|
2425
|
+
"allowedShapes": [
|
|
2426
|
+
"Markdown Link"
|
|
2427
|
+
],
|
|
2428
|
+
"domainPolicy": "closed",
|
|
2429
|
+
"declarationLine": 176,
|
|
2430
|
+
"declarationQualification": "valid",
|
|
2431
|
+
"declarationFindings": [],
|
|
2432
|
+
"targetMode": "local",
|
|
2433
|
+
"targetOwnership": "source-local",
|
|
2434
|
+
"ownershipSourceSchemaIds": [
|
|
2435
|
+
"tiinex.handoff.v1"
|
|
2436
|
+
],
|
|
2437
|
+
"targetGroup": "Transfers",
|
|
2438
|
+
"appliesToTarget": "",
|
|
2439
|
+
"authorityQualification": "valid",
|
|
2440
|
+
"authorityFindings": [],
|
|
2441
|
+
"allowedShapeAuthorities": [
|
|
2442
|
+
{
|
|
2443
|
+
"shapeLabel": "Markdown Link",
|
|
2444
|
+
"qualification": "evaluable",
|
|
2445
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
2446
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2447
|
+
"visibleSchemaIds": [
|
|
2448
|
+
"tiinex.root.v1",
|
|
2449
|
+
"tiinex.handoff.v1"
|
|
2450
|
+
],
|
|
2451
|
+
"definition": {
|
|
2452
|
+
"kind": "machine-shape-definition",
|
|
2453
|
+
"shapeLabel": "Markdown Link",
|
|
2454
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2455
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2456
|
+
"declarationSource": {
|
|
2457
|
+
"line": 408
|
|
2458
|
+
},
|
|
2459
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2460
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2461
|
+
"startRule": "markdown-link",
|
|
2462
|
+
"grammarRules": [
|
|
2463
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
2464
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2465
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
2466
|
+
],
|
|
2467
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2468
|
+
"qualificationSupport": "available",
|
|
2469
|
+
"definitionQualification": "valid",
|
|
2470
|
+
"definitionFindings": [],
|
|
2471
|
+
"declarationStructure": {
|
|
2472
|
+
"value": "Markdown Link",
|
|
2473
|
+
"children": [
|
|
2474
|
+
{
|
|
2475
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
2476
|
+
"children": []
|
|
2477
|
+
},
|
|
2478
|
+
{
|
|
2479
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2480
|
+
"children": []
|
|
2481
|
+
},
|
|
2482
|
+
{
|
|
2483
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
2484
|
+
"children": []
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2488
|
+
"children": []
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2492
|
+
"children": []
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
"value": "Start Rule: markdown-link",
|
|
2496
|
+
"children": []
|
|
2497
|
+
}
|
|
2498
|
+
]
|
|
2499
|
+
},
|
|
2500
|
+
"compiledGrammar": {
|
|
2501
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
2502
|
+
"qualification": "valid",
|
|
2503
|
+
"startRule": "markdown-link",
|
|
2504
|
+
"grammarRules": [
|
|
2505
|
+
{
|
|
2506
|
+
"name": "markdown-link",
|
|
2507
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
2508
|
+
"expression": {
|
|
2509
|
+
"type": "concatenation",
|
|
2510
|
+
"parts": [
|
|
2511
|
+
{
|
|
2512
|
+
"type": "literal",
|
|
2513
|
+
"value": "["
|
|
2514
|
+
},
|
|
2515
|
+
{
|
|
2516
|
+
"type": "reference",
|
|
2517
|
+
"name": "label"
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
"type": "literal",
|
|
2521
|
+
"value": "]("
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
"type": "reference",
|
|
2525
|
+
"name": "target"
|
|
2526
|
+
},
|
|
2527
|
+
{
|
|
2528
|
+
"type": "literal",
|
|
2529
|
+
"value": ")"
|
|
2530
|
+
}
|
|
2531
|
+
]
|
|
2532
|
+
}
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
"name": "label",
|
|
2536
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2537
|
+
"expression": {
|
|
2538
|
+
"type": "repeat",
|
|
2539
|
+
"quantifier": "+",
|
|
2540
|
+
"expression": {
|
|
2541
|
+
"type": "any-except",
|
|
2542
|
+
"exclusions": [
|
|
2543
|
+
"]",
|
|
2544
|
+
"\t",
|
|
2545
|
+
"\r",
|
|
2546
|
+
"\n"
|
|
2547
|
+
]
|
|
2548
|
+
}
|
|
2549
|
+
}
|
|
2550
|
+
},
|
|
2551
|
+
{
|
|
2552
|
+
"name": "target",
|
|
2553
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2554
|
+
"expression": {
|
|
2555
|
+
"type": "repeat",
|
|
2556
|
+
"quantifier": "+",
|
|
2557
|
+
"expression": {
|
|
2558
|
+
"type": "any-except",
|
|
2559
|
+
"exclusions": [
|
|
2560
|
+
")",
|
|
2561
|
+
" ",
|
|
2562
|
+
"\t",
|
|
2563
|
+
"\r",
|
|
2564
|
+
"\n"
|
|
2565
|
+
]
|
|
2566
|
+
}
|
|
2567
|
+
}
|
|
2568
|
+
}
|
|
2569
|
+
],
|
|
2570
|
+
"findings": []
|
|
2571
|
+
}
|
|
2572
|
+
},
|
|
2573
|
+
"resolvedDefinitionProvenance": {
|
|
2574
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2575
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2576
|
+
"declarationSource": {
|
|
2577
|
+
"line": 408
|
|
2578
|
+
}
|
|
2579
|
+
},
|
|
2580
|
+
"visibleDefinitions": [
|
|
2581
|
+
{
|
|
2582
|
+
"shapeLabel": "Markdown Link",
|
|
2583
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2584
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2585
|
+
"declarationSource": {
|
|
2586
|
+
"line": 408
|
|
2587
|
+
},
|
|
2588
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2589
|
+
"definitionQualification": "valid",
|
|
2590
|
+
"qualificationSupport": "available"
|
|
2591
|
+
}
|
|
2592
|
+
],
|
|
2593
|
+
"findings": []
|
|
2594
|
+
}
|
|
2595
|
+
]
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
"kind": "field-domain",
|
|
2599
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
2600
|
+
"sourceGroup": "Required Context",
|
|
2601
|
+
"field": "Availability",
|
|
2602
|
+
"allowedValues": [
|
|
2603
|
+
"available",
|
|
2604
|
+
"unavailable",
|
|
2605
|
+
"unresolved",
|
|
2606
|
+
"unknown"
|
|
2607
|
+
],
|
|
2608
|
+
"allowedShapes": [],
|
|
2609
|
+
"domainPolicy": "closed",
|
|
2610
|
+
"declarationLine": 213,
|
|
2611
|
+
"declarationQualification": "valid",
|
|
2612
|
+
"declarationFindings": [],
|
|
2613
|
+
"targetMode": "local",
|
|
2614
|
+
"targetOwnership": "source-local",
|
|
2615
|
+
"ownershipSourceSchemaIds": [
|
|
2616
|
+
"tiinex.handoff.v1"
|
|
2617
|
+
],
|
|
2618
|
+
"targetGroup": "Required Context",
|
|
2619
|
+
"appliesToTarget": "",
|
|
2620
|
+
"authorityQualification": "valid",
|
|
2621
|
+
"authorityFindings": [],
|
|
2622
|
+
"allowedShapeAuthorities": []
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
"kind": "field-domain",
|
|
2626
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
2627
|
+
"sourceGroup": "Required Context",
|
|
2628
|
+
"field": "Material Reference",
|
|
2629
|
+
"allowedValues": [],
|
|
2630
|
+
"allowedShapes": [
|
|
2631
|
+
"Markdown Link"
|
|
2632
|
+
],
|
|
2633
|
+
"domainPolicy": "closed",
|
|
2634
|
+
"declarationLine": 220,
|
|
2635
|
+
"declarationQualification": "valid",
|
|
2636
|
+
"declarationFindings": [],
|
|
2637
|
+
"targetMode": "local",
|
|
2638
|
+
"targetOwnership": "source-local",
|
|
2639
|
+
"ownershipSourceSchemaIds": [
|
|
2640
|
+
"tiinex.handoff.v1"
|
|
2641
|
+
],
|
|
2642
|
+
"targetGroup": "Required Context",
|
|
2643
|
+
"appliesToTarget": "",
|
|
2644
|
+
"authorityQualification": "valid",
|
|
2645
|
+
"authorityFindings": [],
|
|
2646
|
+
"allowedShapeAuthorities": [
|
|
2647
|
+
{
|
|
2648
|
+
"shapeLabel": "Markdown Link",
|
|
2649
|
+
"qualification": "evaluable",
|
|
2650
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
2651
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2652
|
+
"visibleSchemaIds": [
|
|
2653
|
+
"tiinex.root.v1",
|
|
2654
|
+
"tiinex.handoff.v1"
|
|
2655
|
+
],
|
|
2656
|
+
"definition": {
|
|
2657
|
+
"kind": "machine-shape-definition",
|
|
2658
|
+
"shapeLabel": "Markdown Link",
|
|
2659
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2660
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2661
|
+
"declarationSource": {
|
|
2662
|
+
"line": 408
|
|
2663
|
+
},
|
|
2664
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2665
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2666
|
+
"startRule": "markdown-link",
|
|
2667
|
+
"grammarRules": [
|
|
2668
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
2669
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2670
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
2671
|
+
],
|
|
2672
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2673
|
+
"qualificationSupport": "available",
|
|
2674
|
+
"definitionQualification": "valid",
|
|
2675
|
+
"definitionFindings": [],
|
|
2676
|
+
"declarationStructure": {
|
|
2677
|
+
"value": "Markdown Link",
|
|
2678
|
+
"children": [
|
|
2679
|
+
{
|
|
2680
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
2681
|
+
"children": []
|
|
2682
|
+
},
|
|
2683
|
+
{
|
|
2684
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2685
|
+
"children": []
|
|
2686
|
+
},
|
|
2687
|
+
{
|
|
2688
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
2689
|
+
"children": []
|
|
2690
|
+
},
|
|
2691
|
+
{
|
|
2692
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2693
|
+
"children": []
|
|
2694
|
+
},
|
|
2695
|
+
{
|
|
2696
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2697
|
+
"children": []
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
"value": "Start Rule: markdown-link",
|
|
2701
|
+
"children": []
|
|
2702
|
+
}
|
|
2703
|
+
]
|
|
2704
|
+
},
|
|
2705
|
+
"compiledGrammar": {
|
|
2706
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
2707
|
+
"qualification": "valid",
|
|
2708
|
+
"startRule": "markdown-link",
|
|
2709
|
+
"grammarRules": [
|
|
2710
|
+
{
|
|
2711
|
+
"name": "markdown-link",
|
|
2712
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
2713
|
+
"expression": {
|
|
2714
|
+
"type": "concatenation",
|
|
2715
|
+
"parts": [
|
|
2716
|
+
{
|
|
2717
|
+
"type": "literal",
|
|
2718
|
+
"value": "["
|
|
2719
|
+
},
|
|
2720
|
+
{
|
|
2721
|
+
"type": "reference",
|
|
2722
|
+
"name": "label"
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"type": "literal",
|
|
2726
|
+
"value": "]("
|
|
2727
|
+
},
|
|
2728
|
+
{
|
|
2729
|
+
"type": "reference",
|
|
2730
|
+
"name": "target"
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
"type": "literal",
|
|
2734
|
+
"value": ")"
|
|
2735
|
+
}
|
|
2736
|
+
]
|
|
2737
|
+
}
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"name": "label",
|
|
2741
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2742
|
+
"expression": {
|
|
2743
|
+
"type": "repeat",
|
|
2744
|
+
"quantifier": "+",
|
|
2745
|
+
"expression": {
|
|
2746
|
+
"type": "any-except",
|
|
2747
|
+
"exclusions": [
|
|
2748
|
+
"]",
|
|
2749
|
+
"\t",
|
|
2750
|
+
"\r",
|
|
2751
|
+
"\n"
|
|
2752
|
+
]
|
|
2753
|
+
}
|
|
2754
|
+
}
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
"name": "target",
|
|
2758
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2759
|
+
"expression": {
|
|
2760
|
+
"type": "repeat",
|
|
2761
|
+
"quantifier": "+",
|
|
2762
|
+
"expression": {
|
|
2763
|
+
"type": "any-except",
|
|
2764
|
+
"exclusions": [
|
|
2765
|
+
")",
|
|
2766
|
+
" ",
|
|
2767
|
+
"\t",
|
|
2768
|
+
"\r",
|
|
2769
|
+
"\n"
|
|
2770
|
+
]
|
|
2771
|
+
}
|
|
2772
|
+
}
|
|
2773
|
+
}
|
|
2774
|
+
],
|
|
2775
|
+
"findings": []
|
|
2776
|
+
}
|
|
2777
|
+
},
|
|
2778
|
+
"resolvedDefinitionProvenance": {
|
|
2779
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2780
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2781
|
+
"declarationSource": {
|
|
2782
|
+
"line": 408
|
|
2783
|
+
}
|
|
2784
|
+
},
|
|
2785
|
+
"visibleDefinitions": [
|
|
2786
|
+
{
|
|
2787
|
+
"shapeLabel": "Markdown Link",
|
|
2788
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2789
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2790
|
+
"declarationSource": {
|
|
2791
|
+
"line": 408
|
|
2792
|
+
},
|
|
2793
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2794
|
+
"definitionQualification": "valid",
|
|
2795
|
+
"qualificationSupport": "available"
|
|
2796
|
+
}
|
|
2797
|
+
],
|
|
2798
|
+
"findings": []
|
|
2799
|
+
}
|
|
2800
|
+
]
|
|
2801
|
+
},
|
|
2802
|
+
{
|
|
2803
|
+
"kind": "field-domain",
|
|
2804
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
2805
|
+
"sourceGroup": "Reference Context",
|
|
2806
|
+
"field": "Availability",
|
|
2807
|
+
"allowedValues": [
|
|
2808
|
+
"available",
|
|
2809
|
+
"unavailable",
|
|
2810
|
+
"unresolved",
|
|
2811
|
+
"unknown"
|
|
2812
|
+
],
|
|
2813
|
+
"allowedShapes": [],
|
|
2814
|
+
"domainPolicy": "closed",
|
|
2815
|
+
"declarationLine": 256,
|
|
2816
|
+
"declarationQualification": "valid",
|
|
2817
|
+
"declarationFindings": [],
|
|
2818
|
+
"targetMode": "local",
|
|
2819
|
+
"targetOwnership": "source-local",
|
|
2820
|
+
"ownershipSourceSchemaIds": [
|
|
2821
|
+
"tiinex.handoff.v1"
|
|
2822
|
+
],
|
|
2823
|
+
"targetGroup": "Reference Context",
|
|
2824
|
+
"appliesToTarget": "",
|
|
2825
|
+
"authorityQualification": "valid",
|
|
2826
|
+
"authorityFindings": [],
|
|
2827
|
+
"allowedShapeAuthorities": []
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
2830
|
+
"kind": "field-domain",
|
|
2831
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
2832
|
+
"sourceGroup": "Reference Context",
|
|
2833
|
+
"field": "Material Reference",
|
|
2834
|
+
"allowedValues": [],
|
|
2835
|
+
"allowedShapes": [
|
|
2836
|
+
"Markdown Link"
|
|
2837
|
+
],
|
|
2838
|
+
"domainPolicy": "closed",
|
|
2839
|
+
"declarationLine": 263,
|
|
2840
|
+
"declarationQualification": "valid",
|
|
2841
|
+
"declarationFindings": [],
|
|
2842
|
+
"targetMode": "local",
|
|
2843
|
+
"targetOwnership": "source-local",
|
|
2844
|
+
"ownershipSourceSchemaIds": [
|
|
2845
|
+
"tiinex.handoff.v1"
|
|
2846
|
+
],
|
|
2847
|
+
"targetGroup": "Reference Context",
|
|
2848
|
+
"appliesToTarget": "",
|
|
2849
|
+
"authorityQualification": "valid",
|
|
2850
|
+
"authorityFindings": [],
|
|
2851
|
+
"allowedShapeAuthorities": [
|
|
2852
|
+
{
|
|
2853
|
+
"shapeLabel": "Markdown Link",
|
|
2854
|
+
"qualification": "evaluable",
|
|
2855
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
2856
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2857
|
+
"visibleSchemaIds": [
|
|
2858
|
+
"tiinex.root.v1",
|
|
2859
|
+
"tiinex.handoff.v1"
|
|
2860
|
+
],
|
|
2861
|
+
"definition": {
|
|
2862
|
+
"kind": "machine-shape-definition",
|
|
2863
|
+
"shapeLabel": "Markdown Link",
|
|
2864
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2865
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2866
|
+
"declarationSource": {
|
|
2867
|
+
"line": 408
|
|
2868
|
+
},
|
|
2869
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
2870
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2871
|
+
"startRule": "markdown-link",
|
|
2872
|
+
"grammarRules": [
|
|
2873
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
2874
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2875
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
2876
|
+
],
|
|
2877
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2878
|
+
"qualificationSupport": "available",
|
|
2879
|
+
"definitionQualification": "valid",
|
|
2880
|
+
"definitionFindings": [],
|
|
2881
|
+
"declarationStructure": {
|
|
2882
|
+
"value": "Markdown Link",
|
|
2883
|
+
"children": [
|
|
2884
|
+
{
|
|
2885
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
2886
|
+
"children": []
|
|
2887
|
+
},
|
|
2888
|
+
{
|
|
2889
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2890
|
+
"children": []
|
|
2891
|
+
},
|
|
2892
|
+
{
|
|
2893
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
2894
|
+
"children": []
|
|
2895
|
+
},
|
|
2896
|
+
{
|
|
2897
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2898
|
+
"children": []
|
|
2899
|
+
},
|
|
2900
|
+
{
|
|
2901
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
2902
|
+
"children": []
|
|
2903
|
+
},
|
|
2904
|
+
{
|
|
2905
|
+
"value": "Start Rule: markdown-link",
|
|
2906
|
+
"children": []
|
|
2907
|
+
}
|
|
2908
|
+
]
|
|
2909
|
+
},
|
|
2910
|
+
"compiledGrammar": {
|
|
2911
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
2912
|
+
"qualification": "valid",
|
|
2913
|
+
"startRule": "markdown-link",
|
|
2914
|
+
"grammarRules": [
|
|
2915
|
+
{
|
|
2916
|
+
"name": "markdown-link",
|
|
2917
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
2918
|
+
"expression": {
|
|
2919
|
+
"type": "concatenation",
|
|
2920
|
+
"parts": [
|
|
2921
|
+
{
|
|
2922
|
+
"type": "literal",
|
|
2923
|
+
"value": "["
|
|
2924
|
+
},
|
|
2925
|
+
{
|
|
2926
|
+
"type": "reference",
|
|
2927
|
+
"name": "label"
|
|
2928
|
+
},
|
|
2929
|
+
{
|
|
2930
|
+
"type": "literal",
|
|
2931
|
+
"value": "]("
|
|
2932
|
+
},
|
|
2933
|
+
{
|
|
2934
|
+
"type": "reference",
|
|
2935
|
+
"name": "target"
|
|
2936
|
+
},
|
|
2937
|
+
{
|
|
2938
|
+
"type": "literal",
|
|
2939
|
+
"value": ")"
|
|
2940
|
+
}
|
|
2941
|
+
]
|
|
2942
|
+
}
|
|
2943
|
+
},
|
|
2944
|
+
{
|
|
2945
|
+
"name": "label",
|
|
2946
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
2947
|
+
"expression": {
|
|
2948
|
+
"type": "repeat",
|
|
2949
|
+
"quantifier": "+",
|
|
2950
|
+
"expression": {
|
|
2951
|
+
"type": "any-except",
|
|
2952
|
+
"exclusions": [
|
|
2953
|
+
"]",
|
|
2954
|
+
"\t",
|
|
2955
|
+
"\r",
|
|
2956
|
+
"\n"
|
|
2957
|
+
]
|
|
2958
|
+
}
|
|
2959
|
+
}
|
|
2960
|
+
},
|
|
2961
|
+
{
|
|
2962
|
+
"name": "target",
|
|
2963
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
2964
|
+
"expression": {
|
|
2965
|
+
"type": "repeat",
|
|
2966
|
+
"quantifier": "+",
|
|
2967
|
+
"expression": {
|
|
2968
|
+
"type": "any-except",
|
|
2969
|
+
"exclusions": [
|
|
2970
|
+
")",
|
|
2971
|
+
" ",
|
|
2972
|
+
"\t",
|
|
2973
|
+
"\r",
|
|
2974
|
+
"\n"
|
|
2975
|
+
]
|
|
2976
|
+
}
|
|
2977
|
+
}
|
|
2978
|
+
}
|
|
2979
|
+
],
|
|
2980
|
+
"findings": []
|
|
2981
|
+
}
|
|
2982
|
+
},
|
|
2983
|
+
"resolvedDefinitionProvenance": {
|
|
2984
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2985
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2986
|
+
"declarationSource": {
|
|
2987
|
+
"line": 408
|
|
2988
|
+
}
|
|
2989
|
+
},
|
|
2990
|
+
"visibleDefinitions": [
|
|
2991
|
+
{
|
|
2992
|
+
"shapeLabel": "Markdown Link",
|
|
2993
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
2994
|
+
"sourceGroup": "Machine Shape Authority",
|
|
2995
|
+
"declarationSource": {
|
|
2996
|
+
"line": 408
|
|
2997
|
+
},
|
|
2998
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
2999
|
+
"definitionQualification": "valid",
|
|
3000
|
+
"qualificationSupport": "available"
|
|
3001
|
+
}
|
|
3002
|
+
],
|
|
3003
|
+
"findings": []
|
|
3004
|
+
}
|
|
3005
|
+
]
|
|
3006
|
+
},
|
|
3007
|
+
{
|
|
3008
|
+
"kind": "field-domain",
|
|
3009
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
3010
|
+
"sourceGroup": "Retained Responsibilities",
|
|
3011
|
+
"field": "Retained By Reference",
|
|
3012
|
+
"allowedValues": [],
|
|
3013
|
+
"allowedShapes": [
|
|
3014
|
+
"Markdown Link"
|
|
3015
|
+
],
|
|
3016
|
+
"domainPolicy": "closed",
|
|
3017
|
+
"declarationLine": 297,
|
|
3018
|
+
"declarationQualification": "valid",
|
|
3019
|
+
"declarationFindings": [],
|
|
3020
|
+
"targetMode": "local",
|
|
3021
|
+
"targetOwnership": "source-local",
|
|
3022
|
+
"ownershipSourceSchemaIds": [
|
|
3023
|
+
"tiinex.handoff.v1"
|
|
3024
|
+
],
|
|
3025
|
+
"targetGroup": "Retained Responsibilities",
|
|
3026
|
+
"appliesToTarget": "",
|
|
3027
|
+
"authorityQualification": "valid",
|
|
3028
|
+
"authorityFindings": [],
|
|
3029
|
+
"allowedShapeAuthorities": [
|
|
3030
|
+
{
|
|
3031
|
+
"shapeLabel": "Markdown Link",
|
|
3032
|
+
"qualification": "evaluable",
|
|
3033
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
3034
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3035
|
+
"visibleSchemaIds": [
|
|
3036
|
+
"tiinex.root.v1",
|
|
3037
|
+
"tiinex.handoff.v1"
|
|
3038
|
+
],
|
|
3039
|
+
"definition": {
|
|
3040
|
+
"kind": "machine-shape-definition",
|
|
3041
|
+
"shapeLabel": "Markdown Link",
|
|
3042
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3043
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3044
|
+
"declarationSource": {
|
|
3045
|
+
"line": 408
|
|
3046
|
+
},
|
|
3047
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3048
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3049
|
+
"startRule": "markdown-link",
|
|
3050
|
+
"grammarRules": [
|
|
3051
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
3052
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3053
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
3054
|
+
],
|
|
3055
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3056
|
+
"qualificationSupport": "available",
|
|
3057
|
+
"definitionQualification": "valid",
|
|
3058
|
+
"definitionFindings": [],
|
|
3059
|
+
"declarationStructure": {
|
|
3060
|
+
"value": "Markdown Link",
|
|
3061
|
+
"children": [
|
|
3062
|
+
{
|
|
3063
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
3064
|
+
"children": []
|
|
3065
|
+
},
|
|
3066
|
+
{
|
|
3067
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3068
|
+
"children": []
|
|
3069
|
+
},
|
|
3070
|
+
{
|
|
3071
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
3072
|
+
"children": []
|
|
3073
|
+
},
|
|
3074
|
+
{
|
|
3075
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3076
|
+
"children": []
|
|
3077
|
+
},
|
|
3078
|
+
{
|
|
3079
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3080
|
+
"children": []
|
|
3081
|
+
},
|
|
3082
|
+
{
|
|
3083
|
+
"value": "Start Rule: markdown-link",
|
|
3084
|
+
"children": []
|
|
3085
|
+
}
|
|
3086
|
+
]
|
|
3087
|
+
},
|
|
3088
|
+
"compiledGrammar": {
|
|
3089
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
3090
|
+
"qualification": "valid",
|
|
3091
|
+
"startRule": "markdown-link",
|
|
3092
|
+
"grammarRules": [
|
|
3093
|
+
{
|
|
3094
|
+
"name": "markdown-link",
|
|
3095
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
3096
|
+
"expression": {
|
|
3097
|
+
"type": "concatenation",
|
|
3098
|
+
"parts": [
|
|
3099
|
+
{
|
|
3100
|
+
"type": "literal",
|
|
3101
|
+
"value": "["
|
|
3102
|
+
},
|
|
3103
|
+
{
|
|
3104
|
+
"type": "reference",
|
|
3105
|
+
"name": "label"
|
|
3106
|
+
},
|
|
3107
|
+
{
|
|
3108
|
+
"type": "literal",
|
|
3109
|
+
"value": "]("
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
"type": "reference",
|
|
3113
|
+
"name": "target"
|
|
3114
|
+
},
|
|
3115
|
+
{
|
|
3116
|
+
"type": "literal",
|
|
3117
|
+
"value": ")"
|
|
3118
|
+
}
|
|
3119
|
+
]
|
|
3120
|
+
}
|
|
3121
|
+
},
|
|
3122
|
+
{
|
|
3123
|
+
"name": "label",
|
|
3124
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3125
|
+
"expression": {
|
|
3126
|
+
"type": "repeat",
|
|
3127
|
+
"quantifier": "+",
|
|
3128
|
+
"expression": {
|
|
3129
|
+
"type": "any-except",
|
|
3130
|
+
"exclusions": [
|
|
3131
|
+
"]",
|
|
3132
|
+
"\t",
|
|
3133
|
+
"\r",
|
|
3134
|
+
"\n"
|
|
3135
|
+
]
|
|
3136
|
+
}
|
|
3137
|
+
}
|
|
3138
|
+
},
|
|
3139
|
+
{
|
|
3140
|
+
"name": "target",
|
|
3141
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3142
|
+
"expression": {
|
|
3143
|
+
"type": "repeat",
|
|
3144
|
+
"quantifier": "+",
|
|
3145
|
+
"expression": {
|
|
3146
|
+
"type": "any-except",
|
|
3147
|
+
"exclusions": [
|
|
3148
|
+
")",
|
|
3149
|
+
" ",
|
|
3150
|
+
"\t",
|
|
3151
|
+
"\r",
|
|
3152
|
+
"\n"
|
|
3153
|
+
]
|
|
3154
|
+
}
|
|
3155
|
+
}
|
|
3156
|
+
}
|
|
3157
|
+
],
|
|
3158
|
+
"findings": []
|
|
3159
|
+
}
|
|
3160
|
+
},
|
|
3161
|
+
"resolvedDefinitionProvenance": {
|
|
3162
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3163
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3164
|
+
"declarationSource": {
|
|
3165
|
+
"line": 408
|
|
3166
|
+
}
|
|
3167
|
+
},
|
|
3168
|
+
"visibleDefinitions": [
|
|
3169
|
+
{
|
|
3170
|
+
"shapeLabel": "Markdown Link",
|
|
3171
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3172
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3173
|
+
"declarationSource": {
|
|
3174
|
+
"line": 408
|
|
3175
|
+
},
|
|
3176
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3177
|
+
"definitionQualification": "valid",
|
|
3178
|
+
"qualificationSupport": "available"
|
|
3179
|
+
}
|
|
3180
|
+
],
|
|
3181
|
+
"findings": []
|
|
3182
|
+
}
|
|
3183
|
+
]
|
|
3184
|
+
},
|
|
3185
|
+
{
|
|
3186
|
+
"kind": "field-domain",
|
|
3187
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
3188
|
+
"sourceGroup": "Exclusions And Dependencies",
|
|
3189
|
+
"field": "Kind",
|
|
3190
|
+
"allowedValues": [
|
|
3191
|
+
"excluded-scope",
|
|
3192
|
+
"unresolved-dependency"
|
|
3193
|
+
],
|
|
3194
|
+
"allowedShapes": [],
|
|
3195
|
+
"domainPolicy": "closed",
|
|
3196
|
+
"declarationLine": 331,
|
|
3197
|
+
"declarationQualification": "valid",
|
|
3198
|
+
"declarationFindings": [],
|
|
3199
|
+
"targetMode": "local",
|
|
3200
|
+
"targetOwnership": "source-local",
|
|
3201
|
+
"ownershipSourceSchemaIds": [
|
|
3202
|
+
"tiinex.handoff.v1"
|
|
3203
|
+
],
|
|
3204
|
+
"targetGroup": "Exclusions And Dependencies",
|
|
3205
|
+
"appliesToTarget": "",
|
|
3206
|
+
"authorityQualification": "valid",
|
|
3207
|
+
"authorityFindings": [],
|
|
3208
|
+
"allowedShapeAuthorities": []
|
|
3209
|
+
},
|
|
3210
|
+
{
|
|
3211
|
+
"kind": "field-domain",
|
|
3212
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
3213
|
+
"sourceGroup": "Exclusions And Dependencies",
|
|
3214
|
+
"field": "Reference",
|
|
3215
|
+
"allowedValues": [],
|
|
3216
|
+
"allowedShapes": [
|
|
3217
|
+
"Markdown Link"
|
|
3218
|
+
],
|
|
3219
|
+
"domainPolicy": "closed",
|
|
3220
|
+
"declarationLine": 336,
|
|
3221
|
+
"declarationQualification": "valid",
|
|
3222
|
+
"declarationFindings": [],
|
|
3223
|
+
"targetMode": "local",
|
|
3224
|
+
"targetOwnership": "source-local",
|
|
3225
|
+
"ownershipSourceSchemaIds": [
|
|
3226
|
+
"tiinex.handoff.v1"
|
|
3227
|
+
],
|
|
3228
|
+
"targetGroup": "Exclusions And Dependencies",
|
|
3229
|
+
"appliesToTarget": "",
|
|
3230
|
+
"authorityQualification": "valid",
|
|
3231
|
+
"authorityFindings": [],
|
|
3232
|
+
"allowedShapeAuthorities": [
|
|
3233
|
+
{
|
|
3234
|
+
"shapeLabel": "Markdown Link",
|
|
3235
|
+
"qualification": "evaluable",
|
|
3236
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
3237
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3238
|
+
"visibleSchemaIds": [
|
|
3239
|
+
"tiinex.root.v1",
|
|
3240
|
+
"tiinex.handoff.v1"
|
|
3241
|
+
],
|
|
3242
|
+
"definition": {
|
|
3243
|
+
"kind": "machine-shape-definition",
|
|
3244
|
+
"shapeLabel": "Markdown Link",
|
|
3245
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3246
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3247
|
+
"declarationSource": {
|
|
3248
|
+
"line": 408
|
|
3249
|
+
},
|
|
3250
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3251
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3252
|
+
"startRule": "markdown-link",
|
|
3253
|
+
"grammarRules": [
|
|
3254
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
3255
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3256
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
3257
|
+
],
|
|
3258
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3259
|
+
"qualificationSupport": "available",
|
|
3260
|
+
"definitionQualification": "valid",
|
|
3261
|
+
"definitionFindings": [],
|
|
3262
|
+
"declarationStructure": {
|
|
3263
|
+
"value": "Markdown Link",
|
|
3264
|
+
"children": [
|
|
3265
|
+
{
|
|
3266
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
3267
|
+
"children": []
|
|
3268
|
+
},
|
|
3269
|
+
{
|
|
3270
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3271
|
+
"children": []
|
|
3272
|
+
},
|
|
3273
|
+
{
|
|
3274
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
3275
|
+
"children": []
|
|
3276
|
+
},
|
|
3277
|
+
{
|
|
3278
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3279
|
+
"children": []
|
|
3280
|
+
},
|
|
3281
|
+
{
|
|
3282
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3283
|
+
"children": []
|
|
3284
|
+
},
|
|
3285
|
+
{
|
|
3286
|
+
"value": "Start Rule: markdown-link",
|
|
3287
|
+
"children": []
|
|
3288
|
+
}
|
|
3289
|
+
]
|
|
3290
|
+
},
|
|
3291
|
+
"compiledGrammar": {
|
|
3292
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
3293
|
+
"qualification": "valid",
|
|
3294
|
+
"startRule": "markdown-link",
|
|
3295
|
+
"grammarRules": [
|
|
3296
|
+
{
|
|
3297
|
+
"name": "markdown-link",
|
|
3298
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
3299
|
+
"expression": {
|
|
3300
|
+
"type": "concatenation",
|
|
3301
|
+
"parts": [
|
|
3302
|
+
{
|
|
3303
|
+
"type": "literal",
|
|
3304
|
+
"value": "["
|
|
3305
|
+
},
|
|
3306
|
+
{
|
|
3307
|
+
"type": "reference",
|
|
3308
|
+
"name": "label"
|
|
3309
|
+
},
|
|
3310
|
+
{
|
|
3311
|
+
"type": "literal",
|
|
3312
|
+
"value": "]("
|
|
3313
|
+
},
|
|
3314
|
+
{
|
|
3315
|
+
"type": "reference",
|
|
3316
|
+
"name": "target"
|
|
3317
|
+
},
|
|
3318
|
+
{
|
|
3319
|
+
"type": "literal",
|
|
3320
|
+
"value": ")"
|
|
3321
|
+
}
|
|
3322
|
+
]
|
|
3323
|
+
}
|
|
3324
|
+
},
|
|
3325
|
+
{
|
|
3326
|
+
"name": "label",
|
|
3327
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3328
|
+
"expression": {
|
|
3329
|
+
"type": "repeat",
|
|
3330
|
+
"quantifier": "+",
|
|
3331
|
+
"expression": {
|
|
3332
|
+
"type": "any-except",
|
|
3333
|
+
"exclusions": [
|
|
3334
|
+
"]",
|
|
3335
|
+
"\t",
|
|
3336
|
+
"\r",
|
|
3337
|
+
"\n"
|
|
3338
|
+
]
|
|
3339
|
+
}
|
|
3340
|
+
}
|
|
3341
|
+
},
|
|
3342
|
+
{
|
|
3343
|
+
"name": "target",
|
|
3344
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3345
|
+
"expression": {
|
|
3346
|
+
"type": "repeat",
|
|
3347
|
+
"quantifier": "+",
|
|
3348
|
+
"expression": {
|
|
3349
|
+
"type": "any-except",
|
|
3350
|
+
"exclusions": [
|
|
3351
|
+
")",
|
|
3352
|
+
" ",
|
|
3353
|
+
"\t",
|
|
3354
|
+
"\r",
|
|
3355
|
+
"\n"
|
|
3356
|
+
]
|
|
3357
|
+
}
|
|
3358
|
+
}
|
|
3359
|
+
}
|
|
3360
|
+
],
|
|
3361
|
+
"findings": []
|
|
3362
|
+
}
|
|
3363
|
+
},
|
|
3364
|
+
"resolvedDefinitionProvenance": {
|
|
3365
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3366
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3367
|
+
"declarationSource": {
|
|
3368
|
+
"line": 408
|
|
3369
|
+
}
|
|
3370
|
+
},
|
|
3371
|
+
"visibleDefinitions": [
|
|
3372
|
+
{
|
|
3373
|
+
"shapeLabel": "Markdown Link",
|
|
3374
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3375
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3376
|
+
"declarationSource": {
|
|
3377
|
+
"line": 408
|
|
3378
|
+
},
|
|
3379
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3380
|
+
"definitionQualification": "valid",
|
|
3381
|
+
"qualificationSupport": "available"
|
|
3382
|
+
}
|
|
3383
|
+
],
|
|
3384
|
+
"findings": []
|
|
3385
|
+
}
|
|
3386
|
+
]
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
"kind": "field-domain",
|
|
3390
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
3391
|
+
"sourceGroup": "Completion Expectation",
|
|
3392
|
+
"field": "Signal Kind",
|
|
3393
|
+
"allowedValues": [
|
|
3394
|
+
"acknowledgement",
|
|
3395
|
+
"result",
|
|
3396
|
+
"disposition",
|
|
3397
|
+
"return",
|
|
3398
|
+
"none",
|
|
3399
|
+
"custom",
|
|
3400
|
+
"unknown"
|
|
3401
|
+
],
|
|
3402
|
+
"allowedShapes": [],
|
|
3403
|
+
"domainPolicy": "closed",
|
|
3404
|
+
"declarationLine": 366,
|
|
3405
|
+
"declarationQualification": "valid",
|
|
3406
|
+
"declarationFindings": [],
|
|
3407
|
+
"targetMode": "local",
|
|
3408
|
+
"targetOwnership": "source-local",
|
|
3409
|
+
"ownershipSourceSchemaIds": [
|
|
3410
|
+
"tiinex.handoff.v1"
|
|
3411
|
+
],
|
|
3412
|
+
"targetGroup": "Completion Expectation",
|
|
3413
|
+
"appliesToTarget": "",
|
|
3414
|
+
"authorityQualification": "valid",
|
|
3415
|
+
"authorityFindings": [],
|
|
3416
|
+
"allowedShapeAuthorities": []
|
|
3417
|
+
},
|
|
3418
|
+
{
|
|
3419
|
+
"kind": "field-domain",
|
|
3420
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
3421
|
+
"sourceGroup": "Completion Expectation",
|
|
3422
|
+
"field": "Return To Reference",
|
|
3423
|
+
"allowedValues": [],
|
|
3424
|
+
"allowedShapes": [
|
|
3425
|
+
"Markdown Link"
|
|
3426
|
+
],
|
|
3427
|
+
"domainPolicy": "closed",
|
|
3428
|
+
"declarationLine": 376,
|
|
3429
|
+
"declarationQualification": "valid",
|
|
3430
|
+
"declarationFindings": [],
|
|
3431
|
+
"targetMode": "local",
|
|
3432
|
+
"targetOwnership": "source-local",
|
|
3433
|
+
"ownershipSourceSchemaIds": [
|
|
3434
|
+
"tiinex.handoff.v1"
|
|
3435
|
+
],
|
|
3436
|
+
"targetGroup": "Completion Expectation",
|
|
3437
|
+
"appliesToTarget": "",
|
|
3438
|
+
"authorityQualification": "valid",
|
|
3439
|
+
"authorityFindings": [],
|
|
3440
|
+
"allowedShapeAuthorities": [
|
|
3441
|
+
{
|
|
3442
|
+
"shapeLabel": "Markdown Link",
|
|
3443
|
+
"qualification": "evaluable",
|
|
3444
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
3445
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3446
|
+
"visibleSchemaIds": [
|
|
3447
|
+
"tiinex.root.v1",
|
|
3448
|
+
"tiinex.handoff.v1"
|
|
3449
|
+
],
|
|
3450
|
+
"definition": {
|
|
3451
|
+
"kind": "machine-shape-definition",
|
|
3452
|
+
"shapeLabel": "Markdown Link",
|
|
3453
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3454
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3455
|
+
"declarationSource": {
|
|
3456
|
+
"line": 408
|
|
3457
|
+
},
|
|
3458
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3459
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3460
|
+
"startRule": "markdown-link",
|
|
3461
|
+
"grammarRules": [
|
|
3462
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
3463
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3464
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
3465
|
+
],
|
|
3466
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3467
|
+
"qualificationSupport": "available",
|
|
3468
|
+
"definitionQualification": "valid",
|
|
3469
|
+
"definitionFindings": [],
|
|
3470
|
+
"declarationStructure": {
|
|
3471
|
+
"value": "Markdown Link",
|
|
3472
|
+
"children": [
|
|
3473
|
+
{
|
|
3474
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
3475
|
+
"children": []
|
|
3476
|
+
},
|
|
3477
|
+
{
|
|
3478
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3479
|
+
"children": []
|
|
3480
|
+
},
|
|
3481
|
+
{
|
|
3482
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
3483
|
+
"children": []
|
|
3484
|
+
},
|
|
3485
|
+
{
|
|
3486
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3487
|
+
"children": []
|
|
3488
|
+
},
|
|
3489
|
+
{
|
|
3490
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3491
|
+
"children": []
|
|
3492
|
+
},
|
|
3493
|
+
{
|
|
3494
|
+
"value": "Start Rule: markdown-link",
|
|
3495
|
+
"children": []
|
|
3496
|
+
}
|
|
3497
|
+
]
|
|
3498
|
+
},
|
|
3499
|
+
"compiledGrammar": {
|
|
3500
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
3501
|
+
"qualification": "valid",
|
|
3502
|
+
"startRule": "markdown-link",
|
|
3503
|
+
"grammarRules": [
|
|
3504
|
+
{
|
|
3505
|
+
"name": "markdown-link",
|
|
3506
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
3507
|
+
"expression": {
|
|
3508
|
+
"type": "concatenation",
|
|
3509
|
+
"parts": [
|
|
3510
|
+
{
|
|
3511
|
+
"type": "literal",
|
|
3512
|
+
"value": "["
|
|
3513
|
+
},
|
|
3514
|
+
{
|
|
3515
|
+
"type": "reference",
|
|
3516
|
+
"name": "label"
|
|
3517
|
+
},
|
|
3518
|
+
{
|
|
3519
|
+
"type": "literal",
|
|
3520
|
+
"value": "]("
|
|
3521
|
+
},
|
|
3522
|
+
{
|
|
3523
|
+
"type": "reference",
|
|
3524
|
+
"name": "target"
|
|
3525
|
+
},
|
|
3526
|
+
{
|
|
3527
|
+
"type": "literal",
|
|
3528
|
+
"value": ")"
|
|
3529
|
+
}
|
|
3530
|
+
]
|
|
3531
|
+
}
|
|
3532
|
+
},
|
|
3533
|
+
{
|
|
3534
|
+
"name": "label",
|
|
3535
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3536
|
+
"expression": {
|
|
3537
|
+
"type": "repeat",
|
|
3538
|
+
"quantifier": "+",
|
|
3539
|
+
"expression": {
|
|
3540
|
+
"type": "any-except",
|
|
3541
|
+
"exclusions": [
|
|
3542
|
+
"]",
|
|
3543
|
+
"\t",
|
|
3544
|
+
"\r",
|
|
3545
|
+
"\n"
|
|
3546
|
+
]
|
|
3547
|
+
}
|
|
3548
|
+
}
|
|
3549
|
+
},
|
|
3550
|
+
{
|
|
3551
|
+
"name": "target",
|
|
3552
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3553
|
+
"expression": {
|
|
3554
|
+
"type": "repeat",
|
|
3555
|
+
"quantifier": "+",
|
|
3556
|
+
"expression": {
|
|
3557
|
+
"type": "any-except",
|
|
3558
|
+
"exclusions": [
|
|
3559
|
+
")",
|
|
3560
|
+
" ",
|
|
3561
|
+
"\t",
|
|
3562
|
+
"\r",
|
|
3563
|
+
"\n"
|
|
3564
|
+
]
|
|
3565
|
+
}
|
|
3566
|
+
}
|
|
3567
|
+
}
|
|
3568
|
+
],
|
|
3569
|
+
"findings": []
|
|
3570
|
+
}
|
|
3571
|
+
},
|
|
3572
|
+
"resolvedDefinitionProvenance": {
|
|
3573
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3574
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3575
|
+
"declarationSource": {
|
|
3576
|
+
"line": 408
|
|
3577
|
+
}
|
|
3578
|
+
},
|
|
3579
|
+
"visibleDefinitions": [
|
|
3580
|
+
{
|
|
3581
|
+
"shapeLabel": "Markdown Link",
|
|
3582
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3583
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3584
|
+
"declarationSource": {
|
|
3585
|
+
"line": 408
|
|
3586
|
+
},
|
|
3587
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3588
|
+
"definitionQualification": "valid",
|
|
3589
|
+
"qualificationSupport": "available"
|
|
3590
|
+
}
|
|
3591
|
+
],
|
|
3592
|
+
"findings": []
|
|
3593
|
+
}
|
|
3594
|
+
]
|
|
3595
|
+
},
|
|
3596
|
+
{
|
|
3597
|
+
"kind": "field-domain",
|
|
3598
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
3599
|
+
"sourceGroup": "Completion Expectation",
|
|
3600
|
+
"field": "Expected Result Reference",
|
|
3601
|
+
"allowedValues": [],
|
|
3602
|
+
"allowedShapes": [
|
|
3603
|
+
"Markdown Link"
|
|
3604
|
+
],
|
|
3605
|
+
"domainPolicy": "closed",
|
|
3606
|
+
"declarationLine": 380,
|
|
3607
|
+
"declarationQualification": "valid",
|
|
3608
|
+
"declarationFindings": [],
|
|
3609
|
+
"targetMode": "local",
|
|
3610
|
+
"targetOwnership": "source-local",
|
|
3611
|
+
"ownershipSourceSchemaIds": [
|
|
3612
|
+
"tiinex.handoff.v1"
|
|
3613
|
+
],
|
|
3614
|
+
"targetGroup": "Completion Expectation",
|
|
3615
|
+
"appliesToTarget": "",
|
|
3616
|
+
"authorityQualification": "valid",
|
|
3617
|
+
"authorityFindings": [],
|
|
3618
|
+
"allowedShapeAuthorities": [
|
|
3619
|
+
{
|
|
3620
|
+
"shapeLabel": "Markdown Link",
|
|
3621
|
+
"qualification": "evaluable",
|
|
3622
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
3623
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3624
|
+
"visibleSchemaIds": [
|
|
3625
|
+
"tiinex.root.v1",
|
|
3626
|
+
"tiinex.handoff.v1"
|
|
3627
|
+
],
|
|
3628
|
+
"definition": {
|
|
3629
|
+
"kind": "machine-shape-definition",
|
|
3630
|
+
"shapeLabel": "Markdown Link",
|
|
3631
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3632
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3633
|
+
"declarationSource": {
|
|
3634
|
+
"line": 408
|
|
3635
|
+
},
|
|
3636
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3637
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3638
|
+
"startRule": "markdown-link",
|
|
3639
|
+
"grammarRules": [
|
|
3640
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
3641
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3642
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
3643
|
+
],
|
|
3644
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3645
|
+
"qualificationSupport": "available",
|
|
3646
|
+
"definitionQualification": "valid",
|
|
3647
|
+
"definitionFindings": [],
|
|
3648
|
+
"declarationStructure": {
|
|
3649
|
+
"value": "Markdown Link",
|
|
3650
|
+
"children": [
|
|
3651
|
+
{
|
|
3652
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
3653
|
+
"children": []
|
|
3654
|
+
},
|
|
3655
|
+
{
|
|
3656
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3657
|
+
"children": []
|
|
3658
|
+
},
|
|
3659
|
+
{
|
|
3660
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
3661
|
+
"children": []
|
|
3662
|
+
},
|
|
3663
|
+
{
|
|
3664
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3665
|
+
"children": []
|
|
3666
|
+
},
|
|
3667
|
+
{
|
|
3668
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3669
|
+
"children": []
|
|
3670
|
+
},
|
|
3671
|
+
{
|
|
3672
|
+
"value": "Start Rule: markdown-link",
|
|
3673
|
+
"children": []
|
|
3674
|
+
}
|
|
3675
|
+
]
|
|
3676
|
+
},
|
|
3677
|
+
"compiledGrammar": {
|
|
3678
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
3679
|
+
"qualification": "valid",
|
|
3680
|
+
"startRule": "markdown-link",
|
|
3681
|
+
"grammarRules": [
|
|
3682
|
+
{
|
|
3683
|
+
"name": "markdown-link",
|
|
3684
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
3685
|
+
"expression": {
|
|
3686
|
+
"type": "concatenation",
|
|
3687
|
+
"parts": [
|
|
3688
|
+
{
|
|
3689
|
+
"type": "literal",
|
|
3690
|
+
"value": "["
|
|
3691
|
+
},
|
|
3692
|
+
{
|
|
3693
|
+
"type": "reference",
|
|
3694
|
+
"name": "label"
|
|
3695
|
+
},
|
|
3696
|
+
{
|
|
3697
|
+
"type": "literal",
|
|
3698
|
+
"value": "]("
|
|
3699
|
+
},
|
|
3700
|
+
{
|
|
3701
|
+
"type": "reference",
|
|
3702
|
+
"name": "target"
|
|
3703
|
+
},
|
|
3704
|
+
{
|
|
3705
|
+
"type": "literal",
|
|
3706
|
+
"value": ")"
|
|
3707
|
+
}
|
|
3708
|
+
]
|
|
3709
|
+
}
|
|
3710
|
+
},
|
|
3711
|
+
{
|
|
3712
|
+
"name": "label",
|
|
3713
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3714
|
+
"expression": {
|
|
3715
|
+
"type": "repeat",
|
|
3716
|
+
"quantifier": "+",
|
|
3717
|
+
"expression": {
|
|
3718
|
+
"type": "any-except",
|
|
3719
|
+
"exclusions": [
|
|
3720
|
+
"]",
|
|
3721
|
+
"\t",
|
|
3722
|
+
"\r",
|
|
3723
|
+
"\n"
|
|
3724
|
+
]
|
|
3725
|
+
}
|
|
3726
|
+
}
|
|
3727
|
+
},
|
|
3728
|
+
{
|
|
3729
|
+
"name": "target",
|
|
3730
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3731
|
+
"expression": {
|
|
3732
|
+
"type": "repeat",
|
|
3733
|
+
"quantifier": "+",
|
|
3734
|
+
"expression": {
|
|
3735
|
+
"type": "any-except",
|
|
3736
|
+
"exclusions": [
|
|
3737
|
+
")",
|
|
3738
|
+
" ",
|
|
3739
|
+
"\t",
|
|
3740
|
+
"\r",
|
|
3741
|
+
"\n"
|
|
3742
|
+
]
|
|
3743
|
+
}
|
|
3744
|
+
}
|
|
3745
|
+
}
|
|
3746
|
+
],
|
|
3747
|
+
"findings": []
|
|
3748
|
+
}
|
|
3749
|
+
},
|
|
3750
|
+
"resolvedDefinitionProvenance": {
|
|
3751
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3752
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3753
|
+
"declarationSource": {
|
|
3754
|
+
"line": 408
|
|
3755
|
+
}
|
|
3756
|
+
},
|
|
3757
|
+
"visibleDefinitions": [
|
|
3758
|
+
{
|
|
3759
|
+
"shapeLabel": "Markdown Link",
|
|
3760
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3761
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3762
|
+
"declarationSource": {
|
|
3763
|
+
"line": 408
|
|
3764
|
+
},
|
|
3765
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3766
|
+
"definitionQualification": "valid",
|
|
3767
|
+
"qualificationSupport": "available"
|
|
3768
|
+
}
|
|
3769
|
+
],
|
|
3770
|
+
"findings": []
|
|
3771
|
+
}
|
|
3772
|
+
]
|
|
3773
|
+
}
|
|
3774
|
+
],
|
|
3775
|
+
"machineShapes": {
|
|
3776
|
+
"schema": "tiinex.portable.machine-shape-authority.v1",
|
|
3777
|
+
"definitions": [
|
|
3778
|
+
{
|
|
3779
|
+
"kind": "machine-shape-definition",
|
|
3780
|
+
"shapeLabel": "Markdown Link",
|
|
3781
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3782
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3783
|
+
"declarationSource": {
|
|
3784
|
+
"line": 408
|
|
3785
|
+
},
|
|
3786
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3787
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3788
|
+
"startRule": "markdown-link",
|
|
3789
|
+
"grammarRules": [
|
|
3790
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
3791
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3792
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
3793
|
+
],
|
|
3794
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3795
|
+
"qualificationSupport": "available",
|
|
3796
|
+
"definitionQualification": "valid",
|
|
3797
|
+
"definitionFindings": [],
|
|
3798
|
+
"declarationStructure": {
|
|
3799
|
+
"value": "Markdown Link",
|
|
3800
|
+
"children": [
|
|
3801
|
+
{
|
|
3802
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
3803
|
+
"children": []
|
|
3804
|
+
},
|
|
3805
|
+
{
|
|
3806
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3807
|
+
"children": []
|
|
3808
|
+
},
|
|
3809
|
+
{
|
|
3810
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
3811
|
+
"children": []
|
|
3812
|
+
},
|
|
3813
|
+
{
|
|
3814
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3815
|
+
"children": []
|
|
3816
|
+
},
|
|
3817
|
+
{
|
|
3818
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3819
|
+
"children": []
|
|
3820
|
+
},
|
|
3821
|
+
{
|
|
3822
|
+
"value": "Start Rule: markdown-link",
|
|
3823
|
+
"children": []
|
|
3824
|
+
}
|
|
3825
|
+
]
|
|
3826
|
+
},
|
|
3827
|
+
"compiledGrammar": {
|
|
3828
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
3829
|
+
"qualification": "valid",
|
|
3830
|
+
"startRule": "markdown-link",
|
|
3831
|
+
"grammarRules": [
|
|
3832
|
+
{
|
|
3833
|
+
"name": "markdown-link",
|
|
3834
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
3835
|
+
"expression": {
|
|
3836
|
+
"type": "concatenation",
|
|
3837
|
+
"parts": [
|
|
3838
|
+
{
|
|
3839
|
+
"type": "literal",
|
|
3840
|
+
"value": "["
|
|
3841
|
+
},
|
|
3842
|
+
{
|
|
3843
|
+
"type": "reference",
|
|
3844
|
+
"name": "label"
|
|
3845
|
+
},
|
|
3846
|
+
{
|
|
3847
|
+
"type": "literal",
|
|
3848
|
+
"value": "]("
|
|
3849
|
+
},
|
|
3850
|
+
{
|
|
3851
|
+
"type": "reference",
|
|
3852
|
+
"name": "target"
|
|
3853
|
+
},
|
|
3854
|
+
{
|
|
3855
|
+
"type": "literal",
|
|
3856
|
+
"value": ")"
|
|
3857
|
+
}
|
|
3858
|
+
]
|
|
3859
|
+
}
|
|
3860
|
+
},
|
|
3861
|
+
{
|
|
3862
|
+
"name": "label",
|
|
3863
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3864
|
+
"expression": {
|
|
3865
|
+
"type": "repeat",
|
|
3866
|
+
"quantifier": "+",
|
|
3867
|
+
"expression": {
|
|
3868
|
+
"type": "any-except",
|
|
3869
|
+
"exclusions": [
|
|
3870
|
+
"]",
|
|
3871
|
+
"\t",
|
|
3872
|
+
"\r",
|
|
3873
|
+
"\n"
|
|
3874
|
+
]
|
|
3875
|
+
}
|
|
3876
|
+
}
|
|
3877
|
+
},
|
|
3878
|
+
{
|
|
3879
|
+
"name": "target",
|
|
3880
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3881
|
+
"expression": {
|
|
3882
|
+
"type": "repeat",
|
|
3883
|
+
"quantifier": "+",
|
|
3884
|
+
"expression": {
|
|
3885
|
+
"type": "any-except",
|
|
3886
|
+
"exclusions": [
|
|
3887
|
+
")",
|
|
3888
|
+
" ",
|
|
3889
|
+
"\t",
|
|
3890
|
+
"\r",
|
|
3891
|
+
"\n"
|
|
3892
|
+
]
|
|
3893
|
+
}
|
|
3894
|
+
}
|
|
3895
|
+
}
|
|
3896
|
+
],
|
|
3897
|
+
"findings": []
|
|
3898
|
+
}
|
|
3899
|
+
}
|
|
3900
|
+
],
|
|
3901
|
+
"active": [
|
|
3902
|
+
{
|
|
3903
|
+
"shapeLabel": "Markdown Link",
|
|
3904
|
+
"qualification": "evaluable",
|
|
3905
|
+
"useSourceSchemaId": "tiinex.handoff.v1",
|
|
3906
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3907
|
+
"visibleSchemaIds": [
|
|
3908
|
+
"tiinex.root.v1",
|
|
3909
|
+
"tiinex.handoff.v1"
|
|
3910
|
+
],
|
|
3911
|
+
"definition": {
|
|
3912
|
+
"kind": "machine-shape-definition",
|
|
3913
|
+
"shapeLabel": "Markdown Link",
|
|
3914
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
3915
|
+
"sourceGroup": "Machine Shape Authority",
|
|
3916
|
+
"declarationSource": {
|
|
3917
|
+
"line": 408
|
|
3918
|
+
},
|
|
3919
|
+
"visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
|
|
3920
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
3921
|
+
"startRule": "markdown-link",
|
|
3922
|
+
"grammarRules": [
|
|
3923
|
+
" markdown-link = \"[\" label \"](\" target \")\"",
|
|
3924
|
+
" label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3925
|
+
" target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
|
|
3926
|
+
],
|
|
3927
|
+
"humanMeaning": "Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3928
|
+
"qualificationSupport": "available",
|
|
3929
|
+
"definitionQualification": "valid",
|
|
3930
|
+
"definitionFindings": [],
|
|
3931
|
+
"declarationStructure": {
|
|
3932
|
+
"value": "Markdown Link",
|
|
3933
|
+
"children": [
|
|
3934
|
+
{
|
|
3935
|
+
"value": "Grammar Profile: tiinex.lexical.shape.v1",
|
|
3936
|
+
"children": []
|
|
3937
|
+
},
|
|
3938
|
+
{
|
|
3939
|
+
"value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3940
|
+
"children": []
|
|
3941
|
+
},
|
|
3942
|
+
{
|
|
3943
|
+
"value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
|
|
3944
|
+
"children": []
|
|
3945
|
+
},
|
|
3946
|
+
{
|
|
3947
|
+
"value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
3948
|
+
"children": []
|
|
3949
|
+
},
|
|
3950
|
+
{
|
|
3951
|
+
"value": "Human Meaning: Exactly one complete inline Tiinex Markdown link with a non-empty single-line label and non-empty target. ASCII space is allowed in the label; ASCII space, tab, CR, and LF are forbidden in the target.",
|
|
3952
|
+
"children": []
|
|
3953
|
+
},
|
|
3954
|
+
{
|
|
3955
|
+
"value": "Start Rule: markdown-link",
|
|
3956
|
+
"children": []
|
|
3957
|
+
}
|
|
3958
|
+
]
|
|
3959
|
+
},
|
|
3960
|
+
"compiledGrammar": {
|
|
3961
|
+
"profile": "tiinex.lexical.shape.v1",
|
|
3962
|
+
"qualification": "valid",
|
|
3963
|
+
"startRule": "markdown-link",
|
|
3964
|
+
"grammarRules": [
|
|
3965
|
+
{
|
|
3966
|
+
"name": "markdown-link",
|
|
3967
|
+
"source": " markdown-link = \"[\" label \"](\" target \")\"",
|
|
3968
|
+
"expression": {
|
|
3969
|
+
"type": "concatenation",
|
|
3970
|
+
"parts": [
|
|
3971
|
+
{
|
|
3972
|
+
"type": "literal",
|
|
3973
|
+
"value": "["
|
|
3974
|
+
},
|
|
3975
|
+
{
|
|
3976
|
+
"type": "reference",
|
|
3977
|
+
"name": "label"
|
|
3978
|
+
},
|
|
3979
|
+
{
|
|
3980
|
+
"type": "literal",
|
|
3981
|
+
"value": "]("
|
|
3982
|
+
},
|
|
3983
|
+
{
|
|
3984
|
+
"type": "reference",
|
|
3985
|
+
"name": "target"
|
|
3986
|
+
},
|
|
3987
|
+
{
|
|
3988
|
+
"type": "literal",
|
|
3989
|
+
"value": ")"
|
|
3990
|
+
}
|
|
3991
|
+
]
|
|
3992
|
+
}
|
|
3993
|
+
},
|
|
3994
|
+
{
|
|
3995
|
+
"name": "label",
|
|
3996
|
+
"source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
|
|
3997
|
+
"expression": {
|
|
3998
|
+
"type": "repeat",
|
|
3999
|
+
"quantifier": "+",
|
|
4000
|
+
"expression": {
|
|
4001
|
+
"type": "any-except",
|
|
4002
|
+
"exclusions": [
|
|
4003
|
+
"]",
|
|
4004
|
+
"\t",
|
|
4005
|
+
"\r",
|
|
4006
|
+
"\n"
|
|
4007
|
+
]
|
|
4008
|
+
}
|
|
4009
|
+
}
|
|
4010
|
+
},
|
|
4011
|
+
{
|
|
4012
|
+
"name": "target",
|
|
4013
|
+
"source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
|
|
4014
|
+
"expression": {
|
|
4015
|
+
"type": "repeat",
|
|
4016
|
+
"quantifier": "+",
|
|
4017
|
+
"expression": {
|
|
4018
|
+
"type": "any-except",
|
|
4019
|
+
"exclusions": [
|
|
4020
|
+
")",
|
|
4021
|
+
" ",
|
|
4022
|
+
"\t",
|
|
4023
|
+
"\r",
|
|
4024
|
+
"\n"
|
|
4025
|
+
]
|
|
4026
|
+
}
|
|
4027
|
+
}
|
|
4028
|
+
}
|
|
4029
|
+
],
|
|
4030
|
+
"findings": []
|
|
4031
|
+
}
|
|
4032
|
+
},
|
|
4033
|
+
"resolvedDefinitionProvenance": {
|
|
4034
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
4035
|
+
"sourceGroup": "Machine Shape Authority",
|
|
4036
|
+
"declarationSource": {
|
|
4037
|
+
"line": 408
|
|
4038
|
+
}
|
|
4039
|
+
},
|
|
4040
|
+
"visibleDefinitions": [
|
|
4041
|
+
{
|
|
4042
|
+
"shapeLabel": "Markdown Link",
|
|
4043
|
+
"sourceSchemaId": "tiinex.root.v1",
|
|
4044
|
+
"sourceGroup": "Machine Shape Authority",
|
|
4045
|
+
"declarationSource": {
|
|
4046
|
+
"line": 408
|
|
4047
|
+
},
|
|
4048
|
+
"grammarProfile": "tiinex.lexical.shape.v1",
|
|
4049
|
+
"definitionQualification": "valid",
|
|
4050
|
+
"qualificationSupport": "available"
|
|
4051
|
+
}
|
|
4052
|
+
],
|
|
4053
|
+
"findings": []
|
|
4054
|
+
}
|
|
4055
|
+
],
|
|
4056
|
+
"findings": []
|
|
4057
|
+
},
|
|
4058
|
+
"lineageAuthority": [
|
|
4059
|
+
{
|
|
4060
|
+
"schemaId": "tiinex.root.v1",
|
|
4061
|
+
"source": {
|
|
4062
|
+
"repository": "Tiinex/docs",
|
|
4063
|
+
"commit": "3988951208eb9a8926e84ab42625d4b42fa00c2d",
|
|
4064
|
+
"path": ".topics/.schemas/tiinex.root.v1.schema.md",
|
|
4065
|
+
"publicationState": "accepted-local-unpublished",
|
|
4066
|
+
"snapshotCompleteness": "exact-axiom-canonical-unpublished-bounded-workspace-contract"
|
|
4067
|
+
},
|
|
4068
|
+
"parentSchemaId": "",
|
|
4069
|
+
"parentSourceCandidates": []
|
|
4070
|
+
},
|
|
4071
|
+
{
|
|
4072
|
+
"schemaId": "tiinex.handoff.v1",
|
|
4073
|
+
"source": {
|
|
4074
|
+
"repository": "Tiinex/docs",
|
|
4075
|
+
"commit": "3988951208eb9a8926e84ab42625d4b42fa00c2d",
|
|
4076
|
+
"path": ".topics/.schemas/coordination/handoff/tiinex.handoff.v1.schema.md",
|
|
4077
|
+
"publicationState": "",
|
|
4078
|
+
"snapshotCompleteness": "exact-canonical-docs-snapshot"
|
|
4079
|
+
},
|
|
4080
|
+
"parentSchemaId": "tiinex.root.v1",
|
|
4081
|
+
"parentSourceCandidates": [
|
|
4082
|
+
{
|
|
4083
|
+
"provider": "github",
|
|
4084
|
+
"repository": "Tiinex/docs",
|
|
4085
|
+
"commit": "053d46ce082d4ec261b82abc44ecca403d61e240",
|
|
4086
|
+
"path": ".topics/.schemas/tiinex.root.v1.schema.md"
|
|
4087
|
+
}
|
|
4088
|
+
]
|
|
4089
|
+
}
|
|
4090
|
+
]
|
|
4091
|
+
},
|
|
4092
|
+
"creation": {
|
|
4093
|
+
"declared": true,
|
|
4094
|
+
"groupNames": [
|
|
4095
|
+
"Creation Scope",
|
|
4096
|
+
"Required Inputs",
|
|
4097
|
+
"Generation Rules"
|
|
4098
|
+
],
|
|
4099
|
+
"requiredInputs": [
|
|
4100
|
+
"Purpose",
|
|
4101
|
+
"From",
|
|
4102
|
+
"From Kind",
|
|
4103
|
+
"To",
|
|
4104
|
+
"To Kind",
|
|
4105
|
+
"Transfers",
|
|
4106
|
+
"Required Context",
|
|
4107
|
+
"Reference Context",
|
|
4108
|
+
"Retained Responsibilities",
|
|
4109
|
+
"Exclusions And Dependencies",
|
|
4110
|
+
"Completion Expectation",
|
|
4111
|
+
"Interpretation Limits"
|
|
4112
|
+
],
|
|
4113
|
+
"optionalInputs": [],
|
|
4114
|
+
"requiredSections": [],
|
|
4115
|
+
"toolingConfigurationFields": [],
|
|
4116
|
+
"inputBindings": [
|
|
4117
|
+
{
|
|
4118
|
+
"input": "Purpose",
|
|
4119
|
+
"kind": "ordinary-field",
|
|
4120
|
+
"section": "Handoff Parties",
|
|
4121
|
+
"group": "Handoff Parties",
|
|
4122
|
+
"field": "Purpose",
|
|
4123
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
4124
|
+
"requirement": "required"
|
|
4125
|
+
},
|
|
4126
|
+
{
|
|
4127
|
+
"input": "From",
|
|
4128
|
+
"kind": "ordinary-field",
|
|
4129
|
+
"section": "Handoff Parties",
|
|
4130
|
+
"group": "Handoff Parties",
|
|
4131
|
+
"field": "From",
|
|
4132
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
4133
|
+
"requirement": "required"
|
|
4134
|
+
},
|
|
4135
|
+
{
|
|
4136
|
+
"input": "From Kind",
|
|
4137
|
+
"kind": "ordinary-field",
|
|
4138
|
+
"section": "Handoff Parties",
|
|
4139
|
+
"group": "Handoff Parties",
|
|
4140
|
+
"field": "From Kind",
|
|
4141
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
4142
|
+
"requirement": "required"
|
|
4143
|
+
},
|
|
4144
|
+
{
|
|
4145
|
+
"input": "To",
|
|
4146
|
+
"kind": "ordinary-field",
|
|
4147
|
+
"section": "Handoff Parties",
|
|
4148
|
+
"group": "Handoff Parties",
|
|
4149
|
+
"field": "To",
|
|
4150
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
4151
|
+
"requirement": "required"
|
|
4152
|
+
},
|
|
4153
|
+
{
|
|
4154
|
+
"input": "To Kind",
|
|
4155
|
+
"kind": "ordinary-field",
|
|
4156
|
+
"section": "Handoff Parties",
|
|
4157
|
+
"group": "Handoff Parties",
|
|
4158
|
+
"field": "To Kind",
|
|
4159
|
+
"sourceSchemaId": "tiinex.handoff.v1",
|
|
4160
|
+
"requirement": "required"
|
|
4161
|
+
},
|
|
4162
|
+
{
|
|
4163
|
+
"input": "Transfers",
|
|
4164
|
+
"kind": "named-declaration-section",
|
|
4165
|
+
"section": "Transfers",
|
|
4166
|
+
"group": "Transfers",
|
|
4167
|
+
"requiredFields": [
|
|
4168
|
+
"Transfer Kind",
|
|
4169
|
+
"Description"
|
|
4170
|
+
],
|
|
4171
|
+
"optionalFields": [
|
|
4172
|
+
"Controlling Artifact",
|
|
4173
|
+
"Boundary",
|
|
4174
|
+
"Notes"
|
|
4175
|
+
],
|
|
4176
|
+
"allowLiteralNone": false
|
|
4177
|
+
},
|
|
4178
|
+
{
|
|
4179
|
+
"input": "Required Context",
|
|
4180
|
+
"kind": "named-declaration-section",
|
|
4181
|
+
"section": "Required Context",
|
|
4182
|
+
"group": "Required Context",
|
|
4183
|
+
"requiredFields": [
|
|
4184
|
+
"Material",
|
|
4185
|
+
"Purpose",
|
|
4186
|
+
"Availability"
|
|
4187
|
+
],
|
|
4188
|
+
"optionalFields": [
|
|
4189
|
+
"Material Reference",
|
|
4190
|
+
"Notes"
|
|
4191
|
+
],
|
|
4192
|
+
"allowLiteralNone": true
|
|
4193
|
+
},
|
|
4194
|
+
{
|
|
4195
|
+
"input": "Reference Context",
|
|
4196
|
+
"kind": "named-declaration-section",
|
|
4197
|
+
"section": "Reference Context",
|
|
4198
|
+
"group": "Reference Context",
|
|
4199
|
+
"requiredFields": [
|
|
4200
|
+
"Material",
|
|
4201
|
+
"Purpose",
|
|
4202
|
+
"Availability"
|
|
4203
|
+
],
|
|
4204
|
+
"optionalFields": [
|
|
4205
|
+
"Material Reference",
|
|
4206
|
+
"Notes"
|
|
4207
|
+
],
|
|
4208
|
+
"allowLiteralNone": true
|
|
4209
|
+
},
|
|
4210
|
+
{
|
|
4211
|
+
"input": "Retained Responsibilities",
|
|
4212
|
+
"kind": "named-declaration-section",
|
|
4213
|
+
"section": "Retained Responsibilities",
|
|
4214
|
+
"group": "Retained Responsibilities",
|
|
4215
|
+
"requiredFields": [
|
|
4216
|
+
"Retained By",
|
|
4217
|
+
"Responsibility"
|
|
4218
|
+
],
|
|
4219
|
+
"optionalFields": [
|
|
4220
|
+
"Retained By Reference",
|
|
4221
|
+
"Boundary",
|
|
4222
|
+
"Notes"
|
|
4223
|
+
],
|
|
4224
|
+
"allowLiteralNone": true
|
|
4225
|
+
},
|
|
4226
|
+
{
|
|
4227
|
+
"input": "Exclusions And Dependencies",
|
|
4228
|
+
"kind": "named-declaration-section",
|
|
4229
|
+
"section": "Exclusions And Dependencies",
|
|
4230
|
+
"group": "Exclusions And Dependencies",
|
|
4231
|
+
"requiredFields": [
|
|
4232
|
+
"Kind",
|
|
4233
|
+
"Description"
|
|
4234
|
+
],
|
|
4235
|
+
"optionalFields": [
|
|
4236
|
+
"Reference",
|
|
4237
|
+
"Responsible Party Or Role",
|
|
4238
|
+
"Notes"
|
|
4239
|
+
],
|
|
4240
|
+
"allowLiteralNone": true
|
|
4241
|
+
},
|
|
4242
|
+
{
|
|
4243
|
+
"input": "Completion Expectation",
|
|
4244
|
+
"kind": "ordinary-group",
|
|
4245
|
+
"section": "Completion Expectation",
|
|
4246
|
+
"group": "Completion Expectation",
|
|
4247
|
+
"requiredFields": [
|
|
4248
|
+
"Signal Kind",
|
|
4249
|
+
"Signal Meaning"
|
|
4250
|
+
],
|
|
4251
|
+
"optionalFields": [
|
|
4252
|
+
"Return To",
|
|
4253
|
+
"Return To Reference",
|
|
4254
|
+
"Expected Result Reference",
|
|
4255
|
+
"Notes"
|
|
4256
|
+
],
|
|
4257
|
+
"sourceSchemaIds": [
|
|
4258
|
+
"tiinex.handoff.v1"
|
|
4259
|
+
]
|
|
4260
|
+
},
|
|
4261
|
+
{
|
|
4262
|
+
"input": "Interpretation Limits",
|
|
4263
|
+
"kind": "ordinary-group",
|
|
4264
|
+
"section": "Interpretation Limits",
|
|
4265
|
+
"group": "Interpretation Limits",
|
|
4266
|
+
"requiredFields": [
|
|
4267
|
+
"Does Not Mean",
|
|
4268
|
+
"Must Not Be Used To Claim"
|
|
4269
|
+
],
|
|
4270
|
+
"optionalFields": [
|
|
4271
|
+
"Authority Limits",
|
|
4272
|
+
"Transport Limits",
|
|
4273
|
+
"Review Notes"
|
|
4274
|
+
],
|
|
4275
|
+
"sourceSchemaIds": [
|
|
4276
|
+
"tiinex.handoff.v1"
|
|
4277
|
+
]
|
|
4278
|
+
}
|
|
4279
|
+
],
|
|
4280
|
+
"supplementalRequiredFields": [],
|
|
4281
|
+
"requiredShape": []
|
|
4282
|
+
}
|
|
4283
|
+
}
|