(specHash: string)
| 93 | /** Blob key for a spec's content hash. Content-addressed so re-puts are |
| 94 | * idempotent and identical specs share one blob per partition. */ |
| 95 | export const specBlobKey = (specHash: string): string => `spec/${specHash}`; |
| 96 | |
| 97 | /** Blob key for a spec's compiled `#/$defs/*` schemas, keyed by the same |
| 98 | * content hash as the spec. The serve path reads this instead of re-parsing |
no outgoing calls
no test coverage detected