@digitalmedika/satusehat 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +120 -2
- package/dist/builders/chest-xray-study-builder.d.ts +16 -0
- package/dist/builders/encounter-builder.d.ts +124 -0
- package/dist/builders/encounter-condition-builder.d.ts +28 -0
- package/dist/builders/risk-assessment-builder.d.ts +39 -0
- package/dist/builders/service-request-imaging-study-diagnostic-report-builder.d.ts +49 -0
- package/dist/client/create-client.d.ts +1 -0
- package/dist/client/transport.d.ts +9 -0
- package/dist/core/types.d.ts +160 -0
- package/dist/endpoints/allergy-intolerance.d.ts +720 -0
- package/dist/endpoints/clinical-impression.d.ts +530 -0
- package/dist/endpoints/composition.d.ts +3 -0
- package/dist/endpoints/condition.d.ts +195 -195
- package/dist/endpoints/diagnostic-report.d.ts +70 -70
- package/dist/endpoints/dicom-router.d.ts +6 -0
- package/dist/endpoints/encounter.d.ts +156 -115
- package/dist/endpoints/imaging-study.d.ts +790 -0
- package/dist/endpoints/location.d.ts +30 -30
- package/dist/endpoints/medication-administration.d.ts +910 -0
- package/dist/endpoints/medication-request.d.ts +260 -260
- package/dist/endpoints/nutrition-order.d.ts +1510 -0
- package/dist/endpoints/observation.d.ts +230 -230
- package/dist/endpoints/organization.d.ts +20 -20
- package/dist/endpoints/practitioner-role.d.ts +25 -25
- package/dist/endpoints/procedure.d.ts +215 -215
- package/dist/endpoints/questionnaire-response.d.ts +195 -0
- package/dist/endpoints/risk-assessment.d.ts +770 -0
- package/dist/endpoints/service-request.d.ts +190 -190
- package/dist/endpoints/specimen.d.ts +105 -105
- package/dist/index.d.ts +21 -3
- package/dist/index.js +15 -1
- package/dist/schemas/allergy-intolerance.d.ts +4148 -0
- package/dist/schemas/clinical-impression.d.ts +2666 -0
- package/dist/schemas/composition.d.ts +2914 -0
- package/dist/schemas/condition.d.ts +476 -476
- package/dist/schemas/diagnostic-report.d.ts +172 -172
- package/dist/schemas/encounter.d.ts +1124 -564
- package/dist/schemas/imaging-study.d.ts +4609 -0
- package/dist/schemas/location.d.ts +72 -72
- package/dist/schemas/medication-administration.d.ts +5420 -0
- package/dist/schemas/medication-request.d.ts +1083 -1083
- package/dist/schemas/nutrition-order.d.ts +12261 -0
- package/dist/schemas/observation.d.ts +598 -598
- package/dist/schemas/organization.d.ts +60 -60
- package/dist/schemas/practitioner-role.d.ts +60 -60
- package/dist/schemas/procedure.d.ts +536 -536
- package/dist/schemas/questionnaire-response.d.ts +939 -0
- package/dist/schemas/risk-assessment.d.ts +4591 -0
- package/dist/schemas/service-request.d.ts +470 -470
- package/dist/schemas/specimen.d.ts +312 -312
- package/package.json +8 -1
|
@@ -304,7 +304,7 @@ export declare const SpecimenCollectionSchema: z.ZodObject<{
|
|
|
304
304
|
unit?: string | undefined;
|
|
305
305
|
}>>;
|
|
306
306
|
}, "strip", z.ZodTypeAny, {
|
|
307
|
-
|
|
307
|
+
method?: {
|
|
308
308
|
coding?: {
|
|
309
309
|
code?: string | undefined;
|
|
310
310
|
system?: string | undefined;
|
|
@@ -312,7 +312,7 @@ export declare const SpecimenCollectionSchema: z.ZodObject<{
|
|
|
312
312
|
}[] | undefined;
|
|
313
313
|
text?: string | undefined;
|
|
314
314
|
} | undefined;
|
|
315
|
-
|
|
315
|
+
bodySite?: {
|
|
316
316
|
coding?: {
|
|
317
317
|
code?: string | undefined;
|
|
318
318
|
system?: string | undefined;
|
|
@@ -357,7 +357,7 @@ export declare const SpecimenCollectionSchema: z.ZodObject<{
|
|
|
357
357
|
unit?: string | undefined;
|
|
358
358
|
} | undefined;
|
|
359
359
|
}, {
|
|
360
|
-
|
|
360
|
+
method?: {
|
|
361
361
|
coding?: {
|
|
362
362
|
code?: string | undefined;
|
|
363
363
|
system?: string | undefined;
|
|
@@ -365,7 +365,7 @@ export declare const SpecimenCollectionSchema: z.ZodObject<{
|
|
|
365
365
|
}[] | undefined;
|
|
366
366
|
text?: string | undefined;
|
|
367
367
|
} | undefined;
|
|
368
|
-
|
|
368
|
+
bodySite?: {
|
|
369
369
|
coding?: {
|
|
370
370
|
code?: string | undefined;
|
|
371
371
|
system?: string | undefined;
|
|
@@ -757,6 +757,11 @@ export declare const SpecimenExtensionSchema: z.ZodObject<{
|
|
|
757
757
|
}, "strip", z.ZodTypeAny, {
|
|
758
758
|
url: string;
|
|
759
759
|
valueDateTime?: string | undefined;
|
|
760
|
+
valueReference?: {
|
|
761
|
+
reference: string;
|
|
762
|
+
type?: string | undefined;
|
|
763
|
+
display?: string | undefined;
|
|
764
|
+
} | undefined;
|
|
760
765
|
valueContactDetail?: {
|
|
761
766
|
name?: string | undefined;
|
|
762
767
|
telecom?: {
|
|
@@ -765,14 +770,14 @@ export declare const SpecimenExtensionSchema: z.ZodObject<{
|
|
|
765
770
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
766
771
|
}[] | undefined;
|
|
767
772
|
} | undefined;
|
|
773
|
+
}, {
|
|
774
|
+
url: string;
|
|
775
|
+
valueDateTime?: string | undefined;
|
|
768
776
|
valueReference?: {
|
|
769
777
|
reference: string;
|
|
770
778
|
type?: string | undefined;
|
|
771
779
|
display?: string | undefined;
|
|
772
780
|
} | undefined;
|
|
773
|
-
}, {
|
|
774
|
-
url: string;
|
|
775
|
-
valueDateTime?: string | undefined;
|
|
776
781
|
valueContactDetail?: {
|
|
777
782
|
name?: string | undefined;
|
|
778
783
|
telecom?: {
|
|
@@ -781,11 +786,6 @@ export declare const SpecimenExtensionSchema: z.ZodObject<{
|
|
|
781
786
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
782
787
|
}[] | undefined;
|
|
783
788
|
} | undefined;
|
|
784
|
-
valueReference?: {
|
|
785
|
-
reference: string;
|
|
786
|
-
type?: string | undefined;
|
|
787
|
-
display?: string | undefined;
|
|
788
|
-
} | undefined;
|
|
789
789
|
}>;
|
|
790
790
|
export declare const SpecimenPatchOperationSchema: z.ZodObject<{
|
|
791
791
|
op: z.ZodLiteral<"replace">;
|
|
@@ -1099,7 +1099,7 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1099
1099
|
unit?: string | undefined;
|
|
1100
1100
|
}>>;
|
|
1101
1101
|
}, "strip", z.ZodTypeAny, {
|
|
1102
|
-
|
|
1102
|
+
method?: {
|
|
1103
1103
|
coding?: {
|
|
1104
1104
|
code?: string | undefined;
|
|
1105
1105
|
system?: string | undefined;
|
|
@@ -1107,7 +1107,7 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1107
1107
|
}[] | undefined;
|
|
1108
1108
|
text?: string | undefined;
|
|
1109
1109
|
} | undefined;
|
|
1110
|
-
|
|
1110
|
+
bodySite?: {
|
|
1111
1111
|
coding?: {
|
|
1112
1112
|
code?: string | undefined;
|
|
1113
1113
|
system?: string | undefined;
|
|
@@ -1152,7 +1152,7 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1152
1152
|
unit?: string | undefined;
|
|
1153
1153
|
} | undefined;
|
|
1154
1154
|
}, {
|
|
1155
|
-
|
|
1155
|
+
method?: {
|
|
1156
1156
|
coding?: {
|
|
1157
1157
|
code?: string | undefined;
|
|
1158
1158
|
system?: string | undefined;
|
|
@@ -1160,7 +1160,7 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1160
1160
|
}[] | undefined;
|
|
1161
1161
|
text?: string | undefined;
|
|
1162
1162
|
} | undefined;
|
|
1163
|
-
|
|
1163
|
+
bodySite?: {
|
|
1164
1164
|
coding?: {
|
|
1165
1165
|
code?: string | undefined;
|
|
1166
1166
|
system?: string | undefined;
|
|
@@ -1618,6 +1618,11 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1618
1618
|
}, "strip", z.ZodTypeAny, {
|
|
1619
1619
|
url: string;
|
|
1620
1620
|
valueDateTime?: string | undefined;
|
|
1621
|
+
valueReference?: {
|
|
1622
|
+
reference: string;
|
|
1623
|
+
type?: string | undefined;
|
|
1624
|
+
display?: string | undefined;
|
|
1625
|
+
} | undefined;
|
|
1621
1626
|
valueContactDetail?: {
|
|
1622
1627
|
name?: string | undefined;
|
|
1623
1628
|
telecom?: {
|
|
@@ -1626,14 +1631,14 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1626
1631
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
1627
1632
|
}[] | undefined;
|
|
1628
1633
|
} | undefined;
|
|
1634
|
+
}, {
|
|
1635
|
+
url: string;
|
|
1636
|
+
valueDateTime?: string | undefined;
|
|
1629
1637
|
valueReference?: {
|
|
1630
1638
|
reference: string;
|
|
1631
1639
|
type?: string | undefined;
|
|
1632
1640
|
display?: string | undefined;
|
|
1633
1641
|
} | undefined;
|
|
1634
|
-
}, {
|
|
1635
|
-
url: string;
|
|
1636
|
-
valueDateTime?: string | undefined;
|
|
1637
1642
|
valueContactDetail?: {
|
|
1638
1643
|
name?: string | undefined;
|
|
1639
1644
|
telecom?: {
|
|
@@ -1642,11 +1647,6 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1642
1647
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
1643
1648
|
}[] | undefined;
|
|
1644
1649
|
} | undefined;
|
|
1645
|
-
valueReference?: {
|
|
1646
|
-
reference: string;
|
|
1647
|
-
type?: string | undefined;
|
|
1648
|
-
display?: string | undefined;
|
|
1649
|
-
} | undefined;
|
|
1650
1650
|
}>, "many">>;
|
|
1651
1651
|
}, "strip", z.ZodTypeAny, {
|
|
1652
1652
|
type: {
|
|
@@ -1667,6 +1667,11 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1667
1667
|
extension?: {
|
|
1668
1668
|
url: string;
|
|
1669
1669
|
valueDateTime?: string | undefined;
|
|
1670
|
+
valueReference?: {
|
|
1671
|
+
reference: string;
|
|
1672
|
+
type?: string | undefined;
|
|
1673
|
+
display?: string | undefined;
|
|
1674
|
+
} | undefined;
|
|
1670
1675
|
valueContactDetail?: {
|
|
1671
1676
|
name?: string | undefined;
|
|
1672
1677
|
telecom?: {
|
|
@@ -1675,11 +1680,6 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1675
1680
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
1676
1681
|
}[] | undefined;
|
|
1677
1682
|
} | undefined;
|
|
1678
|
-
valueReference?: {
|
|
1679
|
-
reference: string;
|
|
1680
|
-
type?: string | undefined;
|
|
1681
|
-
display?: string | undefined;
|
|
1682
|
-
} | undefined;
|
|
1683
1683
|
}[] | undefined;
|
|
1684
1684
|
identifier?: {
|
|
1685
1685
|
value: string;
|
|
@@ -1696,24 +1696,32 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1696
1696
|
authorString?: string | undefined;
|
|
1697
1697
|
time?: string | undefined;
|
|
1698
1698
|
}[] | undefined;
|
|
1699
|
-
accessionIdentifier?: {
|
|
1700
|
-
value?: string | undefined;
|
|
1701
|
-
system?: string | undefined;
|
|
1702
|
-
use?: string | undefined;
|
|
1703
|
-
} | undefined;
|
|
1704
|
-
receivedTime?: string | undefined;
|
|
1705
1699
|
parent?: {
|
|
1706
1700
|
reference: string;
|
|
1707
1701
|
type?: string | undefined;
|
|
1708
1702
|
display?: string | undefined;
|
|
1709
1703
|
}[] | undefined;
|
|
1704
|
+
condition?: {
|
|
1705
|
+
coding?: {
|
|
1706
|
+
code?: string | undefined;
|
|
1707
|
+
system?: string | undefined;
|
|
1708
|
+
display?: string | undefined;
|
|
1709
|
+
}[] | undefined;
|
|
1710
|
+
text?: string | undefined;
|
|
1711
|
+
}[] | undefined;
|
|
1710
1712
|
request?: {
|
|
1711
1713
|
reference: string;
|
|
1712
1714
|
type?: string | undefined;
|
|
1713
1715
|
display?: string | undefined;
|
|
1714
1716
|
}[] | undefined;
|
|
1717
|
+
accessionIdentifier?: {
|
|
1718
|
+
value?: string | undefined;
|
|
1719
|
+
system?: string | undefined;
|
|
1720
|
+
use?: string | undefined;
|
|
1721
|
+
} | undefined;
|
|
1722
|
+
receivedTime?: string | undefined;
|
|
1715
1723
|
collection?: {
|
|
1716
|
-
|
|
1724
|
+
method?: {
|
|
1717
1725
|
coding?: {
|
|
1718
1726
|
code?: string | undefined;
|
|
1719
1727
|
system?: string | undefined;
|
|
@@ -1721,7 +1729,7 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1721
1729
|
}[] | undefined;
|
|
1722
1730
|
text?: string | undefined;
|
|
1723
1731
|
} | undefined;
|
|
1724
|
-
|
|
1732
|
+
bodySite?: {
|
|
1725
1733
|
coding?: {
|
|
1726
1734
|
code?: string | undefined;
|
|
1727
1735
|
system?: string | undefined;
|
|
@@ -1828,14 +1836,6 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1828
1836
|
display?: string | undefined;
|
|
1829
1837
|
} | undefined;
|
|
1830
1838
|
}[] | undefined;
|
|
1831
|
-
condition?: {
|
|
1832
|
-
coding?: {
|
|
1833
|
-
code?: string | undefined;
|
|
1834
|
-
system?: string | undefined;
|
|
1835
|
-
display?: string | undefined;
|
|
1836
|
-
}[] | undefined;
|
|
1837
|
-
text?: string | undefined;
|
|
1838
|
-
}[] | undefined;
|
|
1839
1839
|
}, {
|
|
1840
1840
|
type: {
|
|
1841
1841
|
coding: {
|
|
@@ -1855,6 +1855,11 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1855
1855
|
extension?: {
|
|
1856
1856
|
url: string;
|
|
1857
1857
|
valueDateTime?: string | undefined;
|
|
1858
|
+
valueReference?: {
|
|
1859
|
+
reference: string;
|
|
1860
|
+
type?: string | undefined;
|
|
1861
|
+
display?: string | undefined;
|
|
1862
|
+
} | undefined;
|
|
1858
1863
|
valueContactDetail?: {
|
|
1859
1864
|
name?: string | undefined;
|
|
1860
1865
|
telecom?: {
|
|
@@ -1863,11 +1868,6 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1863
1868
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
1864
1869
|
}[] | undefined;
|
|
1865
1870
|
} | undefined;
|
|
1866
|
-
valueReference?: {
|
|
1867
|
-
reference: string;
|
|
1868
|
-
type?: string | undefined;
|
|
1869
|
-
display?: string | undefined;
|
|
1870
|
-
} | undefined;
|
|
1871
1871
|
}[] | undefined;
|
|
1872
1872
|
identifier?: {
|
|
1873
1873
|
value: string;
|
|
@@ -1884,24 +1884,32 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1884
1884
|
authorString?: string | undefined;
|
|
1885
1885
|
time?: string | undefined;
|
|
1886
1886
|
}[] | undefined;
|
|
1887
|
-
accessionIdentifier?: {
|
|
1888
|
-
value?: string | undefined;
|
|
1889
|
-
system?: string | undefined;
|
|
1890
|
-
use?: string | undefined;
|
|
1891
|
-
} | undefined;
|
|
1892
|
-
receivedTime?: string | undefined;
|
|
1893
1887
|
parent?: {
|
|
1894
1888
|
reference: string;
|
|
1895
1889
|
type?: string | undefined;
|
|
1896
1890
|
display?: string | undefined;
|
|
1897
1891
|
}[] | undefined;
|
|
1892
|
+
condition?: {
|
|
1893
|
+
coding?: {
|
|
1894
|
+
code?: string | undefined;
|
|
1895
|
+
system?: string | undefined;
|
|
1896
|
+
display?: string | undefined;
|
|
1897
|
+
}[] | undefined;
|
|
1898
|
+
text?: string | undefined;
|
|
1899
|
+
}[] | undefined;
|
|
1898
1900
|
request?: {
|
|
1899
1901
|
reference: string;
|
|
1900
1902
|
type?: string | undefined;
|
|
1901
1903
|
display?: string | undefined;
|
|
1902
1904
|
}[] | undefined;
|
|
1905
|
+
accessionIdentifier?: {
|
|
1906
|
+
value?: string | undefined;
|
|
1907
|
+
system?: string | undefined;
|
|
1908
|
+
use?: string | undefined;
|
|
1909
|
+
} | undefined;
|
|
1910
|
+
receivedTime?: string | undefined;
|
|
1903
1911
|
collection?: {
|
|
1904
|
-
|
|
1912
|
+
method?: {
|
|
1905
1913
|
coding?: {
|
|
1906
1914
|
code?: string | undefined;
|
|
1907
1915
|
system?: string | undefined;
|
|
@@ -1909,7 +1917,7 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
1909
1917
|
}[] | undefined;
|
|
1910
1918
|
text?: string | undefined;
|
|
1911
1919
|
} | undefined;
|
|
1912
|
-
|
|
1920
|
+
bodySite?: {
|
|
1913
1921
|
coding?: {
|
|
1914
1922
|
code?: string | undefined;
|
|
1915
1923
|
system?: string | undefined;
|
|
@@ -2016,14 +2024,6 @@ export declare const SpecimenBaseSchema: z.ZodObject<{
|
|
|
2016
2024
|
display?: string | undefined;
|
|
2017
2025
|
} | undefined;
|
|
2018
2026
|
}[] | undefined;
|
|
2019
|
-
condition?: {
|
|
2020
|
-
coding?: {
|
|
2021
|
-
code?: string | undefined;
|
|
2022
|
-
system?: string | undefined;
|
|
2023
|
-
display?: string | undefined;
|
|
2024
|
-
}[] | undefined;
|
|
2025
|
-
text?: string | undefined;
|
|
2026
|
-
}[] | undefined;
|
|
2027
2027
|
}>;
|
|
2028
2028
|
export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
2029
2029
|
resourceType: z.ZodLiteral<"Specimen">;
|
|
@@ -2290,7 +2290,7 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2290
2290
|
unit?: string | undefined;
|
|
2291
2291
|
}>>;
|
|
2292
2292
|
}, "strip", z.ZodTypeAny, {
|
|
2293
|
-
|
|
2293
|
+
method?: {
|
|
2294
2294
|
coding?: {
|
|
2295
2295
|
code?: string | undefined;
|
|
2296
2296
|
system?: string | undefined;
|
|
@@ -2298,7 +2298,7 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2298
2298
|
}[] | undefined;
|
|
2299
2299
|
text?: string | undefined;
|
|
2300
2300
|
} | undefined;
|
|
2301
|
-
|
|
2301
|
+
bodySite?: {
|
|
2302
2302
|
coding?: {
|
|
2303
2303
|
code?: string | undefined;
|
|
2304
2304
|
system?: string | undefined;
|
|
@@ -2343,7 +2343,7 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2343
2343
|
unit?: string | undefined;
|
|
2344
2344
|
} | undefined;
|
|
2345
2345
|
}, {
|
|
2346
|
-
|
|
2346
|
+
method?: {
|
|
2347
2347
|
coding?: {
|
|
2348
2348
|
code?: string | undefined;
|
|
2349
2349
|
system?: string | undefined;
|
|
@@ -2351,7 +2351,7 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2351
2351
|
}[] | undefined;
|
|
2352
2352
|
text?: string | undefined;
|
|
2353
2353
|
} | undefined;
|
|
2354
|
-
|
|
2354
|
+
bodySite?: {
|
|
2355
2355
|
coding?: {
|
|
2356
2356
|
code?: string | undefined;
|
|
2357
2357
|
system?: string | undefined;
|
|
@@ -2809,6 +2809,11 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2809
2809
|
}, "strip", z.ZodTypeAny, {
|
|
2810
2810
|
url: string;
|
|
2811
2811
|
valueDateTime?: string | undefined;
|
|
2812
|
+
valueReference?: {
|
|
2813
|
+
reference: string;
|
|
2814
|
+
type?: string | undefined;
|
|
2815
|
+
display?: string | undefined;
|
|
2816
|
+
} | undefined;
|
|
2812
2817
|
valueContactDetail?: {
|
|
2813
2818
|
name?: string | undefined;
|
|
2814
2819
|
telecom?: {
|
|
@@ -2817,14 +2822,14 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2817
2822
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
2818
2823
|
}[] | undefined;
|
|
2819
2824
|
} | undefined;
|
|
2825
|
+
}, {
|
|
2826
|
+
url: string;
|
|
2827
|
+
valueDateTime?: string | undefined;
|
|
2820
2828
|
valueReference?: {
|
|
2821
2829
|
reference: string;
|
|
2822
2830
|
type?: string | undefined;
|
|
2823
2831
|
display?: string | undefined;
|
|
2824
2832
|
} | undefined;
|
|
2825
|
-
}, {
|
|
2826
|
-
url: string;
|
|
2827
|
-
valueDateTime?: string | undefined;
|
|
2828
2833
|
valueContactDetail?: {
|
|
2829
2834
|
name?: string | undefined;
|
|
2830
2835
|
telecom?: {
|
|
@@ -2833,11 +2838,6 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2833
2838
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
2834
2839
|
}[] | undefined;
|
|
2835
2840
|
} | undefined;
|
|
2836
|
-
valueReference?: {
|
|
2837
|
-
reference: string;
|
|
2838
|
-
type?: string | undefined;
|
|
2839
|
-
display?: string | undefined;
|
|
2840
|
-
} | undefined;
|
|
2841
2841
|
}>, "many">>;
|
|
2842
2842
|
}, "strip", z.ZodTypeAny, {
|
|
2843
2843
|
type: {
|
|
@@ -2858,6 +2858,11 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2858
2858
|
extension?: {
|
|
2859
2859
|
url: string;
|
|
2860
2860
|
valueDateTime?: string | undefined;
|
|
2861
|
+
valueReference?: {
|
|
2862
|
+
reference: string;
|
|
2863
|
+
type?: string | undefined;
|
|
2864
|
+
display?: string | undefined;
|
|
2865
|
+
} | undefined;
|
|
2861
2866
|
valueContactDetail?: {
|
|
2862
2867
|
name?: string | undefined;
|
|
2863
2868
|
telecom?: {
|
|
@@ -2866,11 +2871,6 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2866
2871
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
2867
2872
|
}[] | undefined;
|
|
2868
2873
|
} | undefined;
|
|
2869
|
-
valueReference?: {
|
|
2870
|
-
reference: string;
|
|
2871
|
-
type?: string | undefined;
|
|
2872
|
-
display?: string | undefined;
|
|
2873
|
-
} | undefined;
|
|
2874
2874
|
}[] | undefined;
|
|
2875
2875
|
identifier?: {
|
|
2876
2876
|
value: string;
|
|
@@ -2887,24 +2887,32 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2887
2887
|
authorString?: string | undefined;
|
|
2888
2888
|
time?: string | undefined;
|
|
2889
2889
|
}[] | undefined;
|
|
2890
|
-
accessionIdentifier?: {
|
|
2891
|
-
value?: string | undefined;
|
|
2892
|
-
system?: string | undefined;
|
|
2893
|
-
use?: string | undefined;
|
|
2894
|
-
} | undefined;
|
|
2895
|
-
receivedTime?: string | undefined;
|
|
2896
2890
|
parent?: {
|
|
2897
2891
|
reference: string;
|
|
2898
2892
|
type?: string | undefined;
|
|
2899
2893
|
display?: string | undefined;
|
|
2900
2894
|
}[] | undefined;
|
|
2895
|
+
condition?: {
|
|
2896
|
+
coding?: {
|
|
2897
|
+
code?: string | undefined;
|
|
2898
|
+
system?: string | undefined;
|
|
2899
|
+
display?: string | undefined;
|
|
2900
|
+
}[] | undefined;
|
|
2901
|
+
text?: string | undefined;
|
|
2902
|
+
}[] | undefined;
|
|
2901
2903
|
request?: {
|
|
2902
2904
|
reference: string;
|
|
2903
2905
|
type?: string | undefined;
|
|
2904
2906
|
display?: string | undefined;
|
|
2905
2907
|
}[] | undefined;
|
|
2908
|
+
accessionIdentifier?: {
|
|
2909
|
+
value?: string | undefined;
|
|
2910
|
+
system?: string | undefined;
|
|
2911
|
+
use?: string | undefined;
|
|
2912
|
+
} | undefined;
|
|
2913
|
+
receivedTime?: string | undefined;
|
|
2906
2914
|
collection?: {
|
|
2907
|
-
|
|
2915
|
+
method?: {
|
|
2908
2916
|
coding?: {
|
|
2909
2917
|
code?: string | undefined;
|
|
2910
2918
|
system?: string | undefined;
|
|
@@ -2912,7 +2920,7 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
2912
2920
|
}[] | undefined;
|
|
2913
2921
|
text?: string | undefined;
|
|
2914
2922
|
} | undefined;
|
|
2915
|
-
|
|
2923
|
+
bodySite?: {
|
|
2916
2924
|
coding?: {
|
|
2917
2925
|
code?: string | undefined;
|
|
2918
2926
|
system?: string | undefined;
|
|
@@ -3019,14 +3027,6 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
3019
3027
|
display?: string | undefined;
|
|
3020
3028
|
} | undefined;
|
|
3021
3029
|
}[] | undefined;
|
|
3022
|
-
condition?: {
|
|
3023
|
-
coding?: {
|
|
3024
|
-
code?: string | undefined;
|
|
3025
|
-
system?: string | undefined;
|
|
3026
|
-
display?: string | undefined;
|
|
3027
|
-
}[] | undefined;
|
|
3028
|
-
text?: string | undefined;
|
|
3029
|
-
}[] | undefined;
|
|
3030
3030
|
}, {
|
|
3031
3031
|
type: {
|
|
3032
3032
|
coding: {
|
|
@@ -3046,6 +3046,11 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
3046
3046
|
extension?: {
|
|
3047
3047
|
url: string;
|
|
3048
3048
|
valueDateTime?: string | undefined;
|
|
3049
|
+
valueReference?: {
|
|
3050
|
+
reference: string;
|
|
3051
|
+
type?: string | undefined;
|
|
3052
|
+
display?: string | undefined;
|
|
3053
|
+
} | undefined;
|
|
3049
3054
|
valueContactDetail?: {
|
|
3050
3055
|
name?: string | undefined;
|
|
3051
3056
|
telecom?: {
|
|
@@ -3054,11 +3059,6 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
3054
3059
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
3055
3060
|
}[] | undefined;
|
|
3056
3061
|
} | undefined;
|
|
3057
|
-
valueReference?: {
|
|
3058
|
-
reference: string;
|
|
3059
|
-
type?: string | undefined;
|
|
3060
|
-
display?: string | undefined;
|
|
3061
|
-
} | undefined;
|
|
3062
3062
|
}[] | undefined;
|
|
3063
3063
|
identifier?: {
|
|
3064
3064
|
value: string;
|
|
@@ -3075,24 +3075,32 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
3075
3075
|
authorString?: string | undefined;
|
|
3076
3076
|
time?: string | undefined;
|
|
3077
3077
|
}[] | undefined;
|
|
3078
|
-
accessionIdentifier?: {
|
|
3079
|
-
value?: string | undefined;
|
|
3080
|
-
system?: string | undefined;
|
|
3081
|
-
use?: string | undefined;
|
|
3082
|
-
} | undefined;
|
|
3083
|
-
receivedTime?: string | undefined;
|
|
3084
3078
|
parent?: {
|
|
3085
3079
|
reference: string;
|
|
3086
3080
|
type?: string | undefined;
|
|
3087
3081
|
display?: string | undefined;
|
|
3088
3082
|
}[] | undefined;
|
|
3083
|
+
condition?: {
|
|
3084
|
+
coding?: {
|
|
3085
|
+
code?: string | undefined;
|
|
3086
|
+
system?: string | undefined;
|
|
3087
|
+
display?: string | undefined;
|
|
3088
|
+
}[] | undefined;
|
|
3089
|
+
text?: string | undefined;
|
|
3090
|
+
}[] | undefined;
|
|
3089
3091
|
request?: {
|
|
3090
3092
|
reference: string;
|
|
3091
3093
|
type?: string | undefined;
|
|
3092
3094
|
display?: string | undefined;
|
|
3093
3095
|
}[] | undefined;
|
|
3096
|
+
accessionIdentifier?: {
|
|
3097
|
+
value?: string | undefined;
|
|
3098
|
+
system?: string | undefined;
|
|
3099
|
+
use?: string | undefined;
|
|
3100
|
+
} | undefined;
|
|
3101
|
+
receivedTime?: string | undefined;
|
|
3094
3102
|
collection?: {
|
|
3095
|
-
|
|
3103
|
+
method?: {
|
|
3096
3104
|
coding?: {
|
|
3097
3105
|
code?: string | undefined;
|
|
3098
3106
|
system?: string | undefined;
|
|
@@ -3100,7 +3108,7 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
3100
3108
|
}[] | undefined;
|
|
3101
3109
|
text?: string | undefined;
|
|
3102
3110
|
} | undefined;
|
|
3103
|
-
|
|
3111
|
+
bodySite?: {
|
|
3104
3112
|
coding?: {
|
|
3105
3113
|
code?: string | undefined;
|
|
3106
3114
|
system?: string | undefined;
|
|
@@ -3207,14 +3215,6 @@ export declare const SpecimenCreateSchema: z.ZodObject<{
|
|
|
3207
3215
|
display?: string | undefined;
|
|
3208
3216
|
} | undefined;
|
|
3209
3217
|
}[] | undefined;
|
|
3210
|
-
condition?: {
|
|
3211
|
-
coding?: {
|
|
3212
|
-
code?: string | undefined;
|
|
3213
|
-
system?: string | undefined;
|
|
3214
|
-
display?: string | undefined;
|
|
3215
|
-
}[] | undefined;
|
|
3216
|
-
text?: string | undefined;
|
|
3217
|
-
}[] | undefined;
|
|
3218
3218
|
}>;
|
|
3219
3219
|
export declare const SpecimenSchema: z.ZodObject<{
|
|
3220
3220
|
resourceType: z.ZodLiteral<"Specimen">;
|
|
@@ -3481,7 +3481,7 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
3481
3481
|
unit?: string | undefined;
|
|
3482
3482
|
}>>;
|
|
3483
3483
|
}, "strip", z.ZodTypeAny, {
|
|
3484
|
-
|
|
3484
|
+
method?: {
|
|
3485
3485
|
coding?: {
|
|
3486
3486
|
code?: string | undefined;
|
|
3487
3487
|
system?: string | undefined;
|
|
@@ -3489,7 +3489,7 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
3489
3489
|
}[] | undefined;
|
|
3490
3490
|
text?: string | undefined;
|
|
3491
3491
|
} | undefined;
|
|
3492
|
-
|
|
3492
|
+
bodySite?: {
|
|
3493
3493
|
coding?: {
|
|
3494
3494
|
code?: string | undefined;
|
|
3495
3495
|
system?: string | undefined;
|
|
@@ -3534,7 +3534,7 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
3534
3534
|
unit?: string | undefined;
|
|
3535
3535
|
} | undefined;
|
|
3536
3536
|
}, {
|
|
3537
|
-
|
|
3537
|
+
method?: {
|
|
3538
3538
|
coding?: {
|
|
3539
3539
|
code?: string | undefined;
|
|
3540
3540
|
system?: string | undefined;
|
|
@@ -3542,7 +3542,7 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
3542
3542
|
}[] | undefined;
|
|
3543
3543
|
text?: string | undefined;
|
|
3544
3544
|
} | undefined;
|
|
3545
|
-
|
|
3545
|
+
bodySite?: {
|
|
3546
3546
|
coding?: {
|
|
3547
3547
|
code?: string | undefined;
|
|
3548
3548
|
system?: string | undefined;
|
|
@@ -4000,6 +4000,11 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4000
4000
|
}, "strip", z.ZodTypeAny, {
|
|
4001
4001
|
url: string;
|
|
4002
4002
|
valueDateTime?: string | undefined;
|
|
4003
|
+
valueReference?: {
|
|
4004
|
+
reference: string;
|
|
4005
|
+
type?: string | undefined;
|
|
4006
|
+
display?: string | undefined;
|
|
4007
|
+
} | undefined;
|
|
4003
4008
|
valueContactDetail?: {
|
|
4004
4009
|
name?: string | undefined;
|
|
4005
4010
|
telecom?: {
|
|
@@ -4008,14 +4013,14 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4008
4013
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
4009
4014
|
}[] | undefined;
|
|
4010
4015
|
} | undefined;
|
|
4016
|
+
}, {
|
|
4017
|
+
url: string;
|
|
4018
|
+
valueDateTime?: string | undefined;
|
|
4011
4019
|
valueReference?: {
|
|
4012
4020
|
reference: string;
|
|
4013
4021
|
type?: string | undefined;
|
|
4014
4022
|
display?: string | undefined;
|
|
4015
4023
|
} | undefined;
|
|
4016
|
-
}, {
|
|
4017
|
-
url: string;
|
|
4018
|
-
valueDateTime?: string | undefined;
|
|
4019
4024
|
valueContactDetail?: {
|
|
4020
4025
|
name?: string | undefined;
|
|
4021
4026
|
telecom?: {
|
|
@@ -4024,11 +4029,6 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4024
4029
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
4025
4030
|
}[] | undefined;
|
|
4026
4031
|
} | undefined;
|
|
4027
|
-
valueReference?: {
|
|
4028
|
-
reference: string;
|
|
4029
|
-
type?: string | undefined;
|
|
4030
|
-
display?: string | undefined;
|
|
4031
|
-
} | undefined;
|
|
4032
4032
|
}>, "many">>;
|
|
4033
4033
|
} & {
|
|
4034
4034
|
id: z.ZodString;
|
|
@@ -4065,6 +4065,11 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4065
4065
|
extension?: {
|
|
4066
4066
|
url: string;
|
|
4067
4067
|
valueDateTime?: string | undefined;
|
|
4068
|
+
valueReference?: {
|
|
4069
|
+
reference: string;
|
|
4070
|
+
type?: string | undefined;
|
|
4071
|
+
display?: string | undefined;
|
|
4072
|
+
} | undefined;
|
|
4068
4073
|
valueContactDetail?: {
|
|
4069
4074
|
name?: string | undefined;
|
|
4070
4075
|
telecom?: {
|
|
@@ -4073,11 +4078,6 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4073
4078
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
4074
4079
|
}[] | undefined;
|
|
4075
4080
|
} | undefined;
|
|
4076
|
-
valueReference?: {
|
|
4077
|
-
reference: string;
|
|
4078
|
-
type?: string | undefined;
|
|
4079
|
-
display?: string | undefined;
|
|
4080
|
-
} | undefined;
|
|
4081
4081
|
}[] | undefined;
|
|
4082
4082
|
identifier?: {
|
|
4083
4083
|
value: string;
|
|
@@ -4099,24 +4099,32 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4099
4099
|
authorString?: string | undefined;
|
|
4100
4100
|
time?: string | undefined;
|
|
4101
4101
|
}[] | undefined;
|
|
4102
|
-
accessionIdentifier?: {
|
|
4103
|
-
value?: string | undefined;
|
|
4104
|
-
system?: string | undefined;
|
|
4105
|
-
use?: string | undefined;
|
|
4106
|
-
} | undefined;
|
|
4107
|
-
receivedTime?: string | undefined;
|
|
4108
4102
|
parent?: {
|
|
4109
4103
|
reference: string;
|
|
4110
4104
|
type?: string | undefined;
|
|
4111
4105
|
display?: string | undefined;
|
|
4112
4106
|
}[] | undefined;
|
|
4107
|
+
condition?: {
|
|
4108
|
+
coding?: {
|
|
4109
|
+
code?: string | undefined;
|
|
4110
|
+
system?: string | undefined;
|
|
4111
|
+
display?: string | undefined;
|
|
4112
|
+
}[] | undefined;
|
|
4113
|
+
text?: string | undefined;
|
|
4114
|
+
}[] | undefined;
|
|
4113
4115
|
request?: {
|
|
4114
4116
|
reference: string;
|
|
4115
4117
|
type?: string | undefined;
|
|
4116
4118
|
display?: string | undefined;
|
|
4117
4119
|
}[] | undefined;
|
|
4120
|
+
accessionIdentifier?: {
|
|
4121
|
+
value?: string | undefined;
|
|
4122
|
+
system?: string | undefined;
|
|
4123
|
+
use?: string | undefined;
|
|
4124
|
+
} | undefined;
|
|
4125
|
+
receivedTime?: string | undefined;
|
|
4118
4126
|
collection?: {
|
|
4119
|
-
|
|
4127
|
+
method?: {
|
|
4120
4128
|
coding?: {
|
|
4121
4129
|
code?: string | undefined;
|
|
4122
4130
|
system?: string | undefined;
|
|
@@ -4124,7 +4132,7 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4124
4132
|
}[] | undefined;
|
|
4125
4133
|
text?: string | undefined;
|
|
4126
4134
|
} | undefined;
|
|
4127
|
-
|
|
4135
|
+
bodySite?: {
|
|
4128
4136
|
coding?: {
|
|
4129
4137
|
code?: string | undefined;
|
|
4130
4138
|
system?: string | undefined;
|
|
@@ -4231,14 +4239,6 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4231
4239
|
display?: string | undefined;
|
|
4232
4240
|
} | undefined;
|
|
4233
4241
|
}[] | undefined;
|
|
4234
|
-
condition?: {
|
|
4235
|
-
coding?: {
|
|
4236
|
-
code?: string | undefined;
|
|
4237
|
-
system?: string | undefined;
|
|
4238
|
-
display?: string | undefined;
|
|
4239
|
-
}[] | undefined;
|
|
4240
|
-
text?: string | undefined;
|
|
4241
|
-
}[] | undefined;
|
|
4242
4242
|
}, {
|
|
4243
4243
|
type: {
|
|
4244
4244
|
coding: {
|
|
@@ -4259,6 +4259,11 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4259
4259
|
extension?: {
|
|
4260
4260
|
url: string;
|
|
4261
4261
|
valueDateTime?: string | undefined;
|
|
4262
|
+
valueReference?: {
|
|
4263
|
+
reference: string;
|
|
4264
|
+
type?: string | undefined;
|
|
4265
|
+
display?: string | undefined;
|
|
4266
|
+
} | undefined;
|
|
4262
4267
|
valueContactDetail?: {
|
|
4263
4268
|
name?: string | undefined;
|
|
4264
4269
|
telecom?: {
|
|
@@ -4267,11 +4272,6 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4267
4272
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
4268
4273
|
}[] | undefined;
|
|
4269
4274
|
} | undefined;
|
|
4270
|
-
valueReference?: {
|
|
4271
|
-
reference: string;
|
|
4272
|
-
type?: string | undefined;
|
|
4273
|
-
display?: string | undefined;
|
|
4274
|
-
} | undefined;
|
|
4275
4275
|
}[] | undefined;
|
|
4276
4276
|
identifier?: {
|
|
4277
4277
|
value: string;
|
|
@@ -4293,24 +4293,32 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4293
4293
|
authorString?: string | undefined;
|
|
4294
4294
|
time?: string | undefined;
|
|
4295
4295
|
}[] | undefined;
|
|
4296
|
-
accessionIdentifier?: {
|
|
4297
|
-
value?: string | undefined;
|
|
4298
|
-
system?: string | undefined;
|
|
4299
|
-
use?: string | undefined;
|
|
4300
|
-
} | undefined;
|
|
4301
|
-
receivedTime?: string | undefined;
|
|
4302
4296
|
parent?: {
|
|
4303
4297
|
reference: string;
|
|
4304
4298
|
type?: string | undefined;
|
|
4305
4299
|
display?: string | undefined;
|
|
4306
4300
|
}[] | undefined;
|
|
4301
|
+
condition?: {
|
|
4302
|
+
coding?: {
|
|
4303
|
+
code?: string | undefined;
|
|
4304
|
+
system?: string | undefined;
|
|
4305
|
+
display?: string | undefined;
|
|
4306
|
+
}[] | undefined;
|
|
4307
|
+
text?: string | undefined;
|
|
4308
|
+
}[] | undefined;
|
|
4307
4309
|
request?: {
|
|
4308
4310
|
reference: string;
|
|
4309
4311
|
type?: string | undefined;
|
|
4310
4312
|
display?: string | undefined;
|
|
4311
4313
|
}[] | undefined;
|
|
4314
|
+
accessionIdentifier?: {
|
|
4315
|
+
value?: string | undefined;
|
|
4316
|
+
system?: string | undefined;
|
|
4317
|
+
use?: string | undefined;
|
|
4318
|
+
} | undefined;
|
|
4319
|
+
receivedTime?: string | undefined;
|
|
4312
4320
|
collection?: {
|
|
4313
|
-
|
|
4321
|
+
method?: {
|
|
4314
4322
|
coding?: {
|
|
4315
4323
|
code?: string | undefined;
|
|
4316
4324
|
system?: string | undefined;
|
|
@@ -4318,7 +4326,7 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4318
4326
|
}[] | undefined;
|
|
4319
4327
|
text?: string | undefined;
|
|
4320
4328
|
} | undefined;
|
|
4321
|
-
|
|
4329
|
+
bodySite?: {
|
|
4322
4330
|
coding?: {
|
|
4323
4331
|
code?: string | undefined;
|
|
4324
4332
|
system?: string | undefined;
|
|
@@ -4425,14 +4433,6 @@ export declare const SpecimenSchema: z.ZodObject<{
|
|
|
4425
4433
|
display?: string | undefined;
|
|
4426
4434
|
} | undefined;
|
|
4427
4435
|
}[] | undefined;
|
|
4428
|
-
condition?: {
|
|
4429
|
-
coding?: {
|
|
4430
|
-
code?: string | undefined;
|
|
4431
|
-
system?: string | undefined;
|
|
4432
|
-
display?: string | undefined;
|
|
4433
|
-
}[] | undefined;
|
|
4434
|
-
text?: string | undefined;
|
|
4435
|
-
}[] | undefined;
|
|
4436
4436
|
}>;
|
|
4437
4437
|
export declare const SpecimenUpdateParamsSchema: z.ZodObject<{
|
|
4438
4438
|
id: z.ZodString;
|
|
@@ -4722,7 +4722,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
4722
4722
|
unit?: string | undefined;
|
|
4723
4723
|
}>>;
|
|
4724
4724
|
}, "strip", z.ZodTypeAny, {
|
|
4725
|
-
|
|
4725
|
+
method?: {
|
|
4726
4726
|
coding?: {
|
|
4727
4727
|
code?: string | undefined;
|
|
4728
4728
|
system?: string | undefined;
|
|
@@ -4730,7 +4730,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
4730
4730
|
}[] | undefined;
|
|
4731
4731
|
text?: string | undefined;
|
|
4732
4732
|
} | undefined;
|
|
4733
|
-
|
|
4733
|
+
bodySite?: {
|
|
4734
4734
|
coding?: {
|
|
4735
4735
|
code?: string | undefined;
|
|
4736
4736
|
system?: string | undefined;
|
|
@@ -4775,7 +4775,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
4775
4775
|
unit?: string | undefined;
|
|
4776
4776
|
} | undefined;
|
|
4777
4777
|
}, {
|
|
4778
|
-
|
|
4778
|
+
method?: {
|
|
4779
4779
|
coding?: {
|
|
4780
4780
|
code?: string | undefined;
|
|
4781
4781
|
system?: string | undefined;
|
|
@@ -4783,7 +4783,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
4783
4783
|
}[] | undefined;
|
|
4784
4784
|
text?: string | undefined;
|
|
4785
4785
|
} | undefined;
|
|
4786
|
-
|
|
4786
|
+
bodySite?: {
|
|
4787
4787
|
coding?: {
|
|
4788
4788
|
code?: string | undefined;
|
|
4789
4789
|
system?: string | undefined;
|
|
@@ -5241,6 +5241,11 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5241
5241
|
}, "strip", z.ZodTypeAny, {
|
|
5242
5242
|
url: string;
|
|
5243
5243
|
valueDateTime?: string | undefined;
|
|
5244
|
+
valueReference?: {
|
|
5245
|
+
reference: string;
|
|
5246
|
+
type?: string | undefined;
|
|
5247
|
+
display?: string | undefined;
|
|
5248
|
+
} | undefined;
|
|
5244
5249
|
valueContactDetail?: {
|
|
5245
5250
|
name?: string | undefined;
|
|
5246
5251
|
telecom?: {
|
|
@@ -5249,14 +5254,14 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5249
5254
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
5250
5255
|
}[] | undefined;
|
|
5251
5256
|
} | undefined;
|
|
5257
|
+
}, {
|
|
5258
|
+
url: string;
|
|
5259
|
+
valueDateTime?: string | undefined;
|
|
5252
5260
|
valueReference?: {
|
|
5253
5261
|
reference: string;
|
|
5254
5262
|
type?: string | undefined;
|
|
5255
5263
|
display?: string | undefined;
|
|
5256
5264
|
} | undefined;
|
|
5257
|
-
}, {
|
|
5258
|
-
url: string;
|
|
5259
|
-
valueDateTime?: string | undefined;
|
|
5260
5265
|
valueContactDetail?: {
|
|
5261
5266
|
name?: string | undefined;
|
|
5262
5267
|
telecom?: {
|
|
@@ -5265,11 +5270,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5265
5270
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
5266
5271
|
}[] | undefined;
|
|
5267
5272
|
} | undefined;
|
|
5268
|
-
valueReference?: {
|
|
5269
|
-
reference: string;
|
|
5270
|
-
type?: string | undefined;
|
|
5271
|
-
display?: string | undefined;
|
|
5272
|
-
} | undefined;
|
|
5273
5273
|
}>, "many">>;
|
|
5274
5274
|
} & {
|
|
5275
5275
|
id: z.ZodString;
|
|
@@ -5306,6 +5306,11 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5306
5306
|
extension?: {
|
|
5307
5307
|
url: string;
|
|
5308
5308
|
valueDateTime?: string | undefined;
|
|
5309
|
+
valueReference?: {
|
|
5310
|
+
reference: string;
|
|
5311
|
+
type?: string | undefined;
|
|
5312
|
+
display?: string | undefined;
|
|
5313
|
+
} | undefined;
|
|
5309
5314
|
valueContactDetail?: {
|
|
5310
5315
|
name?: string | undefined;
|
|
5311
5316
|
telecom?: {
|
|
@@ -5314,11 +5319,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5314
5319
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
5315
5320
|
}[] | undefined;
|
|
5316
5321
|
} | undefined;
|
|
5317
|
-
valueReference?: {
|
|
5318
|
-
reference: string;
|
|
5319
|
-
type?: string | undefined;
|
|
5320
|
-
display?: string | undefined;
|
|
5321
|
-
} | undefined;
|
|
5322
5322
|
}[] | undefined;
|
|
5323
5323
|
identifier?: {
|
|
5324
5324
|
value: string;
|
|
@@ -5340,24 +5340,32 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5340
5340
|
authorString?: string | undefined;
|
|
5341
5341
|
time?: string | undefined;
|
|
5342
5342
|
}[] | undefined;
|
|
5343
|
-
accessionIdentifier?: {
|
|
5344
|
-
value?: string | undefined;
|
|
5345
|
-
system?: string | undefined;
|
|
5346
|
-
use?: string | undefined;
|
|
5347
|
-
} | undefined;
|
|
5348
|
-
receivedTime?: string | undefined;
|
|
5349
5343
|
parent?: {
|
|
5350
5344
|
reference: string;
|
|
5351
5345
|
type?: string | undefined;
|
|
5352
5346
|
display?: string | undefined;
|
|
5353
5347
|
}[] | undefined;
|
|
5348
|
+
condition?: {
|
|
5349
|
+
coding?: {
|
|
5350
|
+
code?: string | undefined;
|
|
5351
|
+
system?: string | undefined;
|
|
5352
|
+
display?: string | undefined;
|
|
5353
|
+
}[] | undefined;
|
|
5354
|
+
text?: string | undefined;
|
|
5355
|
+
}[] | undefined;
|
|
5354
5356
|
request?: {
|
|
5355
5357
|
reference: string;
|
|
5356
5358
|
type?: string | undefined;
|
|
5357
5359
|
display?: string | undefined;
|
|
5358
5360
|
}[] | undefined;
|
|
5361
|
+
accessionIdentifier?: {
|
|
5362
|
+
value?: string | undefined;
|
|
5363
|
+
system?: string | undefined;
|
|
5364
|
+
use?: string | undefined;
|
|
5365
|
+
} | undefined;
|
|
5366
|
+
receivedTime?: string | undefined;
|
|
5359
5367
|
collection?: {
|
|
5360
|
-
|
|
5368
|
+
method?: {
|
|
5361
5369
|
coding?: {
|
|
5362
5370
|
code?: string | undefined;
|
|
5363
5371
|
system?: string | undefined;
|
|
@@ -5365,7 +5373,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5365
5373
|
}[] | undefined;
|
|
5366
5374
|
text?: string | undefined;
|
|
5367
5375
|
} | undefined;
|
|
5368
|
-
|
|
5376
|
+
bodySite?: {
|
|
5369
5377
|
coding?: {
|
|
5370
5378
|
code?: string | undefined;
|
|
5371
5379
|
system?: string | undefined;
|
|
@@ -5472,14 +5480,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5472
5480
|
display?: string | undefined;
|
|
5473
5481
|
} | undefined;
|
|
5474
5482
|
}[] | undefined;
|
|
5475
|
-
condition?: {
|
|
5476
|
-
coding?: {
|
|
5477
|
-
code?: string | undefined;
|
|
5478
|
-
system?: string | undefined;
|
|
5479
|
-
display?: string | undefined;
|
|
5480
|
-
}[] | undefined;
|
|
5481
|
-
text?: string | undefined;
|
|
5482
|
-
}[] | undefined;
|
|
5483
5483
|
}, {
|
|
5484
5484
|
type: {
|
|
5485
5485
|
coding: {
|
|
@@ -5500,6 +5500,11 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5500
5500
|
extension?: {
|
|
5501
5501
|
url: string;
|
|
5502
5502
|
valueDateTime?: string | undefined;
|
|
5503
|
+
valueReference?: {
|
|
5504
|
+
reference: string;
|
|
5505
|
+
type?: string | undefined;
|
|
5506
|
+
display?: string | undefined;
|
|
5507
|
+
} | undefined;
|
|
5503
5508
|
valueContactDetail?: {
|
|
5504
5509
|
name?: string | undefined;
|
|
5505
5510
|
telecom?: {
|
|
@@ -5508,11 +5513,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5508
5513
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
5509
5514
|
}[] | undefined;
|
|
5510
5515
|
} | undefined;
|
|
5511
|
-
valueReference?: {
|
|
5512
|
-
reference: string;
|
|
5513
|
-
type?: string | undefined;
|
|
5514
|
-
display?: string | undefined;
|
|
5515
|
-
} | undefined;
|
|
5516
5516
|
}[] | undefined;
|
|
5517
5517
|
identifier?: {
|
|
5518
5518
|
value: string;
|
|
@@ -5534,24 +5534,32 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5534
5534
|
authorString?: string | undefined;
|
|
5535
5535
|
time?: string | undefined;
|
|
5536
5536
|
}[] | undefined;
|
|
5537
|
-
accessionIdentifier?: {
|
|
5538
|
-
value?: string | undefined;
|
|
5539
|
-
system?: string | undefined;
|
|
5540
|
-
use?: string | undefined;
|
|
5541
|
-
} | undefined;
|
|
5542
|
-
receivedTime?: string | undefined;
|
|
5543
5537
|
parent?: {
|
|
5544
5538
|
reference: string;
|
|
5545
5539
|
type?: string | undefined;
|
|
5546
5540
|
display?: string | undefined;
|
|
5547
5541
|
}[] | undefined;
|
|
5542
|
+
condition?: {
|
|
5543
|
+
coding?: {
|
|
5544
|
+
code?: string | undefined;
|
|
5545
|
+
system?: string | undefined;
|
|
5546
|
+
display?: string | undefined;
|
|
5547
|
+
}[] | undefined;
|
|
5548
|
+
text?: string | undefined;
|
|
5549
|
+
}[] | undefined;
|
|
5548
5550
|
request?: {
|
|
5549
5551
|
reference: string;
|
|
5550
5552
|
type?: string | undefined;
|
|
5551
5553
|
display?: string | undefined;
|
|
5552
5554
|
}[] | undefined;
|
|
5555
|
+
accessionIdentifier?: {
|
|
5556
|
+
value?: string | undefined;
|
|
5557
|
+
system?: string | undefined;
|
|
5558
|
+
use?: string | undefined;
|
|
5559
|
+
} | undefined;
|
|
5560
|
+
receivedTime?: string | undefined;
|
|
5553
5561
|
collection?: {
|
|
5554
|
-
|
|
5562
|
+
method?: {
|
|
5555
5563
|
coding?: {
|
|
5556
5564
|
code?: string | undefined;
|
|
5557
5565
|
system?: string | undefined;
|
|
@@ -5559,7 +5567,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5559
5567
|
}[] | undefined;
|
|
5560
5568
|
text?: string | undefined;
|
|
5561
5569
|
} | undefined;
|
|
5562
|
-
|
|
5570
|
+
bodySite?: {
|
|
5563
5571
|
coding?: {
|
|
5564
5572
|
code?: string | undefined;
|
|
5565
5573
|
system?: string | undefined;
|
|
@@ -5666,14 +5674,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5666
5674
|
display?: string | undefined;
|
|
5667
5675
|
} | undefined;
|
|
5668
5676
|
}[] | undefined;
|
|
5669
|
-
condition?: {
|
|
5670
|
-
coding?: {
|
|
5671
|
-
code?: string | undefined;
|
|
5672
|
-
system?: string | undefined;
|
|
5673
|
-
display?: string | undefined;
|
|
5674
|
-
}[] | undefined;
|
|
5675
|
-
text?: string | undefined;
|
|
5676
|
-
}[] | undefined;
|
|
5677
5677
|
}>;
|
|
5678
5678
|
search: z.ZodOptional<z.ZodObject<{
|
|
5679
5679
|
mode: z.ZodOptional<z.ZodString>;
|
|
@@ -5703,6 +5703,11 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5703
5703
|
extension?: {
|
|
5704
5704
|
url: string;
|
|
5705
5705
|
valueDateTime?: string | undefined;
|
|
5706
|
+
valueReference?: {
|
|
5707
|
+
reference: string;
|
|
5708
|
+
type?: string | undefined;
|
|
5709
|
+
display?: string | undefined;
|
|
5710
|
+
} | undefined;
|
|
5706
5711
|
valueContactDetail?: {
|
|
5707
5712
|
name?: string | undefined;
|
|
5708
5713
|
telecom?: {
|
|
@@ -5711,11 +5716,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5711
5716
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
5712
5717
|
}[] | undefined;
|
|
5713
5718
|
} | undefined;
|
|
5714
|
-
valueReference?: {
|
|
5715
|
-
reference: string;
|
|
5716
|
-
type?: string | undefined;
|
|
5717
|
-
display?: string | undefined;
|
|
5718
|
-
} | undefined;
|
|
5719
5719
|
}[] | undefined;
|
|
5720
5720
|
identifier?: {
|
|
5721
5721
|
value: string;
|
|
@@ -5737,24 +5737,32 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5737
5737
|
authorString?: string | undefined;
|
|
5738
5738
|
time?: string | undefined;
|
|
5739
5739
|
}[] | undefined;
|
|
5740
|
-
accessionIdentifier?: {
|
|
5741
|
-
value?: string | undefined;
|
|
5742
|
-
system?: string | undefined;
|
|
5743
|
-
use?: string | undefined;
|
|
5744
|
-
} | undefined;
|
|
5745
|
-
receivedTime?: string | undefined;
|
|
5746
5740
|
parent?: {
|
|
5747
5741
|
reference: string;
|
|
5748
5742
|
type?: string | undefined;
|
|
5749
5743
|
display?: string | undefined;
|
|
5750
5744
|
}[] | undefined;
|
|
5745
|
+
condition?: {
|
|
5746
|
+
coding?: {
|
|
5747
|
+
code?: string | undefined;
|
|
5748
|
+
system?: string | undefined;
|
|
5749
|
+
display?: string | undefined;
|
|
5750
|
+
}[] | undefined;
|
|
5751
|
+
text?: string | undefined;
|
|
5752
|
+
}[] | undefined;
|
|
5751
5753
|
request?: {
|
|
5752
5754
|
reference: string;
|
|
5753
5755
|
type?: string | undefined;
|
|
5754
5756
|
display?: string | undefined;
|
|
5755
5757
|
}[] | undefined;
|
|
5758
|
+
accessionIdentifier?: {
|
|
5759
|
+
value?: string | undefined;
|
|
5760
|
+
system?: string | undefined;
|
|
5761
|
+
use?: string | undefined;
|
|
5762
|
+
} | undefined;
|
|
5763
|
+
receivedTime?: string | undefined;
|
|
5756
5764
|
collection?: {
|
|
5757
|
-
|
|
5765
|
+
method?: {
|
|
5758
5766
|
coding?: {
|
|
5759
5767
|
code?: string | undefined;
|
|
5760
5768
|
system?: string | undefined;
|
|
@@ -5762,7 +5770,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5762
5770
|
}[] | undefined;
|
|
5763
5771
|
text?: string | undefined;
|
|
5764
5772
|
} | undefined;
|
|
5765
|
-
|
|
5773
|
+
bodySite?: {
|
|
5766
5774
|
coding?: {
|
|
5767
5775
|
code?: string | undefined;
|
|
5768
5776
|
system?: string | undefined;
|
|
@@ -5869,14 +5877,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5869
5877
|
display?: string | undefined;
|
|
5870
5878
|
} | undefined;
|
|
5871
5879
|
}[] | undefined;
|
|
5872
|
-
condition?: {
|
|
5873
|
-
coding?: {
|
|
5874
|
-
code?: string | undefined;
|
|
5875
|
-
system?: string | undefined;
|
|
5876
|
-
display?: string | undefined;
|
|
5877
|
-
}[] | undefined;
|
|
5878
|
-
text?: string | undefined;
|
|
5879
|
-
}[] | undefined;
|
|
5880
5880
|
};
|
|
5881
5881
|
fullUrl?: string | undefined;
|
|
5882
5882
|
search?: {
|
|
@@ -5903,6 +5903,11 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5903
5903
|
extension?: {
|
|
5904
5904
|
url: string;
|
|
5905
5905
|
valueDateTime?: string | undefined;
|
|
5906
|
+
valueReference?: {
|
|
5907
|
+
reference: string;
|
|
5908
|
+
type?: string | undefined;
|
|
5909
|
+
display?: string | undefined;
|
|
5910
|
+
} | undefined;
|
|
5906
5911
|
valueContactDetail?: {
|
|
5907
5912
|
name?: string | undefined;
|
|
5908
5913
|
telecom?: {
|
|
@@ -5911,11 +5916,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5911
5916
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
5912
5917
|
}[] | undefined;
|
|
5913
5918
|
} | undefined;
|
|
5914
|
-
valueReference?: {
|
|
5915
|
-
reference: string;
|
|
5916
|
-
type?: string | undefined;
|
|
5917
|
-
display?: string | undefined;
|
|
5918
|
-
} | undefined;
|
|
5919
5919
|
}[] | undefined;
|
|
5920
5920
|
identifier?: {
|
|
5921
5921
|
value: string;
|
|
@@ -5937,24 +5937,32 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5937
5937
|
authorString?: string | undefined;
|
|
5938
5938
|
time?: string | undefined;
|
|
5939
5939
|
}[] | undefined;
|
|
5940
|
-
accessionIdentifier?: {
|
|
5941
|
-
value?: string | undefined;
|
|
5942
|
-
system?: string | undefined;
|
|
5943
|
-
use?: string | undefined;
|
|
5944
|
-
} | undefined;
|
|
5945
|
-
receivedTime?: string | undefined;
|
|
5946
5940
|
parent?: {
|
|
5947
5941
|
reference: string;
|
|
5948
5942
|
type?: string | undefined;
|
|
5949
5943
|
display?: string | undefined;
|
|
5950
5944
|
}[] | undefined;
|
|
5945
|
+
condition?: {
|
|
5946
|
+
coding?: {
|
|
5947
|
+
code?: string | undefined;
|
|
5948
|
+
system?: string | undefined;
|
|
5949
|
+
display?: string | undefined;
|
|
5950
|
+
}[] | undefined;
|
|
5951
|
+
text?: string | undefined;
|
|
5952
|
+
}[] | undefined;
|
|
5951
5953
|
request?: {
|
|
5952
5954
|
reference: string;
|
|
5953
5955
|
type?: string | undefined;
|
|
5954
5956
|
display?: string | undefined;
|
|
5955
5957
|
}[] | undefined;
|
|
5958
|
+
accessionIdentifier?: {
|
|
5959
|
+
value?: string | undefined;
|
|
5960
|
+
system?: string | undefined;
|
|
5961
|
+
use?: string | undefined;
|
|
5962
|
+
} | undefined;
|
|
5963
|
+
receivedTime?: string | undefined;
|
|
5956
5964
|
collection?: {
|
|
5957
|
-
|
|
5965
|
+
method?: {
|
|
5958
5966
|
coding?: {
|
|
5959
5967
|
code?: string | undefined;
|
|
5960
5968
|
system?: string | undefined;
|
|
@@ -5962,7 +5970,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
5962
5970
|
}[] | undefined;
|
|
5963
5971
|
text?: string | undefined;
|
|
5964
5972
|
} | undefined;
|
|
5965
|
-
|
|
5973
|
+
bodySite?: {
|
|
5966
5974
|
coding?: {
|
|
5967
5975
|
code?: string | undefined;
|
|
5968
5976
|
system?: string | undefined;
|
|
@@ -6069,14 +6077,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6069
6077
|
display?: string | undefined;
|
|
6070
6078
|
} | undefined;
|
|
6071
6079
|
}[] | undefined;
|
|
6072
|
-
condition?: {
|
|
6073
|
-
coding?: {
|
|
6074
|
-
code?: string | undefined;
|
|
6075
|
-
system?: string | undefined;
|
|
6076
|
-
display?: string | undefined;
|
|
6077
|
-
}[] | undefined;
|
|
6078
|
-
text?: string | undefined;
|
|
6079
|
-
}[] | undefined;
|
|
6080
6080
|
};
|
|
6081
6081
|
fullUrl?: string | undefined;
|
|
6082
6082
|
search?: {
|
|
@@ -6112,6 +6112,11 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6112
6112
|
extension?: {
|
|
6113
6113
|
url: string;
|
|
6114
6114
|
valueDateTime?: string | undefined;
|
|
6115
|
+
valueReference?: {
|
|
6116
|
+
reference: string;
|
|
6117
|
+
type?: string | undefined;
|
|
6118
|
+
display?: string | undefined;
|
|
6119
|
+
} | undefined;
|
|
6115
6120
|
valueContactDetail?: {
|
|
6116
6121
|
name?: string | undefined;
|
|
6117
6122
|
telecom?: {
|
|
@@ -6120,11 +6125,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6120
6125
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
6121
6126
|
}[] | undefined;
|
|
6122
6127
|
} | undefined;
|
|
6123
|
-
valueReference?: {
|
|
6124
|
-
reference: string;
|
|
6125
|
-
type?: string | undefined;
|
|
6126
|
-
display?: string | undefined;
|
|
6127
|
-
} | undefined;
|
|
6128
6128
|
}[] | undefined;
|
|
6129
6129
|
identifier?: {
|
|
6130
6130
|
value: string;
|
|
@@ -6146,24 +6146,32 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6146
6146
|
authorString?: string | undefined;
|
|
6147
6147
|
time?: string | undefined;
|
|
6148
6148
|
}[] | undefined;
|
|
6149
|
-
accessionIdentifier?: {
|
|
6150
|
-
value?: string | undefined;
|
|
6151
|
-
system?: string | undefined;
|
|
6152
|
-
use?: string | undefined;
|
|
6153
|
-
} | undefined;
|
|
6154
|
-
receivedTime?: string | undefined;
|
|
6155
6149
|
parent?: {
|
|
6156
6150
|
reference: string;
|
|
6157
6151
|
type?: string | undefined;
|
|
6158
6152
|
display?: string | undefined;
|
|
6159
6153
|
}[] | undefined;
|
|
6154
|
+
condition?: {
|
|
6155
|
+
coding?: {
|
|
6156
|
+
code?: string | undefined;
|
|
6157
|
+
system?: string | undefined;
|
|
6158
|
+
display?: string | undefined;
|
|
6159
|
+
}[] | undefined;
|
|
6160
|
+
text?: string | undefined;
|
|
6161
|
+
}[] | undefined;
|
|
6160
6162
|
request?: {
|
|
6161
6163
|
reference: string;
|
|
6162
6164
|
type?: string | undefined;
|
|
6163
6165
|
display?: string | undefined;
|
|
6164
6166
|
}[] | undefined;
|
|
6167
|
+
accessionIdentifier?: {
|
|
6168
|
+
value?: string | undefined;
|
|
6169
|
+
system?: string | undefined;
|
|
6170
|
+
use?: string | undefined;
|
|
6171
|
+
} | undefined;
|
|
6172
|
+
receivedTime?: string | undefined;
|
|
6165
6173
|
collection?: {
|
|
6166
|
-
|
|
6174
|
+
method?: {
|
|
6167
6175
|
coding?: {
|
|
6168
6176
|
code?: string | undefined;
|
|
6169
6177
|
system?: string | undefined;
|
|
@@ -6171,7 +6179,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6171
6179
|
}[] | undefined;
|
|
6172
6180
|
text?: string | undefined;
|
|
6173
6181
|
} | undefined;
|
|
6174
|
-
|
|
6182
|
+
bodySite?: {
|
|
6175
6183
|
coding?: {
|
|
6176
6184
|
code?: string | undefined;
|
|
6177
6185
|
system?: string | undefined;
|
|
@@ -6278,14 +6286,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6278
6286
|
display?: string | undefined;
|
|
6279
6287
|
} | undefined;
|
|
6280
6288
|
}[] | undefined;
|
|
6281
|
-
condition?: {
|
|
6282
|
-
coding?: {
|
|
6283
|
-
code?: string | undefined;
|
|
6284
|
-
system?: string | undefined;
|
|
6285
|
-
display?: string | undefined;
|
|
6286
|
-
}[] | undefined;
|
|
6287
|
-
text?: string | undefined;
|
|
6288
|
-
}[] | undefined;
|
|
6289
6289
|
};
|
|
6290
6290
|
fullUrl?: string | undefined;
|
|
6291
6291
|
search?: {
|
|
@@ -6321,6 +6321,11 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6321
6321
|
extension?: {
|
|
6322
6322
|
url: string;
|
|
6323
6323
|
valueDateTime?: string | undefined;
|
|
6324
|
+
valueReference?: {
|
|
6325
|
+
reference: string;
|
|
6326
|
+
type?: string | undefined;
|
|
6327
|
+
display?: string | undefined;
|
|
6328
|
+
} | undefined;
|
|
6324
6329
|
valueContactDetail?: {
|
|
6325
6330
|
name?: string | undefined;
|
|
6326
6331
|
telecom?: {
|
|
@@ -6329,11 +6334,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6329
6334
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
6330
6335
|
}[] | undefined;
|
|
6331
6336
|
} | undefined;
|
|
6332
|
-
valueReference?: {
|
|
6333
|
-
reference: string;
|
|
6334
|
-
type?: string | undefined;
|
|
6335
|
-
display?: string | undefined;
|
|
6336
|
-
} | undefined;
|
|
6337
6337
|
}[] | undefined;
|
|
6338
6338
|
identifier?: {
|
|
6339
6339
|
value: string;
|
|
@@ -6355,24 +6355,32 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6355
6355
|
authorString?: string | undefined;
|
|
6356
6356
|
time?: string | undefined;
|
|
6357
6357
|
}[] | undefined;
|
|
6358
|
-
accessionIdentifier?: {
|
|
6359
|
-
value?: string | undefined;
|
|
6360
|
-
system?: string | undefined;
|
|
6361
|
-
use?: string | undefined;
|
|
6362
|
-
} | undefined;
|
|
6363
|
-
receivedTime?: string | undefined;
|
|
6364
6358
|
parent?: {
|
|
6365
6359
|
reference: string;
|
|
6366
6360
|
type?: string | undefined;
|
|
6367
6361
|
display?: string | undefined;
|
|
6368
6362
|
}[] | undefined;
|
|
6363
|
+
condition?: {
|
|
6364
|
+
coding?: {
|
|
6365
|
+
code?: string | undefined;
|
|
6366
|
+
system?: string | undefined;
|
|
6367
|
+
display?: string | undefined;
|
|
6368
|
+
}[] | undefined;
|
|
6369
|
+
text?: string | undefined;
|
|
6370
|
+
}[] | undefined;
|
|
6369
6371
|
request?: {
|
|
6370
6372
|
reference: string;
|
|
6371
6373
|
type?: string | undefined;
|
|
6372
6374
|
display?: string | undefined;
|
|
6373
6375
|
}[] | undefined;
|
|
6376
|
+
accessionIdentifier?: {
|
|
6377
|
+
value?: string | undefined;
|
|
6378
|
+
system?: string | undefined;
|
|
6379
|
+
use?: string | undefined;
|
|
6380
|
+
} | undefined;
|
|
6381
|
+
receivedTime?: string | undefined;
|
|
6374
6382
|
collection?: {
|
|
6375
|
-
|
|
6383
|
+
method?: {
|
|
6376
6384
|
coding?: {
|
|
6377
6385
|
code?: string | undefined;
|
|
6378
6386
|
system?: string | undefined;
|
|
@@ -6380,7 +6388,7 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6380
6388
|
}[] | undefined;
|
|
6381
6389
|
text?: string | undefined;
|
|
6382
6390
|
} | undefined;
|
|
6383
|
-
|
|
6391
|
+
bodySite?: {
|
|
6384
6392
|
coding?: {
|
|
6385
6393
|
code?: string | undefined;
|
|
6386
6394
|
system?: string | undefined;
|
|
@@ -6487,14 +6495,6 @@ export declare const SpecimenBundleSchema: z.ZodObject<{
|
|
|
6487
6495
|
display?: string | undefined;
|
|
6488
6496
|
} | undefined;
|
|
6489
6497
|
}[] | undefined;
|
|
6490
|
-
condition?: {
|
|
6491
|
-
coding?: {
|
|
6492
|
-
code?: string | undefined;
|
|
6493
|
-
system?: string | undefined;
|
|
6494
|
-
display?: string | undefined;
|
|
6495
|
-
}[] | undefined;
|
|
6496
|
-
text?: string | undefined;
|
|
6497
|
-
}[] | undefined;
|
|
6498
6498
|
};
|
|
6499
6499
|
fullUrl?: string | undefined;
|
|
6500
6500
|
search?: {
|