Skip to content

Commit d79568e

Browse files
committed
Fix: logical kind recognition.
1 parent 2efb962 commit d79568e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/typeschema/core/identifier.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ function determineKind(fhirSchema: RichFHIRSchema): Identifier["kind"] {
3131
if (fhirSchema.kind === "primitive-type") return "primitive-type";
3232
if (fhirSchema.kind === "complex-type") return "complex-type";
3333
if (fhirSchema.kind === "resource") return "resource";
34+
if (fhirSchema.kind === "logical") return "logical";
3435
return "resource";
3536
}
3637

0 commit comments

Comments
 (0)