@tiinex/app 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.
Files changed (580) hide show
  1. package/LICENSE +201 -0
  2. package/NOTICE +31 -0
  3. package/README.md +26 -0
  4. package/docs/CONSUMER-CONTRACT.md +65 -0
  5. package/package.json +94 -0
  6. package/src/acceptance/knownScenarios.case.mjs +48 -0
  7. package/src/acceptance/knownScenarios.js +89 -0
  8. package/src/acceptance/postV423CanonicalTransitionProductVerticalSlice.case.mjs +774 -0
  9. package/src/acceptance/postV437M0ETimePortalProductParityClosure.case.mjs +51 -0
  10. package/src/acceptance/postV447M0FGithubSocialPublicationProductIntegration.case.mjs +33 -0
  11. package/src/acceptance/postV450M0ProductAcceptanceHardening.case.mjs +82 -0
  12. package/src/acceptance/postV470SchemaReadingContractMaterializationIdentitySourceCoalescingAuthorityCorrection.case.mjs +236 -0
  13. package/src/acceptance/recoveryAcceptance.case.mjs +196 -0
  14. package/src/adapters/adapter.definition.schema.json +33 -0
  15. package/src/adapters/archive/archive.adapter.case.mjs +212 -0
  16. package/src/adapters/export/export.adapter.js +79 -0
  17. package/src/adapters/git-native/git-native.adapter.js +43 -0
  18. package/src/adapters/github/github.adapter.case.mjs +843 -0
  19. package/src/adapters/github/github.adapter.js +395 -0
  20. package/src/adapters/github/github.issueEmbedded.js +262 -0
  21. package/src/adapters/github/github.issueMirror.js +309 -0
  22. package/src/adapters/github/github.issueSnapshot.js +475 -0
  23. package/src/adapters/github/github.issueSurface.js +188 -0
  24. package/src/adapters/github/github.issueTransport.js +237 -0
  25. package/src/adapters/github/github.publicationRead.js +24 -0
  26. package/src/adapters/github/github.readTransport.js +18 -0
  27. package/src/adapters/github/github.repoDiscovery.js +222 -0
  28. package/src/adapters/github/github.repoMirror.js +255 -0
  29. package/src/adapters/github/github.repoProxy.js +276 -0
  30. package/src/adapters/github/github.repoSurface.js +60 -0
  31. package/src/adapters/github/github.transportDiagnostics.js +68 -0
  32. package/src/adapters/local/local.adapter.case.mjs +72 -0
  33. package/src/adapters/local/local.adapter.js +188 -0
  34. package/src/adapters/registry.js +35 -0
  35. package/src/adapters/static/static.adapter.js +84 -0
  36. package/src/app/App.js +1 -0
  37. package/src/app/TiinexApp.jsx +822 -0
  38. package/src/app/appShell.views.jsx +58 -0
  39. package/src/app/artifactAuthoringCapability.js +49 -0
  40. package/src/app/boot/bootApp.js +19 -0
  41. package/src/app/boot/environment.js +1 -0
  42. package/src/app/canonicalAuthoringValues.js +4 -0
  43. package/src/app/canonicalCreationProductController.js +57 -0
  44. package/src/app/canonicalCreationProductSettlement.case.mjs +10 -0
  45. package/src/app/canonicalCreationProductSettlement.js +11 -0
  46. package/src/app/canonicalReferenceLocalCreateCommand.js +210 -0
  47. package/src/app/canonicalReferenceTargets.js +73 -0
  48. package/src/app/canonicalTransitionLocalCreateCommand.js +217 -0
  49. package/src/app/defaultWorkspaceStart.case.mjs +39 -0
  50. package/src/app/defaultWorkspaceStart.js +65 -0
  51. package/src/app/defaultWorkspaceStartCommand.js +55 -0
  52. package/src/app/durableLocalMutationPolicy.js +21 -0
  53. package/src/app/githubMaterializationSummary.js +69 -0
  54. package/src/app/githubProgress.js +25 -0
  55. package/src/app/githubSourceInput.js +47 -0
  56. package/src/app/githubSourceMaterializationCommand.js +97 -0
  57. package/src/app/githubSourceOperation.js +226 -0
  58. package/src/app/governanceDialogData.js +27 -0
  59. package/src/app/handoffPackageImportCommand.js +182 -0
  60. package/src/app/historyAuthority.js +53 -0
  61. package/src/app/initialWorkspaceBootstrapOperation.js +105 -0
  62. package/src/app/lineageCommand.js +118 -0
  63. package/src/app/lineageSourceRecovery.js +339 -0
  64. package/src/app/localDraftMutationCommand.js +174 -0
  65. package/src/app/localMaterialCommand.js +124 -0
  66. package/src/app/nodeGraphVerse.case.mjs +111 -0
  67. package/src/app/persistenceOwnership.js +92 -0
  68. package/src/app/productStateBoundary.js +7 -0
  69. package/src/app/providers/AppProviders.js +1 -0
  70. package/src/app/providers/LocaleProvider.js +1 -0
  71. package/src/app/providers/SchemaRegistryProvider.js +1 -0
  72. package/src/app/providers/WorkspaceProvider.js +1 -0
  73. package/src/app/publicTarget.js +251 -0
  74. package/src/app/publicTargetRestoreCommand.js +149 -0
  75. package/src/app/recordUi.cache.js +35 -0
  76. package/src/app/recordUi.js +11 -0
  77. package/src/app/routes/RouteSurface.js +1 -0
  78. package/src/app/routes/routes.js +1 -0
  79. package/src/app/runtimeState.js +54 -0
  80. package/src/app/schemaCurrentDeclaration.js +69 -0
  81. package/src/app/schemaFactoryLocalCreateCommand.js +101 -0
  82. package/src/app/schemaFactoryViewerProof.case.mjs +134 -0
  83. package/src/app/schemaFactoryViewerProof.js +20 -0
  84. package/src/app/schemaNavigationCommand.js +285 -0
  85. package/src/app/schemaNavigationMaterialization.js +171 -0
  86. package/src/app/schemaNavigationRuntimeCatalog.js +25 -0
  87. package/src/app/schemaNavigationState.js +66 -0
  88. package/src/app/schemaReadingContractQualification.js +91 -0
  89. package/src/app/schemaSourceRecovery.js +373 -0
  90. package/src/app/scrollPersistence.js +30 -0
  91. package/src/app/semanticOperationHistory.js +18 -0
  92. package/src/app/shareActionCommand.js +55 -0
  93. package/src/app/shareProjection.js +190 -0
  94. package/src/app/shell/AppShell.js +1 -0
  95. package/src/app/shell/Header.js +1 -0
  96. package/src/app/shell/Navigation.js +1 -0
  97. package/src/app/shell/SurfaceSwitcher.js +1 -0
  98. package/src/app/sourceTransportRefresh.js +176 -0
  99. package/src/app/startupOwnership.js +40 -0
  100. package/src/app/startupPresentation.case.mjs +34 -0
  101. package/src/app/startupPresentation.js +33 -0
  102. package/src/app/startupPresentation.views.jsx +21 -0
  103. package/src/app/startupRenderPhase.js +9 -0
  104. package/src/app/startupWorkspaceCommand.js +62 -0
  105. package/src/app/startupWorkspaceConfigApplication.js +49 -0
  106. package/src/app/statePersistenceScheduler.js +106 -0
  107. package/src/app/tiinexAppConfigPlan.js +108 -0
  108. package/src/app/tiinexAppConfigSource.js +349 -0
  109. package/src/app/tiinexAppStartupSource.js +79 -0
  110. package/src/app/tiinexHostedWorkspaceConventions.js +572 -0
  111. package/src/app/timePortalHistoricalRead.js +114 -0
  112. package/src/app/timePortalSnapshotResolution.js +53 -0
  113. package/src/app/urlMaterialCommand.js +24 -0
  114. package/src/app/useCanonicalPlacementSelectionOptions.js +9 -0
  115. package/src/app/useCanonicalReferenceSelectionOptions.js +8 -0
  116. package/src/app/useLocalMaterialIntake.js +68 -0
  117. package/src/app/useTimePortalProductController.jsx +111 -0
  118. package/src/app/useWorkspaceEntrypointIntake.js +77 -0
  119. package/src/app/useWorkspaceSelectionProductController.jsx +21 -0
  120. package/src/app/viewState.js +35 -0
  121. package/src/app/viewport.js +21 -0
  122. package/src/app/visualDormancy.js +286 -0
  123. package/src/app/workspaceContinuityNotices.js +32 -0
  124. package/src/app/workspaceDisplayCounts.js +9 -0
  125. package/src/app/workspaceEntrypointIntakeCommand.js +87 -0
  126. package/src/app/workspaceEntrypointProductRouting.case.mjs +20 -0
  127. package/src/app/workspaceExportCommand.js +21 -0
  128. package/src/app/workspaceExportDownload.js +23 -0
  129. package/src/app/workspaceExportExecutionCommand.js +10 -0
  130. package/src/app/workspaceGithubPublication.js +237 -0
  131. package/src/app/workspaceHandoffExport.js +56 -0
  132. package/src/app/workspaceHomeTarget.js +9 -0
  133. package/src/app/workspaceMulticolumn.js +113 -0
  134. package/src/app/workspaceNavigationParity.case.mjs +110 -0
  135. package/src/app/workspaceOpenProgress.js +26 -0
  136. package/src/app/workspacePlacementOptions.js +46 -0
  137. package/src/app/workspaceRecordActions.js +158 -0
  138. package/src/app/workspaceScopedInteraction.js +68 -0
  139. package/src/app/workspaceSelectionOriginContext.js +29 -0
  140. package/src/app/workspaceSelectionSession.js +54 -0
  141. package/src/app/workspaceSourceCloseCommand.js +25 -0
  142. package/src/app/workspaceSpineProductRouting.case.mjs +22 -0
  143. package/src/app/workspaceStartupTransition.js +32 -0
  144. package/src/app/workspaceWindow.js +85 -0
  145. package/src/artifacts/artifact.fixture.js +1 -0
  146. package/src/artifacts/artifact.identity.js +6 -0
  147. package/src/artifacts/artifact.identityAggregation.js +218 -0
  148. package/src/artifacts/artifact.model.js +2 -0
  149. package/src/artifacts/artifact.parse.case.mjs +196 -0
  150. package/src/artifacts/artifact.participantIndex.js +189 -0
  151. package/src/artifacts/fixtures/evidence.trace.md +50 -0
  152. package/src/artifacts/fixtures/topic.trace.md +33 -0
  153. package/src/artifacts/fixtures/unknown-schema.trace.md +25 -0
  154. package/src/audit/audit.findings.js +1 -0
  155. package/src/audit/audit.model.js +2 -0
  156. package/src/audit/audit.plan.js +13 -0
  157. package/src/audit/audit.report.js +12 -0
  158. package/src/audit/audit.severity.js +1 -0
  159. package/src/audit/audit.traverse.js +119 -0
  160. package/src/audit/integrity/auditIntegrity.checks.js +1 -0
  161. package/src/audit/integrity/auditIntegrity.compare.js +1 -0
  162. package/src/audit/lineage/auditLineage.load.js +1 -0
  163. package/src/audit/lineage/auditLineage.plan.js +1 -0
  164. package/src/audit/lineage/auditLineage.resolve.js +12 -0
  165. package/src/audit/sources/auditSources.boundaries.js +1 -0
  166. package/src/audit/sources/auditSources.checks.js +1 -0
  167. package/src/audit/validation/auditValidation.recheck.js +1 -0
  168. package/src/audit/validation/auditValidation.run.js +1 -0
  169. package/src/build.identity.js +15 -0
  170. package/src/commands/command.vocabulary.js +14 -0
  171. package/src/conformance/conformance.fixtures.js +151 -0
  172. package/src/conformance/conformance.run.js +238 -0
  173. package/src/data/applicationDataStore.js +23 -0
  174. package/src/data/companionAccess.js +35 -0
  175. package/src/diagnostics/events.js +1 -0
  176. package/src/diagnostics/invariant.js +1 -0
  177. package/src/diagnostics/schemaBindingChecks.js +1 -0
  178. package/src/diagnostics/schemaModuleChecks.js +1 -0
  179. package/src/diagnostics/sourceBoundaryChecks.js +5 -0
  180. package/src/diagnostics/sourceTransport.report.js +190 -0
  181. package/src/discovery/discovery.controls.js +7 -0
  182. package/src/export/export.plan.js +182 -0
  183. package/src/export/handoff.plan.js +50 -0
  184. package/src/export/package.builder.case.mjs +97 -0
  185. package/src/export/package.controlTopology.case.mjs +130 -0
  186. package/src/export/package.zip.case.mjs +33 -0
  187. package/src/graph/artifactGraph.model.js +344 -0
  188. package/src/graph/artifactGraph.project.js +139 -0
  189. package/src/graph/artifactGraph.worker.js +10 -0
  190. package/src/i18n/i18n.keys.js +1 -0
  191. package/src/i18n/i18n.provider.js +1 -0
  192. package/src/i18n/i18n.resolve.js +5 -0
  193. package/src/i18n/locales/en/common.json +4 -0
  194. package/src/i18n/locales/en/schemas/evidence.json +3 -0
  195. package/src/i18n/locales/en/schemas/presentation-surface.json +3 -0
  196. package/src/i18n/locales/en/schemas/preservation.json +3 -0
  197. package/src/i18n/locales/en/schemas/root.json +3 -0
  198. package/src/i18n/locales/en/schemas/schema-module.json +3 -0
  199. package/src/i18n/locales/en/schemas/topic.json +3 -0
  200. package/src/i18n/locales/en/surfaces/audit.json +3 -0
  201. package/src/i18n/locales/en/surfaces/create.json +3 -0
  202. package/src/i18n/locales/en/surfaces/detail.json +3 -0
  203. package/src/i18n/locales/en/surfaces/display-options.json +3 -0
  204. package/src/i18n/locales/en/surfaces/edit.json +3 -0
  205. package/src/i18n/locales/en/surfaces/feed.json +3 -0
  206. package/src/i18n/locales/en/surfaces/lineage.json +3 -0
  207. package/src/i18n/locales/en/surfaces/preview.json +3 -0
  208. package/src/i18n/locales/en/surfaces/share.json +3 -0
  209. package/src/i18n/locales/en/surfaces/source-settings.json +3 -0
  210. package/src/i18n/locales/en/surfaces/tree.json +3 -0
  211. package/src/i18n/locales/sv/common.json +4 -0
  212. package/src/i18n/locales/sv/schemas/evidence.json +3 -0
  213. package/src/i18n/locales/sv/schemas/presentation-surface.json +3 -0
  214. package/src/i18n/locales/sv/schemas/preservation.json +3 -0
  215. package/src/i18n/locales/sv/schemas/root.json +3 -0
  216. package/src/i18n/locales/sv/schemas/schema-module.json +3 -0
  217. package/src/i18n/locales/sv/schemas/topic.json +3 -0
  218. package/src/i18n/locales/sv/surfaces/audit.json +3 -0
  219. package/src/i18n/locales/sv/surfaces/create.json +3 -0
  220. package/src/i18n/locales/sv/surfaces/detail.json +3 -0
  221. package/src/i18n/locales/sv/surfaces/display-options.json +3 -0
  222. package/src/i18n/locales/sv/surfaces/edit.json +3 -0
  223. package/src/i18n/locales/sv/surfaces/feed.json +3 -0
  224. package/src/i18n/locales/sv/surfaces/lineage.json +3 -0
  225. package/src/i18n/locales/sv/surfaces/preview.json +3 -0
  226. package/src/i18n/locales/sv/surfaces/share.json +3 -0
  227. package/src/i18n/locales/sv/surfaces/source-settings.json +3 -0
  228. package/src/i18n/locales/sv/surfaces/tree.json +3 -0
  229. package/src/index.js +10 -0
  230. package/src/integrity/integrity.testFixture.js +9 -0
  231. package/src/interaction/interaction.spine.js +12 -0
  232. package/src/lineage/lineage.audit.js +1 -0
  233. package/src/lineage/lineage.edges.js +1 -0
  234. package/src/main.js +319 -0
  235. package/src/main.jsx +34 -0
  236. package/src/multiverse/multiverse.model.js +10 -0
  237. package/src/parity/poc.m1ParityScenarios.js +42 -0
  238. package/src/parity/poc.parityLedger.js +261 -0
  239. package/src/publication/publication.githubSocialContract.case.mjs +247 -0
  240. package/src/publication/publication.preflight.case.mjs +64 -0
  241. package/src/react/TiinexApplication.jsx +39 -0
  242. package/src/react/VerseHost.jsx +29 -0
  243. package/src/react/applicationDataContext.jsx +30 -0
  244. package/src/react.js +2 -0
  245. package/src/readers/modes/audit.reader.js +1 -0
  246. package/src/readers/modes/detail.reader.js +1 -0
  247. package/src/readers/modes/handover.reader.js +1 -0
  248. package/src/readers/modes/mobile.reader.js +1 -0
  249. package/src/readers/modes/print.reader.js +1 -0
  250. package/src/readers/modes/scan.reader.js +1 -0
  251. package/src/readers/reader.model.js +1 -0
  252. package/src/readers/reader.resolve.js +2 -0
  253. package/src/reingest/reingest.plan.case.mjs +65 -0
  254. package/src/runtime.js +54 -0
  255. package/src/schemas/README.md +99 -0
  256. package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.md +614 -0
  257. package/src/schemas/coordination/project/tiinex.project.v1.schema.md +311 -0
  258. package/src/schemas/core/decision/tiinex.decision.v1.schema.md +227 -0
  259. package/src/schemas/core/evidence/tiinex.evidence.v1.schema.md +318 -0
  260. package/src/schemas/core/feedback/tiinex.feedback.v1.schema.md +243 -0
  261. package/src/schemas/core/interpretation/.transitions/evidence-to-interpretation-transition-definition.trace.md +102 -0
  262. package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.md +308 -0
  263. package/src/schemas/core/preservation/tiinex.preservation.v1.schema.md +312 -0
  264. package/src/schemas/core/relation/.generation/reference-relation-generation-authority.trace.md +185 -0
  265. package/src/schemas/core/relation/.transitions/topic-references-task-transition-definition.trace.md +119 -0
  266. package/src/schemas/core/relation/tiinex.relation.v1.schema.md +240 -0
  267. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.md +550 -0
  268. package/src/schemas/core/signal/tiinex.signal.v1.schema.md +239 -0
  269. package/src/schemas/core/task/.transitions/create-task-transition-definition.trace.md +93 -0
  270. package/src/schemas/core/task/.transitions/topic-to-task-transition-definition.trace.md +102 -0
  271. package/src/schemas/core/task/task-semantic-package.trace.md +53 -0
  272. package/src/schemas/core/task/tiinex.task.v1-transitions.trace.md +33 -0
  273. package/src/schemas/core/task/tiinex.task.v1.authoring.js +65 -0
  274. package/src/schemas/core/task/tiinex.task.v1.schema.md +229 -0
  275. package/src/schemas/core/topic/.transitions/create-topic-transition-definition.trace.md +93 -0
  276. package/src/schemas/core/topic/tiinex.topic.v1-transitions.trace.md +33 -0
  277. package/src/schemas/core/topic/tiinex.topic.v1.schema.md +197 -0
  278. package/src/schemas/core/topic/topic-semantic-package.trace.md +53 -0
  279. package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.md +240 -0
  280. package/src/schemas/discovery/tiinex.discovery.v1.schema.md +294 -0
  281. package/src/schemas/manifest.json +367 -0
  282. package/src/schemas/origins.js +46 -0
  283. package/src/schemas/party/organization/tiinex.party.organization.v1.schema.md +290 -0
  284. package/src/schemas/party/role/tiinex.party.role.v1.schema.md +298 -0
  285. package/src/schemas/party/tiinex.party.v1.schema.js +14 -0
  286. package/src/schemas/party/tiinex.party.v1.schema.json +23 -0
  287. package/src/schemas/party/tiinex.party.v1.schema.md +311 -0
  288. package/src/schemas/party/tiinex.party.v1.schema.runtime.json +2033 -0
  289. package/src/schemas/party/tiinex.party.v1.schema.source.js +9 -0
  290. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.md +476 -0
  291. package/src/schemas/reduction/tiinex.reduction.v1.schema.md +248 -0
  292. package/src/schemas/schema/module/tiinex.schema.module.v1.schema.md +465 -0
  293. package/src/schemas/schema.companionContract.case.mjs +259 -0
  294. package/src/schemas/schema.factory.case.mjs +256 -0
  295. package/src/schemas/schema.factory.viewerProjection.js +183 -0
  296. package/src/schemas/schemaMarkdownCatalog.js +19 -0
  297. package/src/schemas/tiinex.root.v1.schema.md +865 -0
  298. package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.md +309 -0
  299. package/src/schemas/validation/method/tiinex.validation.method.v1.schema.md +280 -0
  300. package/src/schemas/validation/report/tiinex.validation.report.v1.schema.md +300 -0
  301. package/src/schemas/workspace/tiinex.workspace.v1.schema.md +486 -0
  302. package/src/schemas/workspace/workspace.add.views.jsx +327 -0
  303. package/src/schemas/workspace/workspace.audit.views.jsx +160 -0
  304. package/src/schemas/workspace/workspace.auditBadge.views.jsx +98 -0
  305. package/src/schemas/workspace/workspace.canonicalReferenceDialog.views.jsx +63 -0
  306. package/src/schemas/workspace/workspace.canonicalTaskDialog.views.jsx +169 -0
  307. package/src/schemas/workspace/workspace.cardActions.js +9 -0
  308. package/src/schemas/workspace/workspace.cards.views.jsx +146 -0
  309. package/src/schemas/workspace/workspace.chrome.views.jsx +299 -0
  310. package/src/schemas/workspace/workspace.continuationDialog.views.jsx +80 -0
  311. package/src/schemas/workspace/workspace.discovery.views.jsx +63 -0
  312. package/src/schemas/workspace/workspace.discoveryRenderWindow.js +56 -0
  313. package/src/schemas/workspace/workspace.displayOptions.views.jsx +114 -0
  314. package/src/schemas/workspace/workspace.entrypointChoice.views.jsx +30 -0
  315. package/src/schemas/workspace/workspace.exportDialog.controller.jsx +40 -0
  316. package/src/schemas/workspace/workspace.exportDialog.views.jsx +142 -0
  317. package/src/schemas/workspace/workspace.governance.views.jsx +45 -0
  318. package/src/schemas/workspace/workspace.graph.views.jsx +134 -0
  319. package/src/schemas/workspace/workspace.lineage.views.jsx +307 -0
  320. package/src/schemas/workspace/workspace.read.views.jsx +105 -0
  321. package/src/schemas/workspace/workspace.recordActionButton.views.jsx +35 -0
  322. package/src/schemas/workspace/workspace.recordDialogs.views.jsx +257 -0
  323. package/src/schemas/workspace/workspace.selection.views.jsx +14 -0
  324. package/src/schemas/workspace/workspace.sourceReceipt.views.jsx +40 -0
  325. package/src/schemas/workspace/workspace.timePortal.views.jsx +56 -0
  326. package/src/schemas/workspace/workspace.tree.views.jsx +107 -0
  327. package/src/schemas/workspace/workspace.viewFormatting.js +172 -0
  328. package/src/schemas/workspace/workspace.views.jsx +210 -0
  329. package/src/source-settings/sourceSettings.model.js +7 -0
  330. package/src/sources/draft/draft.source.js +1 -0
  331. package/src/sources/github/github.loader.js +204 -0
  332. package/src/sources/github/github.permalink.js +1 -0
  333. package/src/sources/github/github.source.js +1 -0
  334. package/src/sources/github/github.transport.case.mjs +237 -0
  335. package/src/sources/github/github.transport.js +472 -0
  336. package/src/sources/local/local.source.js +1 -0
  337. package/src/sources/source.assetReferences.js +109 -0
  338. package/src/sources/source.boundaries.js +24 -0
  339. package/src/sources/source.identity.js +56 -0
  340. package/src/sources/source.model.case.mjs +26 -0
  341. package/src/sources/source.model.js +56 -0
  342. package/src/sources/source.presenter.js +66 -0
  343. package/src/sources/source.resolve.js +11 -0
  344. package/src/sources/static/static.source.js +1 -0
  345. package/src/sources/transport.policy.case.mjs +39 -0
  346. package/src/sources/transport.policy.js +81 -0
  347. package/src/storage/storage.policy.js +79 -0
  348. package/src/styles/app.css +8699 -0
  349. package/src/styles/responsive.css +10 -0
  350. package/src/styles/theme.css +4 -0
  351. package/src/styles/tokens.css +30 -0
  352. package/src/surfaces/audit/AuditSurface.js +1 -0
  353. package/src/surfaces/audit/audit.model.js +1 -0
  354. package/src/surfaces/audit/audit.render.js +1 -0
  355. package/src/surfaces/contracts.js +45 -0
  356. package/src/surfaces/create/CreateSurface.js +1 -0
  357. package/src/surfaces/create/create.model.js +1 -0
  358. package/src/surfaces/create/create.render.js +1 -0
  359. package/src/surfaces/detail/DetailSurface.js +1 -0
  360. package/src/surfaces/detail/detail.model.js +1 -0
  361. package/src/surfaces/detail/detail.render.js +1 -0
  362. package/src/surfaces/display-options/DisplayOptionsSurface.js +1 -0
  363. package/src/surfaces/display-options/displayOptions.model.js +1 -0
  364. package/src/surfaces/display-options/displayOptions.render.js +1 -0
  365. package/src/surfaces/edit/EditSurface.js +1 -0
  366. package/src/surfaces/edit/edit.model.js +1 -0
  367. package/src/surfaces/edit/edit.render.js +1 -0
  368. package/src/surfaces/feed/FeedSurface.js +1 -0
  369. package/src/surfaces/feed/feed.model.js +1 -0
  370. package/src/surfaces/feed/feed.render.js +1 -0
  371. package/src/surfaces/lineage/LineageSurface.js +1 -0
  372. package/src/surfaces/lineage/lineage.model.js +1 -0
  373. package/src/surfaces/lineage/lineage.render.js +1 -0
  374. package/src/surfaces/preview/PreviewSurface.js +1 -0
  375. package/src/surfaces/preview/preview.model.js +1 -0
  376. package/src/surfaces/preview/preview.render.js +1 -0
  377. package/src/surfaces/registry.js +58 -0
  378. package/src/surfaces/share/ShareSurface.js +1 -0
  379. package/src/surfaces/share/share.model.js +1 -0
  380. package/src/surfaces/share/share.render.js +1 -0
  381. package/src/surfaces/source-settings/SourceSettingsSurface.js +1 -0
  382. package/src/surfaces/source-settings/sourceSettings.model.js +1 -0
  383. package/src/surfaces/source-settings/sourceSettings.render.js +1 -0
  384. package/src/surfaces/surfaceContext.js +1 -0
  385. package/src/surfaces/tree/TreeSurface.js +1 -0
  386. package/src/surfaces/tree/tree.model.js +1 -0
  387. package/src/surfaces/tree/tree.render.js +1 -0
  388. package/src/tooling/portable/adapters/cli/cli.common-output.case.mjs +153 -0
  389. package/src/tooling/portable/adapters/cli/cli.handoff-sibling-allocation.case.mjs +52 -0
  390. package/src/tooling/portable/adapters/cli/cli.run.case.mjs +372 -0
  391. package/src/tooling/portable/adapters/cli/cli.summaryProjection.case.mjs +46 -0
  392. package/src/tooling/portable/audit/audit.capability.case.mjs +45 -0
  393. package/src/tooling/portable/fixtures/legacy-artifacts/collaboration/dogfood/001-tiinex-development-dogfood-collaboration-model.trace.fixture.txt +37 -0
  394. package/src/tooling/portable/fixtures/legacy-artifacts/handoff/tooling/001-v480-tooling-workflow-schema-enablement-handoff.trace.fixture.txt +108 -0
  395. package/src/tooling/portable/fixtures/legacy-artifacts/handoff/tooling/002-v481-tooling-recipient-relative-handoff-material-closure-planner-foundation-handoff.trace.fixture.txt +130 -0
  396. package/src/tooling/portable/fixtures/legacy-artifacts/loom/role/001-loom-role.trace.fixture.txt +61 -0
  397. package/src/tooling/portable/fixtures/legacy-artifacts/sigma/role/001-1-sigma-role.trace.fixture.txt +61 -0
  398. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-1-1-1-1-site-tooling-v474-loaded-parent-identity-evidence-closure-result.trace.fixture.txt +48 -0
  399. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-1-1-1-site-tooling-v474-loaded-parent-identity-evidence-closure.trace.fixture.txt +48 -0
  400. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-1-1-site-tooling-v473-portable-parent-authority-coherence-metadata-fidelity-closure-result.trace.fixture.txt +48 -0
  401. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-1-site-tooling-v473-portable-parent-authority-coherence-metadata-fidelity-closure.trace.fixture.txt +48 -0
  402. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-site-tooling-v472-portable-exact-authoring-fidelity-closure-result.trace.fixture.txt +48 -0
  403. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-site-tooling-v472-portable-exact-authoring-fidelity-closure.trace.fixture.txt +48 -0
  404. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-site-tooling-v471-portable-lineage-authoring-closure-result.trace.fixture.txt +48 -0
  405. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-site-tooling-v471-portable-lineage-authoring-closure.trace.fixture.txt +39 -0
  406. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/002-1-v475-canonical-artifact-envelope-reference-integrity-validation.trace.fixture.txt +43 -0
  407. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/003-1-v476-canonical-authority-binding-integrity-method-lineage-alloca.trace.fixture.txt +42 -0
  408. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/027-handoff-package-workspace-archive-and-control-plane-minimality-audit.trace.fixture.txt +56 -0
  409. package/src/tooling/portable/fixtures/legacyArtifactFixtures.mjs +34 -0
  410. package/src/tooling/portable/grounding/grounding.capsule.case.mjs +65 -0
  411. package/src/tooling/portable/grounding/grounding.readiness.case.mjs +543 -0
  412. package/src/tooling/portable/grounding/grounding.semanticIntegration.case.mjs +131 -0
  413. package/src/tooling/portable/handoff/boundedWorkspaceRepresentation.case.mjs +103 -0
  414. package/src/tooling/portable/handoff/carrierLineage.fixedWidth.case.mjs +97 -0
  415. package/src/tooling/portable/handoff/coldStartQualification.case.mjs +293 -0
  416. package/src/tooling/portable/handoff/fixtures/027-invalid-audit-result.fixture.txt +192 -0
  417. package/src/tooling/portable/handoff/fixtures/027-invalid-return-handoff.fixture.txt +92 -0
  418. package/src/tooling/portable/handoff/fixtures/cold-start-qualification.v1.examples.json +60 -0
  419. package/src/tooling/portable/handoff/handoff.manufacture.case.mjs +293 -0
  420. package/src/tooling/portable/handoff/materialClosure.case.mjs +727 -0
  421. package/src/tooling/portable/handoff/multiRootManufacture.case.mjs +615 -0
  422. package/src/tooling/portable/handoff/operatorBridgeCore.case.mjs +205 -0
  423. package/src/tooling/portable/handoff/workspaceLandingPlan.case.mjs +143 -0
  424. package/src/tooling/portable/input/node.input.case.mjs +293 -0
  425. package/src/tooling/portable/lifecycle/lifecycle.readiness.case.mjs +179 -0
  426. package/src/tooling/portable/lineage/fixtures/lineage.integrity.repair-projection.v1.examples.json +605 -0
  427. package/src/tooling/portable/lineage/lineage.integrity.shared-capability.case.mjs +37 -0
  428. package/src/tooling/portable/lineage/publicationProviderReceipt.fixture.mjs +50 -0
  429. package/src/tooling/portable/package/fixtures/reference-relation-generation-authority.trace.md +84 -0
  430. package/src/tooling/portable/package/fixtures/tiinex.root.v1.package-authority.contract-fixture.md +64 -0
  431. package/src/tooling/portable/package/fixtures/tiinex.schema.generation.v1.generation-binding.contract-fixture.md +140 -0
  432. package/src/tooling/portable/package/fixtures/tiinex.schema.transition.companion.v1.contract-fixture.md +73 -0
  433. package/src/tooling/portable/package/fixtures/tiinex.semantic.package.v1.contract-fixture.md +147 -0
  434. package/src/tooling/portable/package/fixtures/tiinex.transition.definition.v1.package-contract-fixture.md +77 -0
  435. package/src/tooling/portable/providers/schema.providers.genericity.case.mjs +31 -0
  436. package/src/tooling/portable/reduction/reduction.preflight.case.mjs +298 -0
  437. package/src/tooling/portable/schema/fixtures/evidence-preservation-body.inheritance-record-fixture.md +65 -0
  438. package/src/tooling/portable/schema/fixtures/tiinex.portal.time.v1.contract-fixture.md +294 -0
  439. package/src/tooling/portable/schema/fixtures/tiinex.root.v1.contract-fixture.md +584 -0
  440. package/src/tooling/portable/schema/fixtures/tiinex.root.v1.machine-shape.contract-fixture.md +44 -0
  441. package/src/tooling/portable/schema/fixtures/tiinex.root.v1.ordinary-target.contract-fixture.md +630 -0
  442. package/src/tooling/portable/schema/fixtures/tiinex.schema.contract.v1.repeated-record.contract-fixture.md +69 -0
  443. package/src/tooling/portable/schema/fixtures/tiinex.schema.generation.v1.repeated-record.contract-fixture.md +98 -0
  444. package/src/tooling/portable/schema/fixtures/tiinex.schema.inheritance.v1.repeated-record.contract-fixture.md +58 -0
  445. package/src/tooling/portable/schema/fixtures/tiinex.task.v1.contract-fixture.md +165 -0
  446. package/src/tooling/portable/schema/fixtures/tiinex.transition.definition.v1.contract-fixture.md +744 -0
  447. package/src/tooling/portable/schema/fixtures/tiinex.transition.definition.v1.field-domain.contract-fixture.md +319 -0
  448. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.relation.v1.schema.md +240 -0
  449. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.schema.contract.v1.schema.md +391 -0
  450. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.schema.generation.v1.schema.md +379 -0
  451. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.schema.transition.companion.v1.schema.md +265 -0
  452. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.semantic.package.v1.schema.md +402 -0
  453. package/src/transitions/canonical-schema-cache/52ecdea0a75893882ce282214d155f70e1309c2a/tiinex.topic.v1.schema.md +197 -0
  454. package/src/transitions/canonical-schema-cache/d69b8ff55a56b8cb9282b8684db6a938a4435b94/tiinex.root.v1.schema.md +797 -0
  455. package/src/transitions/canonical-schema-cache/d69b8ff55a56b8cb9282b8684db6a938a4435b94/tiinex.transition.definition.v1.schema.md +1062 -0
  456. package/src/transitions/canonicalTransition.packageContracts.js +22 -0
  457. package/src/transitions/canonicalTransition.productDefaults.js +105 -0
  458. package/src/transitions/canonicalTransition.schemaCache.case.mjs +45 -0
  459. package/src/transitions/canonicalTransition.schemaCache.js +81 -0
  460. package/src/transitions/canonicalTransition.semanticPackage.js +146 -0
  461. package/src/transitions/record.transitions.case.mjs +88 -0
  462. package/src/transitions/transition.authorityRepresentation.js +55 -0
  463. package/src/transitions/transition.availabilityPlanner.js +376 -0
  464. package/src/transitions/transition.availabilitySemantics.js +150 -0
  465. package/src/transitions/transition.definitionReadProjection.js +107 -0
  466. package/src/transitions/transition.definitionRegistry.js +355 -0
  467. package/src/transitions/transition.definitionRegistryAggregation.js +21 -0
  468. package/src/transitions/transition.definitions.js +46 -0
  469. package/src/transitions/transition.explicitGenerationPlanner.js +58 -0
  470. package/src/transitions/transition.generationInputPlanner.js +19 -0
  471. package/src/transitions/transition.interpretationMaterializer.js +2 -0
  472. package/src/transitions/transition.invocationBindingPacket.js +52 -0
  473. package/src/transitions/transition.invocationBindingPlanner.js +467 -0
  474. package/src/transitions/transition.legacyShorthand.js +133 -0
  475. package/src/transitions/transition.localArtifactMaterializers.js +16 -0
  476. package/src/transitions/transition.localCreateCapability.js +111 -0
  477. package/src/transitions/transition.outputMaterializationPlanner.js +336 -0
  478. package/src/transitions/transition.parentReference.js +90 -0
  479. package/src/transitions/transition.presentation.js +43 -0
  480. package/src/transitions/transition.productPreparation.js +377 -0
  481. package/src/transitions/transition.productPresentation.browser.js +28 -0
  482. package/src/transitions/transition.productPresentation.js +55 -0
  483. package/src/transitions/transition.referenceCreateCapability.js +119 -0
  484. package/src/transitions/transition.referenceTarget.js +50 -0
  485. package/src/transitions/transition.relationMaterializer.js +2 -0
  486. package/src/transitions/transition.resultSemantics.js +453 -0
  487. package/src/transitions/transition.taskMaterializer.js +2 -0
  488. package/src/transitions/transition.topicMaterializer.js +2 -0
  489. package/src/transitions/transition.validate.case.mjs +58 -0
  490. package/src/ui/cards/ArtifactCard.js +1 -0
  491. package/src/ui/cards/SchemaCard.js +1 -0
  492. package/src/ui/cards/SourceCard.js +1 -0
  493. package/src/ui/dialog.presenter.js +24 -0
  494. package/src/ui/feedback/DegradedNotice.js +1 -0
  495. package/src/ui/feedback/EmptyState.js +1 -0
  496. package/src/ui/feedback/ValidationNotice.js +1 -0
  497. package/src/ui/forms/FormRenderer.js +1 -0
  498. package/src/ui/forms/fields/MarkdownField.js +1 -0
  499. package/src/ui/forms/fields/SelectField.js +1 -0
  500. package/src/ui/forms/fields/SourcePickerField.js +1 -0
  501. package/src/ui/forms/fields/TextField.js +1 -0
  502. package/src/ui/icon.paths.js +37 -0
  503. package/src/ui/layout/Panel.js +1 -0
  504. package/src/ui/layout/ResponsiveFrame.js +1 -0
  505. package/src/ui/layout/SplitView.js +1 -0
  506. package/src/ui/layout/Stack.js +1 -0
  507. package/src/ui/panels/DetailPanel.js +1 -0
  508. package/src/ui/panels/LineagePanel.js +1 -0
  509. package/src/ui/panels/SourcePanel.js +1 -0
  510. package/src/ui/primitives/Badge.js +1 -0
  511. package/src/ui/primitives/Badge.jsx +5 -0
  512. package/src/ui/primitives/Button.js +1 -0
  513. package/src/ui/primitives/Button.jsx +12 -0
  514. package/src/ui/primitives/Card.js +1 -0
  515. package/src/ui/primitives/Field.js +1 -0
  516. package/src/ui/primitives/Field.jsx +21 -0
  517. package/src/ui/primitives/Icon.jsx +90 -0
  518. package/src/ui/primitives/Modal.jsx +27 -0
  519. package/src/validation/i18n.js +37 -0
  520. package/src/validation/validateArtifact.case.mjs +41 -0
  521. package/src/verses/column/ColumnVerse.js +1 -0
  522. package/src/verses/column/column.model.js +6 -0
  523. package/src/verses/column/column.project.js +7 -0
  524. package/src/verses/context.js +26 -0
  525. package/src/verses/contracts.js +1 -0
  526. package/src/verses/hostRegistry.js +47 -0
  527. package/src/verses/registry.js +22 -0
  528. package/src/verses/universe.model.js +8 -0
  529. package/src/verses/universe.presenter.js +8 -0
  530. package/src/verses/universe.project.js +12 -0
  531. package/src/viewer.js +34 -0
  532. package/src/workspace.model.js +5 -0
  533. package/src/workspaces/workspace.actions.js +1 -0
  534. package/src/workspaces/workspace.artifactActions.js +56 -0
  535. package/src/workspaces/workspace.auditView.js +153 -0
  536. package/src/workspaces/workspace.candidates.js +149 -0
  537. package/src/workspaces/workspace.config.js +153 -0
  538. package/src/workspaces/workspace.configuredSource.js +68 -0
  539. package/src/workspaces/workspace.discoveryProgress.js +34 -0
  540. package/src/workspaces/workspace.discoveryView.js +386 -0
  541. package/src/workspaces/workspace.displayFilters.js +63 -0
  542. package/src/workspaces/workspace.displayOptions.js +58 -0
  543. package/src/workspaces/workspace.emptyStateCopy.js +24 -0
  544. package/src/workspaces/workspace.entrypointLifecycle.js +131 -0
  545. package/src/workspaces/workspace.entrypointViewIntent.js +83 -0
  546. package/src/workspaces/workspace.entrypoints.js +157 -0
  547. package/src/workspaces/workspace.feedSort.js +152 -0
  548. package/src/workspaces/workspace.import.js +212 -0
  549. package/src/workspaces/workspace.importConflicts.js +200 -0
  550. package/src/workspaces/workspace.importLifecycle.case.mjs +103 -0
  551. package/src/workspaces/workspace.lifecycle.case.mjs +353 -0
  552. package/src/workspaces/workspace.lifecycle.js +357 -0
  553. package/src/workspaces/workspace.lineageView.js +244 -0
  554. package/src/workspaces/workspace.localSourceLifecycle.js +91 -0
  555. package/src/workspaces/workspace.materialLedger.js +110 -0
  556. package/src/workspaces/workspace.materialReconciliation.case.mjs +164 -0
  557. package/src/workspaces/workspace.materialReconciliation.js +390 -0
  558. package/src/workspaces/workspace.memberIdentity.js +140 -0
  559. package/src/workspaces/workspace.model.js +2 -0
  560. package/src/workspaces/workspace.navigation.js +20 -0
  561. package/src/workspaces/workspace.openSemantics.js +33 -0
  562. package/src/workspaces/workspace.pathTree.js +132 -0
  563. package/src/workspaces/workspace.persistence.case.mjs +271 -0
  564. package/src/workspaces/workspace.persistence.js +469 -0
  565. package/src/workspaces/workspace.persistenceCache.js +41 -0
  566. package/src/workspaces/workspace.persistenceClear.js +45 -0
  567. package/src/workspaces/workspace.persistencePresentation.js +93 -0
  568. package/src/workspaces/workspace.persistenceRecovery.js +147 -0
  569. package/src/workspaces/workspace.persistenceRouteCache.js +82 -0
  570. package/src/workspaces/workspace.publicationReceipts.case.mjs +36 -0
  571. package/src/workspaces/workspace.publicationReceipts.js +56 -0
  572. package/src/workspaces/workspace.recoverabilityView.js +264 -0
  573. package/src/workspaces/workspace.route.js +432 -0
  574. package/src/workspaces/workspace.runtimeCanonical.js +18 -0
  575. package/src/workspaces/workspace.sourceMaterial.js +71 -0
  576. package/src/workspaces/workspace.sourceRecordPath.js +5 -0
  577. package/src/workspaces/workspace.sourceRecords.js +75 -0
  578. package/src/workspaces/workspace.store.js +3 -0
  579. package/src/workspaces/workspace.summary.js +116 -0
  580. package/src/workspaces/workspace.timePortal.js +137 -0
@@ -0,0 +1,2033 @@
1
+ {
2
+ "schema": "tiinex.site.schema-runtime-projection.v1",
3
+ "generator": "schema-runtime-projection-v1",
4
+ "schemaId": "tiinex.party.v1",
5
+ "sourceChecksum": "390ccad11c1939af169cd5428ca2892d5351d71b3fc862d14f6404bf08b14f01",
6
+ "sourceBlobSha": "9e45fd01327afecc823be741e04303b3e723c5ac",
7
+ "sourceBytes": 9759,
8
+ "bindingChecksum": "390ccad11c1939af169cd5428ca2892d5351d71b3fc862d14f6404bf08b14f01",
9
+ "validationContract": {
10
+ "schema": "tiinex.site.compact-portable-validation-contract.v1",
11
+ "schemaId": "tiinex.party.v1",
12
+ "lineage": [
13
+ "tiinex.root.v1",
14
+ "tiinex.party.v1"
15
+ ],
16
+ "lineageQualification": {
17
+ "state": "valid",
18
+ "complete": true,
19
+ "lineage": [
20
+ "tiinex.root.v1",
21
+ "tiinex.party.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
+ "Party Identity",
55
+ "Party Boundary",
56
+ "Role Or Capacity",
57
+ "Reference And Privacy Boundary",
58
+ "Use With Other Schemas",
59
+ "Interpretation Limits"
60
+ ],
61
+ "requiredHeadings": [
62
+ {
63
+ "level": 2,
64
+ "title": "Party Identity",
65
+ "source": "`## Party Identity` section"
66
+ },
67
+ {
68
+ "level": 2,
69
+ "title": "Party Boundary",
70
+ "source": "`## Party Boundary` section"
71
+ },
72
+ {
73
+ "level": 2,
74
+ "title": "Role Or Capacity",
75
+ "source": "`## Role Or Capacity` section"
76
+ },
77
+ {
78
+ "level": 2,
79
+ "title": "Reference And Privacy Boundary",
80
+ "source": "`## Reference And Privacy Boundary` section"
81
+ },
82
+ {
83
+ "level": 2,
84
+ "title": "Use With Other Schemas",
85
+ "source": "`## Use With Other Schemas` section"
86
+ },
87
+ {
88
+ "level": 2,
89
+ "title": "Interpretation Limits",
90
+ "source": "`## Interpretation Limits` section"
91
+ }
92
+ ],
93
+ "requiredEntries": [
94
+ {
95
+ "group": "Continuity Integrity Footer",
96
+ "entries": [
97
+ "Method Entry"
98
+ ],
99
+ "targetHeadings": [
100
+ "Continuity Integrity"
101
+ ]
102
+ }
103
+ ],
104
+ "ordinaryGroups": [
105
+ {
106
+ "group": "Party Identity",
107
+ "qualification": "valid",
108
+ "target": {
109
+ "heading": "## Party Identity",
110
+ "title": "Party Identity",
111
+ "level": 2,
112
+ "authority": "root-same-name-default",
113
+ "requiredness": "required",
114
+ "qualification": "valid",
115
+ "findings": []
116
+ },
117
+ "requiredFields": [
118
+ "Party Label",
119
+ "Party Kind"
120
+ ],
121
+ "optionalFields": [
122
+ "Canonical Identifier",
123
+ "Alias",
124
+ "Public Name",
125
+ "Private Descriptor"
126
+ ],
127
+ "contributors": [
128
+ {
129
+ "sourceSchemaId": "tiinex.party.v1",
130
+ "group": "Party Identity",
131
+ "requiredFields": [
132
+ "Party Label",
133
+ "Party Kind"
134
+ ],
135
+ "optionalFields": [
136
+ "Canonical Identifier",
137
+ "Alias",
138
+ "Public Name",
139
+ "Private Descriptor"
140
+ ],
141
+ "target": {
142
+ "heading": "## Party Identity",
143
+ "title": "Party Identity",
144
+ "level": 2,
145
+ "authority": "root-same-name-default",
146
+ "qualification": "valid"
147
+ }
148
+ }
149
+ ]
150
+ },
151
+ {
152
+ "group": "Party Boundary",
153
+ "qualification": "valid",
154
+ "target": {
155
+ "heading": "## Party Boundary",
156
+ "title": "Party Boundary",
157
+ "level": 2,
158
+ "authority": "root-same-name-default",
159
+ "requiredness": "required",
160
+ "qualification": "valid",
161
+ "findings": []
162
+ },
163
+ "requiredFields": [
164
+ "In Scope",
165
+ "Out Of Scope"
166
+ ],
167
+ "optionalFields": [
168
+ "Organization Boundary",
169
+ "Group Boundary",
170
+ "Role Boundary",
171
+ "Temporal Boundary"
172
+ ],
173
+ "contributors": [
174
+ {
175
+ "sourceSchemaId": "tiinex.party.v1",
176
+ "group": "Party Boundary",
177
+ "requiredFields": [
178
+ "In Scope",
179
+ "Out Of Scope"
180
+ ],
181
+ "optionalFields": [
182
+ "Organization Boundary",
183
+ "Group Boundary",
184
+ "Role Boundary",
185
+ "Temporal Boundary"
186
+ ],
187
+ "target": {
188
+ "heading": "## Party Boundary",
189
+ "title": "Party Boundary",
190
+ "level": 2,
191
+ "authority": "root-same-name-default",
192
+ "qualification": "valid"
193
+ }
194
+ }
195
+ ]
196
+ },
197
+ {
198
+ "group": "Role Or Capacity",
199
+ "qualification": "valid",
200
+ "target": {
201
+ "heading": "## Role Or Capacity",
202
+ "title": "Role Or Capacity",
203
+ "level": 2,
204
+ "authority": "root-same-name-default",
205
+ "requiredness": "required",
206
+ "qualification": "valid",
207
+ "findings": []
208
+ },
209
+ "requiredFields": [
210
+ "Capacity",
211
+ "Capacity Context"
212
+ ],
213
+ "optionalFields": [
214
+ "Role",
215
+ "Authority Claim",
216
+ "Responsibility",
217
+ "Stakeholder Context"
218
+ ],
219
+ "contributors": [
220
+ {
221
+ "sourceSchemaId": "tiinex.party.v1",
222
+ "group": "Role Or Capacity",
223
+ "requiredFields": [
224
+ "Capacity",
225
+ "Capacity Context"
226
+ ],
227
+ "optionalFields": [
228
+ "Role",
229
+ "Authority Claim",
230
+ "Responsibility",
231
+ "Stakeholder Context"
232
+ ],
233
+ "target": {
234
+ "heading": "## Role Or Capacity",
235
+ "title": "Role Or Capacity",
236
+ "level": 2,
237
+ "authority": "root-same-name-default",
238
+ "qualification": "valid"
239
+ }
240
+ }
241
+ ]
242
+ },
243
+ {
244
+ "group": "Reference And Privacy Boundary",
245
+ "qualification": "valid",
246
+ "target": {
247
+ "heading": "## Reference And Privacy Boundary",
248
+ "title": "Reference And Privacy Boundary",
249
+ "level": 2,
250
+ "authority": "root-same-name-default",
251
+ "requiredness": "required",
252
+ "qualification": "valid",
253
+ "findings": []
254
+ },
255
+ "requiredFields": [
256
+ "Reference Safety",
257
+ "Disclosure Boundary"
258
+ ],
259
+ "optionalFields": [
260
+ "Contact Boundary",
261
+ "Personal Data Boundary",
262
+ "Sensitive Context"
263
+ ],
264
+ "contributors": [
265
+ {
266
+ "sourceSchemaId": "tiinex.party.v1",
267
+ "group": "Reference And Privacy Boundary",
268
+ "requiredFields": [
269
+ "Reference Safety",
270
+ "Disclosure Boundary"
271
+ ],
272
+ "optionalFields": [
273
+ "Contact Boundary",
274
+ "Personal Data Boundary",
275
+ "Sensitive Context"
276
+ ],
277
+ "target": {
278
+ "heading": "## Reference And Privacy Boundary",
279
+ "title": "Reference And Privacy Boundary",
280
+ "level": 2,
281
+ "authority": "root-same-name-default",
282
+ "qualification": "valid"
283
+ }
284
+ }
285
+ ]
286
+ },
287
+ {
288
+ "group": "Use With Other Schemas",
289
+ "qualification": "valid",
290
+ "target": {
291
+ "heading": "## Use With Other Schemas",
292
+ "title": "Use With Other Schemas",
293
+ "level": 2,
294
+ "authority": "root-same-name-default",
295
+ "requiredness": "required",
296
+ "qualification": "valid",
297
+ "findings": []
298
+ },
299
+ "requiredFields": [
300
+ "Usable As",
301
+ "Must Reference Separately"
302
+ ],
303
+ "optionalFields": [
304
+ "Project Use",
305
+ "Event Use",
306
+ "Invitation Use",
307
+ "Availability Use",
308
+ "Attestation Use"
309
+ ],
310
+ "contributors": [
311
+ {
312
+ "sourceSchemaId": "tiinex.party.v1",
313
+ "group": "Use With Other Schemas",
314
+ "requiredFields": [
315
+ "Usable As",
316
+ "Must Reference Separately"
317
+ ],
318
+ "optionalFields": [
319
+ "Project Use",
320
+ "Event Use",
321
+ "Invitation Use",
322
+ "Availability Use",
323
+ "Attestation Use"
324
+ ],
325
+ "target": {
326
+ "heading": "## Use With Other Schemas",
327
+ "title": "Use With Other Schemas",
328
+ "level": 2,
329
+ "authority": "root-same-name-default",
330
+ "qualification": "valid"
331
+ }
332
+ }
333
+ ]
334
+ },
335
+ {
336
+ "group": "Interpretation Limits",
337
+ "qualification": "valid",
338
+ "target": {
339
+ "heading": "## Interpretation Limits",
340
+ "title": "Interpretation Limits",
341
+ "level": 2,
342
+ "authority": "root-same-name-default",
343
+ "requiredness": "required",
344
+ "qualification": "valid",
345
+ "findings": []
346
+ },
347
+ "requiredFields": [
348
+ "Does Not Prove",
349
+ "Must Not Be Treated As"
350
+ ],
351
+ "optionalFields": [
352
+ "Identity Limits",
353
+ "Authority Limits",
354
+ "Consent Limits"
355
+ ],
356
+ "contributors": [
357
+ {
358
+ "sourceSchemaId": "tiinex.party.v1",
359
+ "group": "Interpretation Limits",
360
+ "requiredFields": [
361
+ "Does Not Prove",
362
+ "Must Not Be Treated As"
363
+ ],
364
+ "optionalFields": [
365
+ "Identity Limits",
366
+ "Authority Limits",
367
+ "Consent Limits"
368
+ ],
369
+ "target": {
370
+ "heading": "## Interpretation Limits",
371
+ "title": "Interpretation Limits",
372
+ "level": 2,
373
+ "authority": "root-same-name-default",
374
+ "qualification": "valid"
375
+ }
376
+ }
377
+ ]
378
+ }
379
+ ],
380
+ "conditionalRequirements": [
381
+ {
382
+ "name": "Contract Category Extension",
383
+ "requiredWhen": [
384
+ "A descendant schema introduces a contract category label."
385
+ ],
386
+ "requiredSections": [],
387
+ "requiredFields": [],
388
+ "requiredEntries": [],
389
+ "allowedLabels": [],
390
+ "entryShapes": [
391
+ "Named Declaration"
392
+ ],
393
+ "ordering": []
394
+ },
395
+ {
396
+ "name": "Contract Category Override",
397
+ "requiredWhen": [
398
+ "A descendant schema replaces the interpretation of an inherited contract category label."
399
+ ],
400
+ "requiredSections": [],
401
+ "requiredFields": [],
402
+ "requiredEntries": [],
403
+ "allowedLabels": [],
404
+ "entryShapes": [
405
+ "Named Declaration"
406
+ ],
407
+ "ordering": []
408
+ },
409
+ {
410
+ "name": "Repairs",
411
+ "requiredWhen": [
412
+ "Repairs exists"
413
+ ],
414
+ "requiredSections": [],
415
+ "requiredFields": [],
416
+ "requiredEntries": [],
417
+ "allowedLabels": [],
418
+ "entryShapes": [
419
+ "First-Level Hyphen List Item"
420
+ ],
421
+ "ordering": []
422
+ },
423
+ {
424
+ "name": "Parent",
425
+ "requiredWhen": [
426
+ "Parent exists"
427
+ ],
428
+ "requiredSections": [],
429
+ "requiredFields": [
430
+ "Parent Schema",
431
+ "Trace",
432
+ "Origin"
433
+ ],
434
+ "requiredEntries": [],
435
+ "allowedLabels": [],
436
+ "entryShapes": [],
437
+ "ordering": []
438
+ },
439
+ {
440
+ "name": "Parent Origin",
441
+ "requiredWhen": [
442
+ "Parent exists"
443
+ ],
444
+ "requiredSections": [],
445
+ "requiredFields": [],
446
+ "requiredEntries": [],
447
+ "allowedLabels": [
448
+ "relative",
449
+ "absolute",
450
+ "browse + git"
451
+ ],
452
+ "entryShapes": [
453
+ "Markdown Link"
454
+ ],
455
+ "ordering": [
456
+ "relative",
457
+ "absolute",
458
+ "browse + git"
459
+ ]
460
+ },
461
+ {
462
+ "name": "Envelope Extension",
463
+ "requiredWhen": [
464
+ "A descendant schema adds envelope fields."
465
+ ],
466
+ "requiredSections": [],
467
+ "requiredFields": [],
468
+ "requiredEntries": [],
469
+ "allowedLabels": [],
470
+ "entryShapes": [
471
+ "Named Declaration"
472
+ ],
473
+ "ordering": []
474
+ },
475
+ {
476
+ "name": "Extension",
477
+ "requiredWhen": [
478
+ "A descendant schema introduces an extension."
479
+ ],
480
+ "requiredSections": [],
481
+ "requiredFields": [],
482
+ "requiredEntries": [],
483
+ "allowedLabels": [],
484
+ "entryShapes": [
485
+ "Named Declaration"
486
+ ],
487
+ "ordering": []
488
+ }
489
+ ],
490
+ "fieldShapes": [
491
+ {
492
+ "kind": "field-shape",
493
+ "sourceSchemaId": "tiinex.root.v1",
494
+ "group": "Schema Reference Fields",
495
+ "field": "Envelope Schema",
496
+ "allowedShapes": [
497
+ "Markdown Link",
498
+ "Plain Schema Id"
499
+ ],
500
+ "allowedShapeAuthorities": [
501
+ {
502
+ "shapeLabel": "Markdown Link",
503
+ "qualification": "evaluable",
504
+ "useSourceSchemaId": "tiinex.root.v1",
505
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
506
+ "visibleSchemaIds": [
507
+ "tiinex.root.v1"
508
+ ],
509
+ "definition": {
510
+ "kind": "machine-shape-definition",
511
+ "shapeLabel": "Markdown Link",
512
+ "sourceSchemaId": "tiinex.root.v1",
513
+ "sourceGroup": "Machine Shape Authority",
514
+ "declarationSource": {
515
+ "line": 408
516
+ },
517
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
518
+ "grammarProfile": "tiinex.lexical.shape.v1",
519
+ "startRule": "markdown-link",
520
+ "grammarRules": [
521
+ " markdown-link = \"[\" label \"](\" target \")\"",
522
+ " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
523
+ " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
524
+ ],
525
+ "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.",
526
+ "qualificationSupport": "available",
527
+ "definitionQualification": "valid",
528
+ "definitionFindings": [],
529
+ "declarationStructure": {
530
+ "value": "Markdown Link",
531
+ "children": [
532
+ {
533
+ "value": "Grammar Profile: tiinex.lexical.shape.v1",
534
+ "children": []
535
+ },
536
+ {
537
+ "value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
538
+ "children": []
539
+ },
540
+ {
541
+ "value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
542
+ "children": []
543
+ },
544
+ {
545
+ "value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
546
+ "children": []
547
+ },
548
+ {
549
+ "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.",
550
+ "children": []
551
+ },
552
+ {
553
+ "value": "Start Rule: markdown-link",
554
+ "children": []
555
+ }
556
+ ]
557
+ },
558
+ "compiledGrammar": {
559
+ "profile": "tiinex.lexical.shape.v1",
560
+ "qualification": "valid",
561
+ "startRule": "markdown-link",
562
+ "grammarRules": [
563
+ {
564
+ "name": "markdown-link",
565
+ "source": " markdown-link = \"[\" label \"](\" target \")\"",
566
+ "expression": {
567
+ "type": "concatenation",
568
+ "parts": [
569
+ {
570
+ "type": "literal",
571
+ "value": "["
572
+ },
573
+ {
574
+ "type": "reference",
575
+ "name": "label"
576
+ },
577
+ {
578
+ "type": "literal",
579
+ "value": "]("
580
+ },
581
+ {
582
+ "type": "reference",
583
+ "name": "target"
584
+ },
585
+ {
586
+ "type": "literal",
587
+ "value": ")"
588
+ }
589
+ ]
590
+ }
591
+ },
592
+ {
593
+ "name": "label",
594
+ "source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
595
+ "expression": {
596
+ "type": "repeat",
597
+ "quantifier": "+",
598
+ "expression": {
599
+ "type": "any-except",
600
+ "exclusions": [
601
+ "]",
602
+ "\t",
603
+ "\r",
604
+ "\n"
605
+ ]
606
+ }
607
+ }
608
+ },
609
+ {
610
+ "name": "target",
611
+ "source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
612
+ "expression": {
613
+ "type": "repeat",
614
+ "quantifier": "+",
615
+ "expression": {
616
+ "type": "any-except",
617
+ "exclusions": [
618
+ ")",
619
+ " ",
620
+ "\t",
621
+ "\r",
622
+ "\n"
623
+ ]
624
+ }
625
+ }
626
+ }
627
+ ],
628
+ "findings": []
629
+ }
630
+ },
631
+ "resolvedDefinitionProvenance": {
632
+ "sourceSchemaId": "tiinex.root.v1",
633
+ "sourceGroup": "Machine Shape Authority",
634
+ "declarationSource": {
635
+ "line": 408
636
+ }
637
+ },
638
+ "visibleDefinitions": [
639
+ {
640
+ "shapeLabel": "Markdown Link",
641
+ "sourceSchemaId": "tiinex.root.v1",
642
+ "sourceGroup": "Machine Shape Authority",
643
+ "declarationSource": {
644
+ "line": 408
645
+ },
646
+ "grammarProfile": "tiinex.lexical.shape.v1",
647
+ "definitionQualification": "valid",
648
+ "qualificationSupport": "available"
649
+ }
650
+ ],
651
+ "findings": []
652
+ },
653
+ {
654
+ "shapeLabel": "Plain Schema Id",
655
+ "qualification": "unresolved",
656
+ "useSourceSchemaId": "tiinex.root.v1",
657
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
658
+ "visibleSchemaIds": [
659
+ "tiinex.root.v1"
660
+ ],
661
+ "definition": null,
662
+ "resolvedDefinitionProvenance": null,
663
+ "visibleDefinitions": [],
664
+ "findings": [
665
+ "No visible Machine Shape Definition exists for exact label Plain Schema Id."
666
+ ]
667
+ }
668
+ ]
669
+ },
670
+ {
671
+ "kind": "field-shape",
672
+ "sourceSchemaId": "tiinex.root.v1",
673
+ "group": "Schema Reference Fields",
674
+ "field": "Parent Schema",
675
+ "allowedShapes": [
676
+ "Markdown Link",
677
+ "Plain Schema Id"
678
+ ],
679
+ "allowedShapeAuthorities": [
680
+ {
681
+ "shapeLabel": "Markdown Link",
682
+ "qualification": "evaluable",
683
+ "useSourceSchemaId": "tiinex.root.v1",
684
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
685
+ "visibleSchemaIds": [
686
+ "tiinex.root.v1"
687
+ ],
688
+ "definition": {
689
+ "kind": "machine-shape-definition",
690
+ "shapeLabel": "Markdown Link",
691
+ "sourceSchemaId": "tiinex.root.v1",
692
+ "sourceGroup": "Machine Shape Authority",
693
+ "declarationSource": {
694
+ "line": 408
695
+ },
696
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
697
+ "grammarProfile": "tiinex.lexical.shape.v1",
698
+ "startRule": "markdown-link",
699
+ "grammarRules": [
700
+ " markdown-link = \"[\" label \"](\" target \")\"",
701
+ " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
702
+ " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
703
+ ],
704
+ "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.",
705
+ "qualificationSupport": "available",
706
+ "definitionQualification": "valid",
707
+ "definitionFindings": [],
708
+ "declarationStructure": {
709
+ "value": "Markdown Link",
710
+ "children": [
711
+ {
712
+ "value": "Grammar Profile: tiinex.lexical.shape.v1",
713
+ "children": []
714
+ },
715
+ {
716
+ "value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
717
+ "children": []
718
+ },
719
+ {
720
+ "value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
721
+ "children": []
722
+ },
723
+ {
724
+ "value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
725
+ "children": []
726
+ },
727
+ {
728
+ "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.",
729
+ "children": []
730
+ },
731
+ {
732
+ "value": "Start Rule: markdown-link",
733
+ "children": []
734
+ }
735
+ ]
736
+ },
737
+ "compiledGrammar": {
738
+ "profile": "tiinex.lexical.shape.v1",
739
+ "qualification": "valid",
740
+ "startRule": "markdown-link",
741
+ "grammarRules": [
742
+ {
743
+ "name": "markdown-link",
744
+ "source": " markdown-link = \"[\" label \"](\" target \")\"",
745
+ "expression": {
746
+ "type": "concatenation",
747
+ "parts": [
748
+ {
749
+ "type": "literal",
750
+ "value": "["
751
+ },
752
+ {
753
+ "type": "reference",
754
+ "name": "label"
755
+ },
756
+ {
757
+ "type": "literal",
758
+ "value": "]("
759
+ },
760
+ {
761
+ "type": "reference",
762
+ "name": "target"
763
+ },
764
+ {
765
+ "type": "literal",
766
+ "value": ")"
767
+ }
768
+ ]
769
+ }
770
+ },
771
+ {
772
+ "name": "label",
773
+ "source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
774
+ "expression": {
775
+ "type": "repeat",
776
+ "quantifier": "+",
777
+ "expression": {
778
+ "type": "any-except",
779
+ "exclusions": [
780
+ "]",
781
+ "\t",
782
+ "\r",
783
+ "\n"
784
+ ]
785
+ }
786
+ }
787
+ },
788
+ {
789
+ "name": "target",
790
+ "source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
791
+ "expression": {
792
+ "type": "repeat",
793
+ "quantifier": "+",
794
+ "expression": {
795
+ "type": "any-except",
796
+ "exclusions": [
797
+ ")",
798
+ " ",
799
+ "\t",
800
+ "\r",
801
+ "\n"
802
+ ]
803
+ }
804
+ }
805
+ }
806
+ ],
807
+ "findings": []
808
+ }
809
+ },
810
+ "resolvedDefinitionProvenance": {
811
+ "sourceSchemaId": "tiinex.root.v1",
812
+ "sourceGroup": "Machine Shape Authority",
813
+ "declarationSource": {
814
+ "line": 408
815
+ }
816
+ },
817
+ "visibleDefinitions": [
818
+ {
819
+ "shapeLabel": "Markdown Link",
820
+ "sourceSchemaId": "tiinex.root.v1",
821
+ "sourceGroup": "Machine Shape Authority",
822
+ "declarationSource": {
823
+ "line": 408
824
+ },
825
+ "grammarProfile": "tiinex.lexical.shape.v1",
826
+ "definitionQualification": "valid",
827
+ "qualificationSupport": "available"
828
+ }
829
+ ],
830
+ "findings": []
831
+ },
832
+ {
833
+ "shapeLabel": "Plain Schema Id",
834
+ "qualification": "unresolved",
835
+ "useSourceSchemaId": "tiinex.root.v1",
836
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
837
+ "visibleSchemaIds": [
838
+ "tiinex.root.v1"
839
+ ],
840
+ "definition": null,
841
+ "resolvedDefinitionProvenance": null,
842
+ "visibleDefinitions": [],
843
+ "findings": [
844
+ "No visible Machine Shape Definition exists for exact label Plain Schema Id."
845
+ ]
846
+ }
847
+ ]
848
+ },
849
+ {
850
+ "kind": "field-shape",
851
+ "sourceSchemaId": "tiinex.root.v1",
852
+ "group": "Schema Reference Fields",
853
+ "field": "Current Schema",
854
+ "allowedShapes": [
855
+ "Markdown Link",
856
+ "Plain Schema Id"
857
+ ],
858
+ "allowedShapeAuthorities": [
859
+ {
860
+ "shapeLabel": "Markdown Link",
861
+ "qualification": "evaluable",
862
+ "useSourceSchemaId": "tiinex.root.v1",
863
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
864
+ "visibleSchemaIds": [
865
+ "tiinex.root.v1"
866
+ ],
867
+ "definition": {
868
+ "kind": "machine-shape-definition",
869
+ "shapeLabel": "Markdown Link",
870
+ "sourceSchemaId": "tiinex.root.v1",
871
+ "sourceGroup": "Machine Shape Authority",
872
+ "declarationSource": {
873
+ "line": 408
874
+ },
875
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
876
+ "grammarProfile": "tiinex.lexical.shape.v1",
877
+ "startRule": "markdown-link",
878
+ "grammarRules": [
879
+ " markdown-link = \"[\" label \"](\" target \")\"",
880
+ " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
881
+ " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
882
+ ],
883
+ "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.",
884
+ "qualificationSupport": "available",
885
+ "definitionQualification": "valid",
886
+ "definitionFindings": [],
887
+ "declarationStructure": {
888
+ "value": "Markdown Link",
889
+ "children": [
890
+ {
891
+ "value": "Grammar Profile: tiinex.lexical.shape.v1",
892
+ "children": []
893
+ },
894
+ {
895
+ "value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
896
+ "children": []
897
+ },
898
+ {
899
+ "value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
900
+ "children": []
901
+ },
902
+ {
903
+ "value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
904
+ "children": []
905
+ },
906
+ {
907
+ "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.",
908
+ "children": []
909
+ },
910
+ {
911
+ "value": "Start Rule: markdown-link",
912
+ "children": []
913
+ }
914
+ ]
915
+ },
916
+ "compiledGrammar": {
917
+ "profile": "tiinex.lexical.shape.v1",
918
+ "qualification": "valid",
919
+ "startRule": "markdown-link",
920
+ "grammarRules": [
921
+ {
922
+ "name": "markdown-link",
923
+ "source": " markdown-link = \"[\" label \"](\" target \")\"",
924
+ "expression": {
925
+ "type": "concatenation",
926
+ "parts": [
927
+ {
928
+ "type": "literal",
929
+ "value": "["
930
+ },
931
+ {
932
+ "type": "reference",
933
+ "name": "label"
934
+ },
935
+ {
936
+ "type": "literal",
937
+ "value": "]("
938
+ },
939
+ {
940
+ "type": "reference",
941
+ "name": "target"
942
+ },
943
+ {
944
+ "type": "literal",
945
+ "value": ")"
946
+ }
947
+ ]
948
+ }
949
+ },
950
+ {
951
+ "name": "label",
952
+ "source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
953
+ "expression": {
954
+ "type": "repeat",
955
+ "quantifier": "+",
956
+ "expression": {
957
+ "type": "any-except",
958
+ "exclusions": [
959
+ "]",
960
+ "\t",
961
+ "\r",
962
+ "\n"
963
+ ]
964
+ }
965
+ }
966
+ },
967
+ {
968
+ "name": "target",
969
+ "source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
970
+ "expression": {
971
+ "type": "repeat",
972
+ "quantifier": "+",
973
+ "expression": {
974
+ "type": "any-except",
975
+ "exclusions": [
976
+ ")",
977
+ " ",
978
+ "\t",
979
+ "\r",
980
+ "\n"
981
+ ]
982
+ }
983
+ }
984
+ }
985
+ ],
986
+ "findings": []
987
+ }
988
+ },
989
+ "resolvedDefinitionProvenance": {
990
+ "sourceSchemaId": "tiinex.root.v1",
991
+ "sourceGroup": "Machine Shape Authority",
992
+ "declarationSource": {
993
+ "line": 408
994
+ }
995
+ },
996
+ "visibleDefinitions": [
997
+ {
998
+ "shapeLabel": "Markdown Link",
999
+ "sourceSchemaId": "tiinex.root.v1",
1000
+ "sourceGroup": "Machine Shape Authority",
1001
+ "declarationSource": {
1002
+ "line": 408
1003
+ },
1004
+ "grammarProfile": "tiinex.lexical.shape.v1",
1005
+ "definitionQualification": "valid",
1006
+ "qualificationSupport": "available"
1007
+ }
1008
+ ],
1009
+ "findings": []
1010
+ },
1011
+ {
1012
+ "shapeLabel": "Plain Schema Id",
1013
+ "qualification": "unresolved",
1014
+ "useSourceSchemaId": "tiinex.root.v1",
1015
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
1016
+ "visibleSchemaIds": [
1017
+ "tiinex.root.v1"
1018
+ ],
1019
+ "definition": null,
1020
+ "resolvedDefinitionProvenance": null,
1021
+ "visibleDefinitions": [],
1022
+ "findings": [
1023
+ "No visible Machine Shape Definition exists for exact label Plain Schema Id."
1024
+ ]
1025
+ }
1026
+ ]
1027
+ },
1028
+ {
1029
+ "kind": "field-shape",
1030
+ "sourceSchemaId": "tiinex.root.v1",
1031
+ "group": "Trace Field",
1032
+ "field": "Trace",
1033
+ "allowedShapes": [
1034
+ "Markdown Link",
1035
+ "Relative Path"
1036
+ ],
1037
+ "allowedShapeAuthorities": [
1038
+ {
1039
+ "shapeLabel": "Markdown Link",
1040
+ "qualification": "evaluable",
1041
+ "useSourceSchemaId": "tiinex.root.v1",
1042
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
1043
+ "visibleSchemaIds": [
1044
+ "tiinex.root.v1"
1045
+ ],
1046
+ "definition": {
1047
+ "kind": "machine-shape-definition",
1048
+ "shapeLabel": "Markdown Link",
1049
+ "sourceSchemaId": "tiinex.root.v1",
1050
+ "sourceGroup": "Machine Shape Authority",
1051
+ "declarationSource": {
1052
+ "line": 408
1053
+ },
1054
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
1055
+ "grammarProfile": "tiinex.lexical.shape.v1",
1056
+ "startRule": "markdown-link",
1057
+ "grammarRules": [
1058
+ " markdown-link = \"[\" label \"](\" target \")\"",
1059
+ " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
1060
+ " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
1061
+ ],
1062
+ "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.",
1063
+ "qualificationSupport": "available",
1064
+ "definitionQualification": "valid",
1065
+ "definitionFindings": [],
1066
+ "declarationStructure": {
1067
+ "value": "Markdown Link",
1068
+ "children": [
1069
+ {
1070
+ "value": "Grammar Profile: tiinex.lexical.shape.v1",
1071
+ "children": []
1072
+ },
1073
+ {
1074
+ "value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
1075
+ "children": []
1076
+ },
1077
+ {
1078
+ "value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
1079
+ "children": []
1080
+ },
1081
+ {
1082
+ "value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
1083
+ "children": []
1084
+ },
1085
+ {
1086
+ "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.",
1087
+ "children": []
1088
+ },
1089
+ {
1090
+ "value": "Start Rule: markdown-link",
1091
+ "children": []
1092
+ }
1093
+ ]
1094
+ },
1095
+ "compiledGrammar": {
1096
+ "profile": "tiinex.lexical.shape.v1",
1097
+ "qualification": "valid",
1098
+ "startRule": "markdown-link",
1099
+ "grammarRules": [
1100
+ {
1101
+ "name": "markdown-link",
1102
+ "source": " markdown-link = \"[\" label \"](\" target \")\"",
1103
+ "expression": {
1104
+ "type": "concatenation",
1105
+ "parts": [
1106
+ {
1107
+ "type": "literal",
1108
+ "value": "["
1109
+ },
1110
+ {
1111
+ "type": "reference",
1112
+ "name": "label"
1113
+ },
1114
+ {
1115
+ "type": "literal",
1116
+ "value": "]("
1117
+ },
1118
+ {
1119
+ "type": "reference",
1120
+ "name": "target"
1121
+ },
1122
+ {
1123
+ "type": "literal",
1124
+ "value": ")"
1125
+ }
1126
+ ]
1127
+ }
1128
+ },
1129
+ {
1130
+ "name": "label",
1131
+ "source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
1132
+ "expression": {
1133
+ "type": "repeat",
1134
+ "quantifier": "+",
1135
+ "expression": {
1136
+ "type": "any-except",
1137
+ "exclusions": [
1138
+ "]",
1139
+ "\t",
1140
+ "\r",
1141
+ "\n"
1142
+ ]
1143
+ }
1144
+ }
1145
+ },
1146
+ {
1147
+ "name": "target",
1148
+ "source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
1149
+ "expression": {
1150
+ "type": "repeat",
1151
+ "quantifier": "+",
1152
+ "expression": {
1153
+ "type": "any-except",
1154
+ "exclusions": [
1155
+ ")",
1156
+ " ",
1157
+ "\t",
1158
+ "\r",
1159
+ "\n"
1160
+ ]
1161
+ }
1162
+ }
1163
+ }
1164
+ ],
1165
+ "findings": []
1166
+ }
1167
+ },
1168
+ "resolvedDefinitionProvenance": {
1169
+ "sourceSchemaId": "tiinex.root.v1",
1170
+ "sourceGroup": "Machine Shape Authority",
1171
+ "declarationSource": {
1172
+ "line": 408
1173
+ }
1174
+ },
1175
+ "visibleDefinitions": [
1176
+ {
1177
+ "shapeLabel": "Markdown Link",
1178
+ "sourceSchemaId": "tiinex.root.v1",
1179
+ "sourceGroup": "Machine Shape Authority",
1180
+ "declarationSource": {
1181
+ "line": 408
1182
+ },
1183
+ "grammarProfile": "tiinex.lexical.shape.v1",
1184
+ "definitionQualification": "valid",
1185
+ "qualificationSupport": "available"
1186
+ }
1187
+ ],
1188
+ "findings": []
1189
+ },
1190
+ {
1191
+ "shapeLabel": "Relative Path",
1192
+ "qualification": "unresolved",
1193
+ "useSourceSchemaId": "tiinex.root.v1",
1194
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
1195
+ "visibleSchemaIds": [
1196
+ "tiinex.root.v1"
1197
+ ],
1198
+ "definition": null,
1199
+ "resolvedDefinitionProvenance": null,
1200
+ "visibleDefinitions": [],
1201
+ "findings": [
1202
+ "No visible Machine Shape Definition exists for exact label Relative Path."
1203
+ ]
1204
+ }
1205
+ ]
1206
+ }
1207
+ ]
1208
+ },
1209
+ "declarations": [
1210
+ {
1211
+ "group": "Inheritance Overrides",
1212
+ "entryShape": [
1213
+ "Named Declaration"
1214
+ ],
1215
+ "requiredFields": [
1216
+ "Merge Operation",
1217
+ "Parent Schema",
1218
+ "Parent Node",
1219
+ "Child Node"
1220
+ ],
1221
+ "optionalFields": [
1222
+ "Reason",
1223
+ "Effective Result"
1224
+ ],
1225
+ "declarationFields": [],
1226
+ "allowedLabels": [],
1227
+ "allowedShapes": [],
1228
+ "targetHeadings": [],
1229
+ "allowLiteralNone": false,
1230
+ "rules": [
1231
+ "`Inheritance Overrides` is the canonical schema-local machine category for explicit inherited contract replacement.",
1232
+ "The declaration name identifies one override declaration within the declaring child schema.",
1233
+ "`Merge Operation` must be exactly `override`; unsupported operations are unresolved and must not be guessed.",
1234
+ "`Parent Schema` must resolve to an actual ancestor of the declaring child schema in the active lineage.",
1235
+ "`Parent Node` and `Child Node` each use the exact path shape `Schema Validation Contract / <third-level group> / <category label>` and must resolve exactly once.",
1236
+ "The declaring child schema is the child schema identity; no duplicate `Child Schema` field is part of the inline declaration.",
1237
+ "A qualified override deactivates only the exact addressed parent contribution and activates the exact addressed child replacement contribution while retaining declaration and contributor provenance.",
1238
+ "Competing declarations for the same exact parent contribution, malformed declarations, unresolved lineage, missing or ambiguous nodes, or non-ancestor parents are unresolved/error.",
1239
+ "Source order, filename order, directory adjacency, prose wording, and schema identity must not choose a winner.",
1240
+ "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.",
1241
+ "If Required Shape heading identity or ordinary target ownership cannot be resolved exactly, the override is unresolved rather than guessed.",
1242
+ "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."
1243
+ ]
1244
+ },
1245
+ {
1246
+ "group": "Field Value Constraints",
1247
+ "entryShape": [
1248
+ "Named Declaration"
1249
+ ],
1250
+ "requiredFields": [
1251
+ "Allowed Value",
1252
+ "Allowed Shape",
1253
+ "Domain Policy"
1254
+ ],
1255
+ "optionalFields": [],
1256
+ "declarationFields": [
1257
+ "Allowed Value",
1258
+ "Allowed Shape",
1259
+ "Domain Policy"
1260
+ ],
1261
+ "allowedLabels": [],
1262
+ "allowedShapes": [],
1263
+ "targetHeadings": [],
1264
+ "allowLiteralNone": false,
1265
+ "rules": [
1266
+ "A `Field Value Constraints` declaration binds value-domain authority to one exact contract field.",
1267
+ "The declaration name is the exact case-sensitive field label being constrained.",
1268
+ "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.",
1269
+ "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.",
1270
+ "This field-domain targeting rule does not reinterpret or broaden Root's generic `Fields` category.",
1271
+ "`Allowed Value` and `Allowed Shape` may repeat inside one declaration; their order is not semantic.",
1272
+ "Exactly one `Domain Policy` is required per declaration.",
1273
+ "`Domain Policy` must be `closed` or `extension-authorized`.",
1274
+ "Every declaration must contain at least one `Allowed Value` or `Allowed Shape`.",
1275
+ "`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.",
1276
+ "`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.",
1277
+ "A value satisfies one constraint contribution when it matches an `Allowed Value` exactly or satisfies one declared `Allowed Shape`.",
1278
+ "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.",
1279
+ "Under `closed`, a value that satisfies no declared value or shape is invalid for that contribution.",
1280
+ "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.",
1281
+ "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`.",
1282
+ "`unknown` has no global validity. It is permitted only when explicitly declared as an `Allowed Value` by every applicable constraint contribution.",
1283
+ "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.",
1284
+ "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.",
1285
+ "A descendant may narrow an inherited field domain by adding a stricter compatible contribution.",
1286
+ "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.",
1287
+ "Contradictory applicable constraints must be reported as a contract conflict and must not be silently unioned, source-ordered, or resolved by child-wins precedence.",
1288
+ "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.",
1289
+ "Existing `Allowed Labels` semantics remain unchanged. `Allowed Labels` is group-level vocabulary/readability authority and is not field-domain closure."
1290
+ ]
1291
+ },
1292
+ {
1293
+ "group": "Machine Shape Authority",
1294
+ "entryShape": [
1295
+ "Named Declaration"
1296
+ ],
1297
+ "requiredFields": [
1298
+ "Grammar Profile",
1299
+ "Start Rule",
1300
+ "Grammar Rule",
1301
+ "Human Meaning"
1302
+ ],
1303
+ "optionalFields": [],
1304
+ "declarationFields": [
1305
+ "Grammar Profile",
1306
+ "Start Rule",
1307
+ "Grammar Rule",
1308
+ "Human Meaning"
1309
+ ],
1310
+ "allowedLabels": [],
1311
+ "allowedShapes": [],
1312
+ "targetHeadings": [],
1313
+ "allowLiteralNone": false,
1314
+ "rules": [
1315
+ "`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.",
1316
+ "Each first-level entry under `Machine Shape Definitions` is one named machine-shape declaration. The declaration name is the exact case-sensitive shape label.",
1317
+ "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`.",
1318
+ "`Grammar Rule` may repeat and its ordering is not semantic. Other single-cardinality declaration fields must not repeat.",
1319
+ "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.",
1320
+ "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.",
1321
+ "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.",
1322
+ "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.",
1323
+ "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.",
1324
+ "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.",
1325
+ "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.",
1326
+ "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`.",
1327
+ "`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`.",
1328
+ "`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.",
1329
+ "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`.",
1330
+ "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.",
1331
+ "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.",
1332
+ "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`.",
1333
+ "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.",
1334
+ "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`.",
1335
+ "Postfix repetition has no greedy, lazy, capture, or backtracking semantics. An implementation may use any evaluation strategy that preserves the same accepted language.",
1336
+ "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.",
1337
+ "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.",
1338
+ "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.",
1339
+ "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`.",
1340
+ "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.",
1341
+ "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.",
1342
+ "`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`.",
1343
+ "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`.",
1344
+ "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.",
1345
+ "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.",
1346
+ "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`.",
1347
+ "Shape syntax qualification is distinct from existence, reference resolution, reachability, schema suitability, semantic suitability, truth, or authorization of any referenced target.",
1348
+ "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`.",
1349
+ "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.",
1350
+ "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."
1351
+ ]
1352
+ },
1353
+ {
1354
+ "group": "Named Declaration",
1355
+ "entryShape": [
1356
+ "First-Level Hyphen List Item"
1357
+ ],
1358
+ "requiredFields": [
1359
+ "Base Concept",
1360
+ "Interpretation"
1361
+ ],
1362
+ "optionalFields": [],
1363
+ "declarationFields": [
1364
+ "Base Concept",
1365
+ "Interpretation"
1366
+ ],
1367
+ "allowedLabels": [],
1368
+ "allowedShapes": [],
1369
+ "targetHeadings": [],
1370
+ "allowLiteralNone": false,
1371
+ "rules": [
1372
+ "Each named declaration is represented as one first-level hyphen list item.",
1373
+ "The first-level list item text is the declaration name.",
1374
+ "Declaration fields are represented as nested hyphen list items under the declaration entry.",
1375
+ "Declaration names must be unique within the same contract group.",
1376
+ "Duplicate declaration names are invalid unless a descendant schema explicitly defines override semantics."
1377
+ ]
1378
+ },
1379
+ {
1380
+ "group": "Contract Category Extension",
1381
+ "entryShape": [
1382
+ "Named Declaration"
1383
+ ],
1384
+ "requiredFields": [
1385
+ "Base Concept",
1386
+ "Interpretation"
1387
+ ],
1388
+ "optionalFields": [],
1389
+ "declarationFields": [
1390
+ "Base Concept",
1391
+ "Interpretation"
1392
+ ],
1393
+ "allowedLabels": [],
1394
+ "allowedShapes": [],
1395
+ "targetHeadings": [],
1396
+ "allowLiteralNone": false,
1397
+ "rules": [
1398
+ "Each contract category extension uses the `Named Declaration` shape.",
1399
+ "The declaration name is the new contract category label.",
1400
+ "A descendant schema must not redeclare an already inherited category label here unless it explicitly defines override semantics.",
1401
+ "A descendant schema must declare a new category label in `Contract Category Extension` before using it in its own contract.",
1402
+ "Declared category labels extend the known category label set for that schema and its descendants.",
1403
+ "Validators that do not understand a declared category label should preserve it and may warn.",
1404
+ "Strict validators may fail on undeclared category labels when the full schema lineage is available."
1405
+ ]
1406
+ },
1407
+ {
1408
+ "group": "Contract Category Override",
1409
+ "entryShape": [
1410
+ "Named Declaration"
1411
+ ],
1412
+ "requiredFields": [
1413
+ "Replacement Interpretation"
1414
+ ],
1415
+ "optionalFields": [],
1416
+ "declarationFields": [
1417
+ "Replacement Interpretation"
1418
+ ],
1419
+ "allowedLabels": [],
1420
+ "allowedShapes": [],
1421
+ "targetHeadings": [],
1422
+ "allowLiteralNone": false,
1423
+ "rules": [
1424
+ "Each contract category override uses the `Named Declaration` shape.",
1425
+ "The declaration name identifies the inherited contract category label being replaced.",
1426
+ "`Replacement Interpretation` describes how the descendant schema now interprets that inherited label.",
1427
+ "A descendant schema must not rely on an override unless it declares it here.",
1428
+ "Validators must not guess contract category overrides that are not declared here."
1429
+ ]
1430
+ },
1431
+ {
1432
+ "group": "Repairs",
1433
+ "entryShape": [
1434
+ "First-Level Hyphen List Item"
1435
+ ],
1436
+ "requiredFields": [],
1437
+ "optionalFields": [
1438
+ "Target",
1439
+ "Note",
1440
+ "Reason"
1441
+ ],
1442
+ "declarationFields": [],
1443
+ "allowedLabels": [],
1444
+ "allowedShapes": [],
1445
+ "targetHeadings": [],
1446
+ "allowLiteralNone": false,
1447
+ "rules": [
1448
+ "`Repairs` records known repairs, corrections, or trust-impacting changes to the artifact.",
1449
+ "A repair entry should state what was repaired and why.",
1450
+ "A repair entry may refer to lineage, parent, origin, current metadata, body claims, schema references, integrity, or another readable target.",
1451
+ "Structured repair entries should expose `Target`, `Note`, and `Reason` as nested fields.",
1452
+ "Free-text repair entries are allowed and must be preserved, but structured entries are preferred for tooling.",
1453
+ "`Repairs` must not silently replace `Parent`, `Trace`, `Origin`, `Current`, or `Continuity Integrity` semantics.",
1454
+ "`Repairs` does not automatically invalidate the artifact or lineage.",
1455
+ "Validators may warn when a repair entry is too vague to support audit or update tooling.",
1456
+ "Tools that update descendants because of a repair should preserve the repair note or point to the artifact that contains it."
1457
+ ]
1458
+ },
1459
+ {
1460
+ "group": "Envelope Extension",
1461
+ "entryShape": [
1462
+ "Named Declaration"
1463
+ ],
1464
+ "requiredFields": [
1465
+ "Target Block",
1466
+ "Base Concept",
1467
+ "Interpretation"
1468
+ ],
1469
+ "optionalFields": [],
1470
+ "declarationFields": [
1471
+ "Target Block",
1472
+ "Base Concept",
1473
+ "Interpretation"
1474
+ ],
1475
+ "allowedLabels": [],
1476
+ "allowedShapes": [],
1477
+ "targetHeadings": [],
1478
+ "allowLiteralNone": false,
1479
+ "rules": [
1480
+ "Each envelope extension uses the `Named Declaration` shape.",
1481
+ "The declaration name is the added envelope field name.",
1482
+ "Declaration fields are represented as nested hyphen list items under the declaration entry.",
1483
+ "Descendant schemas may add machine-readable envelope fields.",
1484
+ "Added envelope fields must declare which envelope block they extend.",
1485
+ "Root validators should preserve unknown envelope fields even when they cannot validate them.",
1486
+ "Strict validators may warn or fail on undeclared envelope fields when the full schema lineage is available."
1487
+ ]
1488
+ },
1489
+ {
1490
+ "group": "Method Entry",
1491
+ "entryShape": [
1492
+ "First-Level Hyphen List Item"
1493
+ ],
1494
+ "requiredFields": [
1495
+ "Towards",
1496
+ "Value"
1497
+ ],
1498
+ "optionalFields": [],
1499
+ "declarationFields": [],
1500
+ "allowedLabels": [],
1501
+ "allowedShapes": [
1502
+ "Plain Method Identifier",
1503
+ "Markdown Link Method Label"
1504
+ ],
1505
+ "targetHeadings": [
1506
+ "Continuity Integrity"
1507
+ ],
1508
+ "allowLiteralNone": false,
1509
+ "rules": [
1510
+ "`Method Entry` is represented by a first-level hyphen list item under `Continuity Integrity`.",
1511
+ "The `Method Entry` label names the integrity method.",
1512
+ "The `Method Entry` label may be a plain canonical method identifier or a markdown link to a validation method artifact.",
1513
+ "A markdown-link method label must use the canonical method identifier as link text.",
1514
+ "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.",
1515
+ "`Towards` identifies the validated target.",
1516
+ "`Value` carries the method output.",
1517
+ "An integrity value identifies or verifies the representation or declared continuity target covered by the named method.",
1518
+ "For content-derived self methods, changing covered content normally changes the integrity value.",
1519
+ "An integrity value does not by itself prove immutable logical artifact identity across revisions or materializations.",
1520
+ "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.",
1521
+ "For hash-based continuity methods, the validated target is hashed without the `# Continuity Integrity` section and everything after it.",
1522
+ "When `Towards` is not `self`, `Value` must be computed from the validated target identified by `Towards`, not from the current artifact body.",
1523
+ "`self` is allowed only when the method validates the current artifact itself.",
1524
+ "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."
1525
+ ]
1526
+ },
1527
+ {
1528
+ "group": "Extension",
1529
+ "entryShape": [
1530
+ "Named Declaration"
1531
+ ],
1532
+ "requiredFields": [
1533
+ "Base Concept",
1534
+ "Interpretation"
1535
+ ],
1536
+ "optionalFields": [],
1537
+ "declarationFields": [
1538
+ "Base Concept",
1539
+ "Interpretation"
1540
+ ],
1541
+ "allowedLabels": [],
1542
+ "allowedShapes": [],
1543
+ "targetHeadings": [],
1544
+ "allowLiteralNone": false,
1545
+ "rules": [
1546
+ "Each extension uses the `Named Declaration` shape.",
1547
+ "The declaration name is the extension name.",
1548
+ "Declaration fields are represented as nested hyphen list items under the declaration entry.",
1549
+ "Root defines how extensions are introduced.",
1550
+ "Root does not define all future extensions."
1551
+ ]
1552
+ }
1553
+ ],
1554
+ "constraints": [
1555
+ {
1556
+ "kind": "field-domain",
1557
+ "sourceSchemaId": "tiinex.root.v1",
1558
+ "sourceGroup": "Inheritance Overrides",
1559
+ "field": "Merge Operation",
1560
+ "allowedValues": [
1561
+ "override"
1562
+ ],
1563
+ "allowedShapes": [],
1564
+ "domainPolicy": "closed",
1565
+ "declarationLine": 269,
1566
+ "declarationQualification": "valid",
1567
+ "declarationFindings": [],
1568
+ "targetMode": "local",
1569
+ "targetOwnership": "source-local",
1570
+ "ownershipSourceSchemaIds": [
1571
+ "tiinex.root.v1"
1572
+ ],
1573
+ "targetGroup": "Inheritance Overrides",
1574
+ "appliesToTarget": "",
1575
+ "authorityQualification": "valid",
1576
+ "authorityFindings": [],
1577
+ "allowedShapeAuthorities": []
1578
+ }
1579
+ ],
1580
+ "machineShapes": {
1581
+ "schema": "tiinex.portable.machine-shape-authority.v1",
1582
+ "definitions": [
1583
+ {
1584
+ "kind": "machine-shape-definition",
1585
+ "shapeLabel": "Markdown Link",
1586
+ "sourceSchemaId": "tiinex.root.v1",
1587
+ "sourceGroup": "Machine Shape Authority",
1588
+ "declarationSource": {
1589
+ "line": 408
1590
+ },
1591
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
1592
+ "grammarProfile": "tiinex.lexical.shape.v1",
1593
+ "startRule": "markdown-link",
1594
+ "grammarRules": [
1595
+ " markdown-link = \"[\" label \"](\" target \")\"",
1596
+ " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
1597
+ " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
1598
+ ],
1599
+ "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.",
1600
+ "qualificationSupport": "available",
1601
+ "definitionQualification": "valid",
1602
+ "definitionFindings": [],
1603
+ "declarationStructure": {
1604
+ "value": "Markdown Link",
1605
+ "children": [
1606
+ {
1607
+ "value": "Grammar Profile: tiinex.lexical.shape.v1",
1608
+ "children": []
1609
+ },
1610
+ {
1611
+ "value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
1612
+ "children": []
1613
+ },
1614
+ {
1615
+ "value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
1616
+ "children": []
1617
+ },
1618
+ {
1619
+ "value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
1620
+ "children": []
1621
+ },
1622
+ {
1623
+ "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.",
1624
+ "children": []
1625
+ },
1626
+ {
1627
+ "value": "Start Rule: markdown-link",
1628
+ "children": []
1629
+ }
1630
+ ]
1631
+ },
1632
+ "compiledGrammar": {
1633
+ "profile": "tiinex.lexical.shape.v1",
1634
+ "qualification": "valid",
1635
+ "startRule": "markdown-link",
1636
+ "grammarRules": [
1637
+ {
1638
+ "name": "markdown-link",
1639
+ "source": " markdown-link = \"[\" label \"](\" target \")\"",
1640
+ "expression": {
1641
+ "type": "concatenation",
1642
+ "parts": [
1643
+ {
1644
+ "type": "literal",
1645
+ "value": "["
1646
+ },
1647
+ {
1648
+ "type": "reference",
1649
+ "name": "label"
1650
+ },
1651
+ {
1652
+ "type": "literal",
1653
+ "value": "]("
1654
+ },
1655
+ {
1656
+ "type": "reference",
1657
+ "name": "target"
1658
+ },
1659
+ {
1660
+ "type": "literal",
1661
+ "value": ")"
1662
+ }
1663
+ ]
1664
+ }
1665
+ },
1666
+ {
1667
+ "name": "label",
1668
+ "source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
1669
+ "expression": {
1670
+ "type": "repeat",
1671
+ "quantifier": "+",
1672
+ "expression": {
1673
+ "type": "any-except",
1674
+ "exclusions": [
1675
+ "]",
1676
+ "\t",
1677
+ "\r",
1678
+ "\n"
1679
+ ]
1680
+ }
1681
+ }
1682
+ },
1683
+ {
1684
+ "name": "target",
1685
+ "source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
1686
+ "expression": {
1687
+ "type": "repeat",
1688
+ "quantifier": "+",
1689
+ "expression": {
1690
+ "type": "any-except",
1691
+ "exclusions": [
1692
+ ")",
1693
+ " ",
1694
+ "\t",
1695
+ "\r",
1696
+ "\n"
1697
+ ]
1698
+ }
1699
+ }
1700
+ }
1701
+ ],
1702
+ "findings": []
1703
+ }
1704
+ }
1705
+ ],
1706
+ "active": [
1707
+ {
1708
+ "shapeLabel": "Markdown Link",
1709
+ "qualification": "evaluable",
1710
+ "useSourceSchemaId": "tiinex.party.v1",
1711
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
1712
+ "visibleSchemaIds": [
1713
+ "tiinex.root.v1",
1714
+ "tiinex.party.v1"
1715
+ ],
1716
+ "definition": {
1717
+ "kind": "machine-shape-definition",
1718
+ "shapeLabel": "Markdown Link",
1719
+ "sourceSchemaId": "tiinex.root.v1",
1720
+ "sourceGroup": "Machine Shape Authority",
1721
+ "declarationSource": {
1722
+ "line": 408
1723
+ },
1724
+ "visibilityPolicy": "lineage-prefix-ancestors-and-same-source",
1725
+ "grammarProfile": "tiinex.lexical.shape.v1",
1726
+ "startRule": "markdown-link",
1727
+ "grammarRules": [
1728
+ " markdown-link = \"[\" label \"](\" target \")\"",
1729
+ " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
1730
+ " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+"
1731
+ ],
1732
+ "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.",
1733
+ "qualificationSupport": "available",
1734
+ "definitionQualification": "valid",
1735
+ "definitionFindings": [],
1736
+ "declarationStructure": {
1737
+ "value": "Markdown Link",
1738
+ "children": [
1739
+ {
1740
+ "value": "Grammar Profile: tiinex.lexical.shape.v1",
1741
+ "children": []
1742
+ },
1743
+ {
1744
+ "value": "Grammar Rule: label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
1745
+ "children": []
1746
+ },
1747
+ {
1748
+ "value": "Grammar Rule: markdown-link = \"[\" label \"](\" target \")\"",
1749
+ "children": []
1750
+ },
1751
+ {
1752
+ "value": "Grammar Rule: target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
1753
+ "children": []
1754
+ },
1755
+ {
1756
+ "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.",
1757
+ "children": []
1758
+ },
1759
+ {
1760
+ "value": "Start Rule: markdown-link",
1761
+ "children": []
1762
+ }
1763
+ ]
1764
+ },
1765
+ "compiledGrammar": {
1766
+ "profile": "tiinex.lexical.shape.v1",
1767
+ "qualification": "valid",
1768
+ "startRule": "markdown-link",
1769
+ "grammarRules": [
1770
+ {
1771
+ "name": "markdown-link",
1772
+ "source": " markdown-link = \"[\" label \"](\" target \")\"",
1773
+ "expression": {
1774
+ "type": "concatenation",
1775
+ "parts": [
1776
+ {
1777
+ "type": "literal",
1778
+ "value": "["
1779
+ },
1780
+ {
1781
+ "type": "reference",
1782
+ "name": "label"
1783
+ },
1784
+ {
1785
+ "type": "literal",
1786
+ "value": "]("
1787
+ },
1788
+ {
1789
+ "type": "reference",
1790
+ "name": "target"
1791
+ },
1792
+ {
1793
+ "type": "literal",
1794
+ "value": ")"
1795
+ }
1796
+ ]
1797
+ }
1798
+ },
1799
+ {
1800
+ "name": "label",
1801
+ "source": " label = ANY-EXCEPT(\"]\", TAB, CR, LF)+",
1802
+ "expression": {
1803
+ "type": "repeat",
1804
+ "quantifier": "+",
1805
+ "expression": {
1806
+ "type": "any-except",
1807
+ "exclusions": [
1808
+ "]",
1809
+ "\t",
1810
+ "\r",
1811
+ "\n"
1812
+ ]
1813
+ }
1814
+ }
1815
+ },
1816
+ {
1817
+ "name": "target",
1818
+ "source": " target = ANY-EXCEPT(\")\", SPACE, TAB, CR, LF)+",
1819
+ "expression": {
1820
+ "type": "repeat",
1821
+ "quantifier": "+",
1822
+ "expression": {
1823
+ "type": "any-except",
1824
+ "exclusions": [
1825
+ ")",
1826
+ " ",
1827
+ "\t",
1828
+ "\r",
1829
+ "\n"
1830
+ ]
1831
+ }
1832
+ }
1833
+ }
1834
+ ],
1835
+ "findings": []
1836
+ }
1837
+ },
1838
+ "resolvedDefinitionProvenance": {
1839
+ "sourceSchemaId": "tiinex.root.v1",
1840
+ "sourceGroup": "Machine Shape Authority",
1841
+ "declarationSource": {
1842
+ "line": 408
1843
+ }
1844
+ },
1845
+ "visibleDefinitions": [
1846
+ {
1847
+ "shapeLabel": "Markdown Link",
1848
+ "sourceSchemaId": "tiinex.root.v1",
1849
+ "sourceGroup": "Machine Shape Authority",
1850
+ "declarationSource": {
1851
+ "line": 408
1852
+ },
1853
+ "grammarProfile": "tiinex.lexical.shape.v1",
1854
+ "definitionQualification": "valid",
1855
+ "qualificationSupport": "available"
1856
+ }
1857
+ ],
1858
+ "findings": []
1859
+ }
1860
+ ],
1861
+ "findings": []
1862
+ },
1863
+ "lineageAuthority": [
1864
+ {
1865
+ "schemaId": "tiinex.root.v1",
1866
+ "source": {
1867
+ "repository": "Tiinex/docs",
1868
+ "commit": "3988951208eb9a8926e84ab42625d4b42fa00c2d",
1869
+ "path": ".topics/.schemas/tiinex.root.v1.schema.md",
1870
+ "publicationState": "accepted-local-unpublished",
1871
+ "snapshotCompleteness": "exact-axiom-canonical-unpublished-bounded-workspace-contract"
1872
+ },
1873
+ "parentSchemaId": "",
1874
+ "parentSourceCandidates": []
1875
+ },
1876
+ {
1877
+ "schemaId": "tiinex.party.v1",
1878
+ "source": {
1879
+ "repository": "Tiinex/docs",
1880
+ "commit": "3988951208eb9a8926e84ab42625d4b42fa00c2d",
1881
+ "path": ".topics/.schemas/party/tiinex.party.v1.schema.md",
1882
+ "publicationState": "",
1883
+ "snapshotCompleteness": "exact-carried-docs-snapshot"
1884
+ },
1885
+ "parentSchemaId": "tiinex.root.v1",
1886
+ "parentSourceCandidates": [
1887
+ {
1888
+ "provider": "github",
1889
+ "repository": "Tiinex/docs",
1890
+ "commit": "2a40646640f7468bcd250df6988b69e9f047f1bb",
1891
+ "path": ".topics/.schemas/tiinex.root.v1.schema.md"
1892
+ }
1893
+ ]
1894
+ }
1895
+ ]
1896
+ },
1897
+ "creation": {
1898
+ "declared": true,
1899
+ "groupNames": [
1900
+ "Creation Fields",
1901
+ "Creation Rules"
1902
+ ],
1903
+ "requiredInputs": [
1904
+ "Party Label",
1905
+ "Party Kind",
1906
+ "In Scope",
1907
+ "Out Of Scope",
1908
+ "Capacity",
1909
+ "Capacity Context",
1910
+ "Reference Safety",
1911
+ "Disclosure Boundary",
1912
+ "Usable As",
1913
+ "Must Reference Separately",
1914
+ "Does Not Prove",
1915
+ "Must Not Be Treated As"
1916
+ ],
1917
+ "optionalInputs": [],
1918
+ "requiredSections": [],
1919
+ "toolingConfigurationFields": [],
1920
+ "inputBindings": [
1921
+ {
1922
+ "input": "Party Label",
1923
+ "kind": "ordinary-field",
1924
+ "section": "Party Identity",
1925
+ "group": "Party Identity",
1926
+ "field": "Party Label",
1927
+ "sourceSchemaId": "tiinex.party.v1",
1928
+ "requirement": "required"
1929
+ },
1930
+ {
1931
+ "input": "Party Kind",
1932
+ "kind": "ordinary-field",
1933
+ "section": "Party Identity",
1934
+ "group": "Party Identity",
1935
+ "field": "Party Kind",
1936
+ "sourceSchemaId": "tiinex.party.v1",
1937
+ "requirement": "required"
1938
+ },
1939
+ {
1940
+ "input": "In Scope",
1941
+ "kind": "ordinary-field",
1942
+ "section": "Party Boundary",
1943
+ "group": "Party Boundary",
1944
+ "field": "In Scope",
1945
+ "sourceSchemaId": "tiinex.party.v1",
1946
+ "requirement": "required"
1947
+ },
1948
+ {
1949
+ "input": "Out Of Scope",
1950
+ "kind": "ordinary-field",
1951
+ "section": "Party Boundary",
1952
+ "group": "Party Boundary",
1953
+ "field": "Out Of Scope",
1954
+ "sourceSchemaId": "tiinex.party.v1",
1955
+ "requirement": "required"
1956
+ },
1957
+ {
1958
+ "input": "Capacity",
1959
+ "kind": "ordinary-field",
1960
+ "section": "Role Or Capacity",
1961
+ "group": "Role Or Capacity",
1962
+ "field": "Capacity",
1963
+ "sourceSchemaId": "tiinex.party.v1",
1964
+ "requirement": "required"
1965
+ },
1966
+ {
1967
+ "input": "Capacity Context",
1968
+ "kind": "ordinary-field",
1969
+ "section": "Role Or Capacity",
1970
+ "group": "Role Or Capacity",
1971
+ "field": "Capacity Context",
1972
+ "sourceSchemaId": "tiinex.party.v1",
1973
+ "requirement": "required"
1974
+ },
1975
+ {
1976
+ "input": "Reference Safety",
1977
+ "kind": "ordinary-field",
1978
+ "section": "Reference And Privacy Boundary",
1979
+ "group": "Reference And Privacy Boundary",
1980
+ "field": "Reference Safety",
1981
+ "sourceSchemaId": "tiinex.party.v1",
1982
+ "requirement": "required"
1983
+ },
1984
+ {
1985
+ "input": "Disclosure Boundary",
1986
+ "kind": "ordinary-field",
1987
+ "section": "Reference And Privacy Boundary",
1988
+ "group": "Reference And Privacy Boundary",
1989
+ "field": "Disclosure Boundary",
1990
+ "sourceSchemaId": "tiinex.party.v1",
1991
+ "requirement": "required"
1992
+ },
1993
+ {
1994
+ "input": "Usable As",
1995
+ "kind": "ordinary-field",
1996
+ "section": "Use With Other Schemas",
1997
+ "group": "Use With Other Schemas",
1998
+ "field": "Usable As",
1999
+ "sourceSchemaId": "tiinex.party.v1",
2000
+ "requirement": "required"
2001
+ },
2002
+ {
2003
+ "input": "Must Reference Separately",
2004
+ "kind": "ordinary-field",
2005
+ "section": "Use With Other Schemas",
2006
+ "group": "Use With Other Schemas",
2007
+ "field": "Must Reference Separately",
2008
+ "sourceSchemaId": "tiinex.party.v1",
2009
+ "requirement": "required"
2010
+ },
2011
+ {
2012
+ "input": "Does Not Prove",
2013
+ "kind": "ordinary-field",
2014
+ "section": "Interpretation Limits",
2015
+ "group": "Interpretation Limits",
2016
+ "field": "Does Not Prove",
2017
+ "sourceSchemaId": "tiinex.party.v1",
2018
+ "requirement": "required"
2019
+ },
2020
+ {
2021
+ "input": "Must Not Be Treated As",
2022
+ "kind": "ordinary-field",
2023
+ "section": "Interpretation Limits",
2024
+ "group": "Interpretation Limits",
2025
+ "field": "Must Not Be Treated As",
2026
+ "sourceSchemaId": "tiinex.party.v1",
2027
+ "requirement": "required"
2028
+ }
2029
+ ],
2030
+ "supplementalRequiredFields": [],
2031
+ "requiredShape": []
2032
+ }
2033
+ }