@digitalmedika/satusehat 0.1.0 → 0.2.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 +118 -2
- package/dist/builders/chest-xray-study-builder.d.ts +16 -0
- package/dist/builders/encounter-builder.d.ts +124 -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 +19 -3
- package/dist/index.js +13 -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
|
@@ -655,40 +655,46 @@ export declare const MedicationRequestDoseAndRateSchema: z.ZodObject<{
|
|
|
655
655
|
}[] | undefined;
|
|
656
656
|
text?: string | undefined;
|
|
657
657
|
} | undefined;
|
|
658
|
-
|
|
659
|
-
|
|
658
|
+
rateRatio?: {
|
|
659
|
+
numerator?: {
|
|
660
660
|
value: number;
|
|
661
661
|
code?: string | undefined;
|
|
662
662
|
system?: string | undefined;
|
|
663
663
|
unit?: string | undefined;
|
|
664
664
|
} | undefined;
|
|
665
|
-
|
|
665
|
+
denominator?: {
|
|
666
666
|
value: number;
|
|
667
667
|
code?: string | undefined;
|
|
668
668
|
system?: string | undefined;
|
|
669
669
|
unit?: string | undefined;
|
|
670
670
|
} | undefined;
|
|
671
671
|
} | undefined;
|
|
672
|
-
|
|
672
|
+
rateQuantity?: {
|
|
673
673
|
value: number;
|
|
674
674
|
code?: string | undefined;
|
|
675
675
|
system?: string | undefined;
|
|
676
676
|
unit?: string | undefined;
|
|
677
677
|
} | undefined;
|
|
678
|
-
|
|
679
|
-
|
|
678
|
+
doseRange?: {
|
|
679
|
+
low?: {
|
|
680
680
|
value: number;
|
|
681
681
|
code?: string | undefined;
|
|
682
682
|
system?: string | undefined;
|
|
683
683
|
unit?: string | undefined;
|
|
684
684
|
} | undefined;
|
|
685
|
-
|
|
685
|
+
high?: {
|
|
686
686
|
value: number;
|
|
687
687
|
code?: string | undefined;
|
|
688
688
|
system?: string | undefined;
|
|
689
689
|
unit?: string | undefined;
|
|
690
690
|
} | undefined;
|
|
691
691
|
} | undefined;
|
|
692
|
+
doseQuantity?: {
|
|
693
|
+
value: number;
|
|
694
|
+
code?: string | undefined;
|
|
695
|
+
system?: string | undefined;
|
|
696
|
+
unit?: string | undefined;
|
|
697
|
+
} | undefined;
|
|
692
698
|
rateRange?: {
|
|
693
699
|
low?: {
|
|
694
700
|
value: number;
|
|
@@ -703,12 +709,6 @@ export declare const MedicationRequestDoseAndRateSchema: z.ZodObject<{
|
|
|
703
709
|
unit?: string | undefined;
|
|
704
710
|
} | undefined;
|
|
705
711
|
} | undefined;
|
|
706
|
-
rateQuantity?: {
|
|
707
|
-
value: number;
|
|
708
|
-
code?: string | undefined;
|
|
709
|
-
system?: string | undefined;
|
|
710
|
-
unit?: string | undefined;
|
|
711
|
-
} | undefined;
|
|
712
712
|
}, {
|
|
713
713
|
type?: {
|
|
714
714
|
coding?: {
|
|
@@ -718,40 +718,46 @@ export declare const MedicationRequestDoseAndRateSchema: z.ZodObject<{
|
|
|
718
718
|
}[] | undefined;
|
|
719
719
|
text?: string | undefined;
|
|
720
720
|
} | undefined;
|
|
721
|
-
|
|
722
|
-
|
|
721
|
+
rateRatio?: {
|
|
722
|
+
numerator?: {
|
|
723
723
|
value: number;
|
|
724
724
|
code?: string | undefined;
|
|
725
725
|
system?: string | undefined;
|
|
726
726
|
unit?: string | undefined;
|
|
727
727
|
} | undefined;
|
|
728
|
-
|
|
728
|
+
denominator?: {
|
|
729
729
|
value: number;
|
|
730
730
|
code?: string | undefined;
|
|
731
731
|
system?: string | undefined;
|
|
732
732
|
unit?: string | undefined;
|
|
733
733
|
} | undefined;
|
|
734
734
|
} | undefined;
|
|
735
|
-
|
|
735
|
+
rateQuantity?: {
|
|
736
736
|
value: number;
|
|
737
737
|
code?: string | undefined;
|
|
738
738
|
system?: string | undefined;
|
|
739
739
|
unit?: string | undefined;
|
|
740
740
|
} | undefined;
|
|
741
|
-
|
|
742
|
-
|
|
741
|
+
doseRange?: {
|
|
742
|
+
low?: {
|
|
743
743
|
value: number;
|
|
744
744
|
code?: string | undefined;
|
|
745
745
|
system?: string | undefined;
|
|
746
746
|
unit?: string | undefined;
|
|
747
747
|
} | undefined;
|
|
748
|
-
|
|
748
|
+
high?: {
|
|
749
749
|
value: number;
|
|
750
750
|
code?: string | undefined;
|
|
751
751
|
system?: string | undefined;
|
|
752
752
|
unit?: string | undefined;
|
|
753
753
|
} | undefined;
|
|
754
754
|
} | undefined;
|
|
755
|
+
doseQuantity?: {
|
|
756
|
+
value: number;
|
|
757
|
+
code?: string | undefined;
|
|
758
|
+
system?: string | undefined;
|
|
759
|
+
unit?: string | undefined;
|
|
760
|
+
} | undefined;
|
|
755
761
|
rateRange?: {
|
|
756
762
|
low?: {
|
|
757
763
|
value: number;
|
|
@@ -766,12 +772,6 @@ export declare const MedicationRequestDoseAndRateSchema: z.ZodObject<{
|
|
|
766
772
|
unit?: string | undefined;
|
|
767
773
|
} | undefined;
|
|
768
774
|
} | undefined;
|
|
769
|
-
rateQuantity?: {
|
|
770
|
-
value: number;
|
|
771
|
-
code?: string | undefined;
|
|
772
|
-
system?: string | undefined;
|
|
773
|
-
unit?: string | undefined;
|
|
774
|
-
} | undefined;
|
|
775
775
|
}>;
|
|
776
776
|
export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
777
777
|
sequence: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1294,40 +1294,46 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1294
1294
|
}[] | undefined;
|
|
1295
1295
|
text?: string | undefined;
|
|
1296
1296
|
} | undefined;
|
|
1297
|
-
|
|
1298
|
-
|
|
1297
|
+
rateRatio?: {
|
|
1298
|
+
numerator?: {
|
|
1299
1299
|
value: number;
|
|
1300
1300
|
code?: string | undefined;
|
|
1301
1301
|
system?: string | undefined;
|
|
1302
1302
|
unit?: string | undefined;
|
|
1303
1303
|
} | undefined;
|
|
1304
|
-
|
|
1304
|
+
denominator?: {
|
|
1305
1305
|
value: number;
|
|
1306
1306
|
code?: string | undefined;
|
|
1307
1307
|
system?: string | undefined;
|
|
1308
1308
|
unit?: string | undefined;
|
|
1309
1309
|
} | undefined;
|
|
1310
1310
|
} | undefined;
|
|
1311
|
-
|
|
1311
|
+
rateQuantity?: {
|
|
1312
1312
|
value: number;
|
|
1313
1313
|
code?: string | undefined;
|
|
1314
1314
|
system?: string | undefined;
|
|
1315
1315
|
unit?: string | undefined;
|
|
1316
1316
|
} | undefined;
|
|
1317
|
-
|
|
1318
|
-
|
|
1317
|
+
doseRange?: {
|
|
1318
|
+
low?: {
|
|
1319
1319
|
value: number;
|
|
1320
1320
|
code?: string | undefined;
|
|
1321
1321
|
system?: string | undefined;
|
|
1322
1322
|
unit?: string | undefined;
|
|
1323
1323
|
} | undefined;
|
|
1324
|
-
|
|
1324
|
+
high?: {
|
|
1325
1325
|
value: number;
|
|
1326
1326
|
code?: string | undefined;
|
|
1327
1327
|
system?: string | undefined;
|
|
1328
1328
|
unit?: string | undefined;
|
|
1329
1329
|
} | undefined;
|
|
1330
1330
|
} | undefined;
|
|
1331
|
+
doseQuantity?: {
|
|
1332
|
+
value: number;
|
|
1333
|
+
code?: string | undefined;
|
|
1334
|
+
system?: string | undefined;
|
|
1335
|
+
unit?: string | undefined;
|
|
1336
|
+
} | undefined;
|
|
1331
1337
|
rateRange?: {
|
|
1332
1338
|
low?: {
|
|
1333
1339
|
value: number;
|
|
@@ -1342,12 +1348,6 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1342
1348
|
unit?: string | undefined;
|
|
1343
1349
|
} | undefined;
|
|
1344
1350
|
} | undefined;
|
|
1345
|
-
rateQuantity?: {
|
|
1346
|
-
value: number;
|
|
1347
|
-
code?: string | undefined;
|
|
1348
|
-
system?: string | undefined;
|
|
1349
|
-
unit?: string | undefined;
|
|
1350
|
-
} | undefined;
|
|
1351
1351
|
}, {
|
|
1352
1352
|
type?: {
|
|
1353
1353
|
coding?: {
|
|
@@ -1357,40 +1357,46 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1357
1357
|
}[] | undefined;
|
|
1358
1358
|
text?: string | undefined;
|
|
1359
1359
|
} | undefined;
|
|
1360
|
-
|
|
1361
|
-
|
|
1360
|
+
rateRatio?: {
|
|
1361
|
+
numerator?: {
|
|
1362
1362
|
value: number;
|
|
1363
1363
|
code?: string | undefined;
|
|
1364
1364
|
system?: string | undefined;
|
|
1365
1365
|
unit?: string | undefined;
|
|
1366
1366
|
} | undefined;
|
|
1367
|
-
|
|
1367
|
+
denominator?: {
|
|
1368
1368
|
value: number;
|
|
1369
1369
|
code?: string | undefined;
|
|
1370
1370
|
system?: string | undefined;
|
|
1371
1371
|
unit?: string | undefined;
|
|
1372
1372
|
} | undefined;
|
|
1373
1373
|
} | undefined;
|
|
1374
|
-
|
|
1374
|
+
rateQuantity?: {
|
|
1375
1375
|
value: number;
|
|
1376
1376
|
code?: string | undefined;
|
|
1377
1377
|
system?: string | undefined;
|
|
1378
1378
|
unit?: string | undefined;
|
|
1379
1379
|
} | undefined;
|
|
1380
|
-
|
|
1381
|
-
|
|
1380
|
+
doseRange?: {
|
|
1381
|
+
low?: {
|
|
1382
1382
|
value: number;
|
|
1383
1383
|
code?: string | undefined;
|
|
1384
1384
|
system?: string | undefined;
|
|
1385
1385
|
unit?: string | undefined;
|
|
1386
1386
|
} | undefined;
|
|
1387
|
-
|
|
1387
|
+
high?: {
|
|
1388
1388
|
value: number;
|
|
1389
1389
|
code?: string | undefined;
|
|
1390
1390
|
system?: string | undefined;
|
|
1391
1391
|
unit?: string | undefined;
|
|
1392
1392
|
} | undefined;
|
|
1393
1393
|
} | undefined;
|
|
1394
|
+
doseQuantity?: {
|
|
1395
|
+
value: number;
|
|
1396
|
+
code?: string | undefined;
|
|
1397
|
+
system?: string | undefined;
|
|
1398
|
+
unit?: string | undefined;
|
|
1399
|
+
} | undefined;
|
|
1394
1400
|
rateRange?: {
|
|
1395
1401
|
low?: {
|
|
1396
1402
|
value: number;
|
|
@@ -1405,12 +1411,6 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1405
1411
|
unit?: string | undefined;
|
|
1406
1412
|
} | undefined;
|
|
1407
1413
|
} | undefined;
|
|
1408
|
-
rateQuantity?: {
|
|
1409
|
-
value: number;
|
|
1410
|
-
code?: string | undefined;
|
|
1411
|
-
system?: string | undefined;
|
|
1412
|
-
unit?: string | undefined;
|
|
1413
|
-
} | undefined;
|
|
1414
1414
|
}>, "many">>;
|
|
1415
1415
|
maxDosePerPeriod: z.ZodOptional<z.ZodObject<{
|
|
1416
1416
|
numerator: z.ZodOptional<z.ZodObject<{
|
|
@@ -1514,6 +1514,22 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1514
1514
|
}[] | undefined;
|
|
1515
1515
|
text?: string | undefined;
|
|
1516
1516
|
} | undefined;
|
|
1517
|
+
site?: {
|
|
1518
|
+
coding?: {
|
|
1519
|
+
code?: string | undefined;
|
|
1520
|
+
system?: string | undefined;
|
|
1521
|
+
display?: string | undefined;
|
|
1522
|
+
}[] | undefined;
|
|
1523
|
+
text?: string | undefined;
|
|
1524
|
+
} | undefined;
|
|
1525
|
+
route?: {
|
|
1526
|
+
coding?: {
|
|
1527
|
+
code?: string | undefined;
|
|
1528
|
+
system?: string | undefined;
|
|
1529
|
+
display?: string | undefined;
|
|
1530
|
+
}[] | undefined;
|
|
1531
|
+
text?: string | undefined;
|
|
1532
|
+
} | undefined;
|
|
1517
1533
|
sequence?: number | undefined;
|
|
1518
1534
|
additionalInstruction?: {
|
|
1519
1535
|
coding?: {
|
|
@@ -1553,22 +1569,6 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1553
1569
|
} | undefined;
|
|
1554
1570
|
} | undefined;
|
|
1555
1571
|
asNeededBoolean?: boolean | undefined;
|
|
1556
|
-
site?: {
|
|
1557
|
-
coding?: {
|
|
1558
|
-
code?: string | undefined;
|
|
1559
|
-
system?: string | undefined;
|
|
1560
|
-
display?: string | undefined;
|
|
1561
|
-
}[] | undefined;
|
|
1562
|
-
text?: string | undefined;
|
|
1563
|
-
} | undefined;
|
|
1564
|
-
route?: {
|
|
1565
|
-
coding?: {
|
|
1566
|
-
code?: string | undefined;
|
|
1567
|
-
system?: string | undefined;
|
|
1568
|
-
display?: string | undefined;
|
|
1569
|
-
}[] | undefined;
|
|
1570
|
-
text?: string | undefined;
|
|
1571
|
-
} | undefined;
|
|
1572
1572
|
doseAndRate?: {
|
|
1573
1573
|
type?: {
|
|
1574
1574
|
coding?: {
|
|
@@ -1578,40 +1578,46 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1578
1578
|
}[] | undefined;
|
|
1579
1579
|
text?: string | undefined;
|
|
1580
1580
|
} | undefined;
|
|
1581
|
-
|
|
1582
|
-
|
|
1581
|
+
rateRatio?: {
|
|
1582
|
+
numerator?: {
|
|
1583
1583
|
value: number;
|
|
1584
1584
|
code?: string | undefined;
|
|
1585
1585
|
system?: string | undefined;
|
|
1586
1586
|
unit?: string | undefined;
|
|
1587
1587
|
} | undefined;
|
|
1588
|
-
|
|
1588
|
+
denominator?: {
|
|
1589
1589
|
value: number;
|
|
1590
1590
|
code?: string | undefined;
|
|
1591
1591
|
system?: string | undefined;
|
|
1592
1592
|
unit?: string | undefined;
|
|
1593
1593
|
} | undefined;
|
|
1594
1594
|
} | undefined;
|
|
1595
|
-
|
|
1595
|
+
rateQuantity?: {
|
|
1596
1596
|
value: number;
|
|
1597
1597
|
code?: string | undefined;
|
|
1598
1598
|
system?: string | undefined;
|
|
1599
1599
|
unit?: string | undefined;
|
|
1600
1600
|
} | undefined;
|
|
1601
|
-
|
|
1602
|
-
|
|
1601
|
+
doseRange?: {
|
|
1602
|
+
low?: {
|
|
1603
1603
|
value: number;
|
|
1604
1604
|
code?: string | undefined;
|
|
1605
1605
|
system?: string | undefined;
|
|
1606
1606
|
unit?: string | undefined;
|
|
1607
1607
|
} | undefined;
|
|
1608
|
-
|
|
1608
|
+
high?: {
|
|
1609
1609
|
value: number;
|
|
1610
1610
|
code?: string | undefined;
|
|
1611
1611
|
system?: string | undefined;
|
|
1612
1612
|
unit?: string | undefined;
|
|
1613
1613
|
} | undefined;
|
|
1614
1614
|
} | undefined;
|
|
1615
|
+
doseQuantity?: {
|
|
1616
|
+
value: number;
|
|
1617
|
+
code?: string | undefined;
|
|
1618
|
+
system?: string | undefined;
|
|
1619
|
+
unit?: string | undefined;
|
|
1620
|
+
} | undefined;
|
|
1615
1621
|
rateRange?: {
|
|
1616
1622
|
low?: {
|
|
1617
1623
|
value: number;
|
|
@@ -1626,12 +1632,6 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1626
1632
|
unit?: string | undefined;
|
|
1627
1633
|
} | undefined;
|
|
1628
1634
|
} | undefined;
|
|
1629
|
-
rateQuantity?: {
|
|
1630
|
-
value: number;
|
|
1631
|
-
code?: string | undefined;
|
|
1632
|
-
system?: string | undefined;
|
|
1633
|
-
unit?: string | undefined;
|
|
1634
|
-
} | undefined;
|
|
1635
1635
|
}[] | undefined;
|
|
1636
1636
|
maxDosePerPeriod?: {
|
|
1637
1637
|
numerator?: {
|
|
@@ -1669,6 +1669,22 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1669
1669
|
}[] | undefined;
|
|
1670
1670
|
text?: string | undefined;
|
|
1671
1671
|
} | undefined;
|
|
1672
|
+
site?: {
|
|
1673
|
+
coding?: {
|
|
1674
|
+
code?: string | undefined;
|
|
1675
|
+
system?: string | undefined;
|
|
1676
|
+
display?: string | undefined;
|
|
1677
|
+
}[] | undefined;
|
|
1678
|
+
text?: string | undefined;
|
|
1679
|
+
} | undefined;
|
|
1680
|
+
route?: {
|
|
1681
|
+
coding?: {
|
|
1682
|
+
code?: string | undefined;
|
|
1683
|
+
system?: string | undefined;
|
|
1684
|
+
display?: string | undefined;
|
|
1685
|
+
}[] | undefined;
|
|
1686
|
+
text?: string | undefined;
|
|
1687
|
+
} | undefined;
|
|
1672
1688
|
sequence?: number | undefined;
|
|
1673
1689
|
additionalInstruction?: {
|
|
1674
1690
|
coding?: {
|
|
@@ -1708,22 +1724,6 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1708
1724
|
} | undefined;
|
|
1709
1725
|
} | undefined;
|
|
1710
1726
|
asNeededBoolean?: boolean | undefined;
|
|
1711
|
-
site?: {
|
|
1712
|
-
coding?: {
|
|
1713
|
-
code?: string | undefined;
|
|
1714
|
-
system?: string | undefined;
|
|
1715
|
-
display?: string | undefined;
|
|
1716
|
-
}[] | undefined;
|
|
1717
|
-
text?: string | undefined;
|
|
1718
|
-
} | undefined;
|
|
1719
|
-
route?: {
|
|
1720
|
-
coding?: {
|
|
1721
|
-
code?: string | undefined;
|
|
1722
|
-
system?: string | undefined;
|
|
1723
|
-
display?: string | undefined;
|
|
1724
|
-
}[] | undefined;
|
|
1725
|
-
text?: string | undefined;
|
|
1726
|
-
} | undefined;
|
|
1727
1727
|
doseAndRate?: {
|
|
1728
1728
|
type?: {
|
|
1729
1729
|
coding?: {
|
|
@@ -1733,40 +1733,46 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1733
1733
|
}[] | undefined;
|
|
1734
1734
|
text?: string | undefined;
|
|
1735
1735
|
} | undefined;
|
|
1736
|
-
|
|
1737
|
-
|
|
1736
|
+
rateRatio?: {
|
|
1737
|
+
numerator?: {
|
|
1738
1738
|
value: number;
|
|
1739
1739
|
code?: string | undefined;
|
|
1740
1740
|
system?: string | undefined;
|
|
1741
1741
|
unit?: string | undefined;
|
|
1742
1742
|
} | undefined;
|
|
1743
|
-
|
|
1743
|
+
denominator?: {
|
|
1744
1744
|
value: number;
|
|
1745
1745
|
code?: string | undefined;
|
|
1746
1746
|
system?: string | undefined;
|
|
1747
1747
|
unit?: string | undefined;
|
|
1748
1748
|
} | undefined;
|
|
1749
1749
|
} | undefined;
|
|
1750
|
-
|
|
1750
|
+
rateQuantity?: {
|
|
1751
1751
|
value: number;
|
|
1752
1752
|
code?: string | undefined;
|
|
1753
1753
|
system?: string | undefined;
|
|
1754
1754
|
unit?: string | undefined;
|
|
1755
1755
|
} | undefined;
|
|
1756
|
-
|
|
1757
|
-
|
|
1756
|
+
doseRange?: {
|
|
1757
|
+
low?: {
|
|
1758
1758
|
value: number;
|
|
1759
1759
|
code?: string | undefined;
|
|
1760
1760
|
system?: string | undefined;
|
|
1761
1761
|
unit?: string | undefined;
|
|
1762
1762
|
} | undefined;
|
|
1763
|
-
|
|
1763
|
+
high?: {
|
|
1764
1764
|
value: number;
|
|
1765
1765
|
code?: string | undefined;
|
|
1766
1766
|
system?: string | undefined;
|
|
1767
1767
|
unit?: string | undefined;
|
|
1768
1768
|
} | undefined;
|
|
1769
1769
|
} | undefined;
|
|
1770
|
+
doseQuantity?: {
|
|
1771
|
+
value: number;
|
|
1772
|
+
code?: string | undefined;
|
|
1773
|
+
system?: string | undefined;
|
|
1774
|
+
unit?: string | undefined;
|
|
1775
|
+
} | undefined;
|
|
1770
1776
|
rateRange?: {
|
|
1771
1777
|
low?: {
|
|
1772
1778
|
value: number;
|
|
@@ -1781,12 +1787,6 @@ export declare const MedicationRequestDosageInstructionSchema: z.ZodObject<{
|
|
|
1781
1787
|
unit?: string | undefined;
|
|
1782
1788
|
} | undefined;
|
|
1783
1789
|
} | undefined;
|
|
1784
|
-
rateQuantity?: {
|
|
1785
|
-
value: number;
|
|
1786
|
-
code?: string | undefined;
|
|
1787
|
-
system?: string | undefined;
|
|
1788
|
-
unit?: string | undefined;
|
|
1789
|
-
} | undefined;
|
|
1790
1790
|
}[] | undefined;
|
|
1791
1791
|
maxDosePerPeriod?: {
|
|
1792
1792
|
numerator?: {
|
|
@@ -2076,17 +2076,17 @@ export declare const MedicationRequestSearchParamsSchema: z.ZodEffects<z.ZodObje
|
|
|
2076
2076
|
subject: z.ZodOptional<z.ZodString>;
|
|
2077
2077
|
encounter: z.ZodOptional<z.ZodString>;
|
|
2078
2078
|
}, "strip", z.ZodTypeAny, {
|
|
2079
|
-
subject?: string | undefined;
|
|
2080
2079
|
encounter?: string | undefined;
|
|
2081
|
-
}, {
|
|
2082
2080
|
subject?: string | undefined;
|
|
2081
|
+
}, {
|
|
2083
2082
|
encounter?: string | undefined;
|
|
2084
|
-
}>, {
|
|
2085
2083
|
subject?: string | undefined;
|
|
2084
|
+
}>, {
|
|
2086
2085
|
encounter?: string | undefined;
|
|
2087
|
-
}, {
|
|
2088
2086
|
subject?: string | undefined;
|
|
2087
|
+
}, {
|
|
2089
2088
|
encounter?: string | undefined;
|
|
2089
|
+
subject?: string | undefined;
|
|
2090
2090
|
}>;
|
|
2091
2091
|
export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
2092
2092
|
resourceType: z.ZodLiteral<"MedicationRequest">;
|
|
@@ -2903,40 +2903,46 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
2903
2903
|
}[] | undefined;
|
|
2904
2904
|
text?: string | undefined;
|
|
2905
2905
|
} | undefined;
|
|
2906
|
-
|
|
2907
|
-
|
|
2906
|
+
rateRatio?: {
|
|
2907
|
+
numerator?: {
|
|
2908
2908
|
value: number;
|
|
2909
2909
|
code?: string | undefined;
|
|
2910
2910
|
system?: string | undefined;
|
|
2911
2911
|
unit?: string | undefined;
|
|
2912
2912
|
} | undefined;
|
|
2913
|
-
|
|
2913
|
+
denominator?: {
|
|
2914
2914
|
value: number;
|
|
2915
2915
|
code?: string | undefined;
|
|
2916
2916
|
system?: string | undefined;
|
|
2917
2917
|
unit?: string | undefined;
|
|
2918
2918
|
} | undefined;
|
|
2919
2919
|
} | undefined;
|
|
2920
|
-
|
|
2920
|
+
rateQuantity?: {
|
|
2921
2921
|
value: number;
|
|
2922
2922
|
code?: string | undefined;
|
|
2923
2923
|
system?: string | undefined;
|
|
2924
2924
|
unit?: string | undefined;
|
|
2925
2925
|
} | undefined;
|
|
2926
|
-
|
|
2927
|
-
|
|
2926
|
+
doseRange?: {
|
|
2927
|
+
low?: {
|
|
2928
2928
|
value: number;
|
|
2929
2929
|
code?: string | undefined;
|
|
2930
2930
|
system?: string | undefined;
|
|
2931
2931
|
unit?: string | undefined;
|
|
2932
2932
|
} | undefined;
|
|
2933
|
-
|
|
2933
|
+
high?: {
|
|
2934
2934
|
value: number;
|
|
2935
2935
|
code?: string | undefined;
|
|
2936
2936
|
system?: string | undefined;
|
|
2937
2937
|
unit?: string | undefined;
|
|
2938
2938
|
} | undefined;
|
|
2939
2939
|
} | undefined;
|
|
2940
|
+
doseQuantity?: {
|
|
2941
|
+
value: number;
|
|
2942
|
+
code?: string | undefined;
|
|
2943
|
+
system?: string | undefined;
|
|
2944
|
+
unit?: string | undefined;
|
|
2945
|
+
} | undefined;
|
|
2940
2946
|
rateRange?: {
|
|
2941
2947
|
low?: {
|
|
2942
2948
|
value: number;
|
|
@@ -2951,12 +2957,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
2951
2957
|
unit?: string | undefined;
|
|
2952
2958
|
} | undefined;
|
|
2953
2959
|
} | undefined;
|
|
2954
|
-
rateQuantity?: {
|
|
2955
|
-
value: number;
|
|
2956
|
-
code?: string | undefined;
|
|
2957
|
-
system?: string | undefined;
|
|
2958
|
-
unit?: string | undefined;
|
|
2959
|
-
} | undefined;
|
|
2960
2960
|
}, {
|
|
2961
2961
|
type?: {
|
|
2962
2962
|
coding?: {
|
|
@@ -2966,40 +2966,46 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
2966
2966
|
}[] | undefined;
|
|
2967
2967
|
text?: string | undefined;
|
|
2968
2968
|
} | undefined;
|
|
2969
|
-
|
|
2970
|
-
|
|
2969
|
+
rateRatio?: {
|
|
2970
|
+
numerator?: {
|
|
2971
2971
|
value: number;
|
|
2972
2972
|
code?: string | undefined;
|
|
2973
2973
|
system?: string | undefined;
|
|
2974
2974
|
unit?: string | undefined;
|
|
2975
2975
|
} | undefined;
|
|
2976
|
-
|
|
2976
|
+
denominator?: {
|
|
2977
2977
|
value: number;
|
|
2978
2978
|
code?: string | undefined;
|
|
2979
2979
|
system?: string | undefined;
|
|
2980
2980
|
unit?: string | undefined;
|
|
2981
2981
|
} | undefined;
|
|
2982
2982
|
} | undefined;
|
|
2983
|
-
|
|
2983
|
+
rateQuantity?: {
|
|
2984
2984
|
value: number;
|
|
2985
2985
|
code?: string | undefined;
|
|
2986
2986
|
system?: string | undefined;
|
|
2987
2987
|
unit?: string | undefined;
|
|
2988
2988
|
} | undefined;
|
|
2989
|
-
|
|
2990
|
-
|
|
2989
|
+
doseRange?: {
|
|
2990
|
+
low?: {
|
|
2991
2991
|
value: number;
|
|
2992
2992
|
code?: string | undefined;
|
|
2993
2993
|
system?: string | undefined;
|
|
2994
2994
|
unit?: string | undefined;
|
|
2995
2995
|
} | undefined;
|
|
2996
|
-
|
|
2996
|
+
high?: {
|
|
2997
2997
|
value: number;
|
|
2998
2998
|
code?: string | undefined;
|
|
2999
2999
|
system?: string | undefined;
|
|
3000
3000
|
unit?: string | undefined;
|
|
3001
3001
|
} | undefined;
|
|
3002
3002
|
} | undefined;
|
|
3003
|
+
doseQuantity?: {
|
|
3004
|
+
value: number;
|
|
3005
|
+
code?: string | undefined;
|
|
3006
|
+
system?: string | undefined;
|
|
3007
|
+
unit?: string | undefined;
|
|
3008
|
+
} | undefined;
|
|
3003
3009
|
rateRange?: {
|
|
3004
3010
|
low?: {
|
|
3005
3011
|
value: number;
|
|
@@ -3014,12 +3020,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3014
3020
|
unit?: string | undefined;
|
|
3015
3021
|
} | undefined;
|
|
3016
3022
|
} | undefined;
|
|
3017
|
-
rateQuantity?: {
|
|
3018
|
-
value: number;
|
|
3019
|
-
code?: string | undefined;
|
|
3020
|
-
system?: string | undefined;
|
|
3021
|
-
unit?: string | undefined;
|
|
3022
|
-
} | undefined;
|
|
3023
3023
|
}>, "many">>;
|
|
3024
3024
|
maxDosePerPeriod: z.ZodOptional<z.ZodObject<{
|
|
3025
3025
|
numerator: z.ZodOptional<z.ZodObject<{
|
|
@@ -3123,6 +3123,22 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3123
3123
|
}[] | undefined;
|
|
3124
3124
|
text?: string | undefined;
|
|
3125
3125
|
} | undefined;
|
|
3126
|
+
site?: {
|
|
3127
|
+
coding?: {
|
|
3128
|
+
code?: string | undefined;
|
|
3129
|
+
system?: string | undefined;
|
|
3130
|
+
display?: string | undefined;
|
|
3131
|
+
}[] | undefined;
|
|
3132
|
+
text?: string | undefined;
|
|
3133
|
+
} | undefined;
|
|
3134
|
+
route?: {
|
|
3135
|
+
coding?: {
|
|
3136
|
+
code?: string | undefined;
|
|
3137
|
+
system?: string | undefined;
|
|
3138
|
+
display?: string | undefined;
|
|
3139
|
+
}[] | undefined;
|
|
3140
|
+
text?: string | undefined;
|
|
3141
|
+
} | undefined;
|
|
3126
3142
|
sequence?: number | undefined;
|
|
3127
3143
|
additionalInstruction?: {
|
|
3128
3144
|
coding?: {
|
|
@@ -3162,22 +3178,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3162
3178
|
} | undefined;
|
|
3163
3179
|
} | undefined;
|
|
3164
3180
|
asNeededBoolean?: boolean | undefined;
|
|
3165
|
-
site?: {
|
|
3166
|
-
coding?: {
|
|
3167
|
-
code?: string | undefined;
|
|
3168
|
-
system?: string | undefined;
|
|
3169
|
-
display?: string | undefined;
|
|
3170
|
-
}[] | undefined;
|
|
3171
|
-
text?: string | undefined;
|
|
3172
|
-
} | undefined;
|
|
3173
|
-
route?: {
|
|
3174
|
-
coding?: {
|
|
3175
|
-
code?: string | undefined;
|
|
3176
|
-
system?: string | undefined;
|
|
3177
|
-
display?: string | undefined;
|
|
3178
|
-
}[] | undefined;
|
|
3179
|
-
text?: string | undefined;
|
|
3180
|
-
} | undefined;
|
|
3181
3181
|
doseAndRate?: {
|
|
3182
3182
|
type?: {
|
|
3183
3183
|
coding?: {
|
|
@@ -3187,40 +3187,46 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3187
3187
|
}[] | undefined;
|
|
3188
3188
|
text?: string | undefined;
|
|
3189
3189
|
} | undefined;
|
|
3190
|
-
|
|
3191
|
-
|
|
3190
|
+
rateRatio?: {
|
|
3191
|
+
numerator?: {
|
|
3192
3192
|
value: number;
|
|
3193
3193
|
code?: string | undefined;
|
|
3194
3194
|
system?: string | undefined;
|
|
3195
3195
|
unit?: string | undefined;
|
|
3196
3196
|
} | undefined;
|
|
3197
|
-
|
|
3197
|
+
denominator?: {
|
|
3198
3198
|
value: number;
|
|
3199
3199
|
code?: string | undefined;
|
|
3200
3200
|
system?: string | undefined;
|
|
3201
3201
|
unit?: string | undefined;
|
|
3202
3202
|
} | undefined;
|
|
3203
3203
|
} | undefined;
|
|
3204
|
-
|
|
3204
|
+
rateQuantity?: {
|
|
3205
3205
|
value: number;
|
|
3206
3206
|
code?: string | undefined;
|
|
3207
3207
|
system?: string | undefined;
|
|
3208
3208
|
unit?: string | undefined;
|
|
3209
3209
|
} | undefined;
|
|
3210
|
-
|
|
3211
|
-
|
|
3210
|
+
doseRange?: {
|
|
3211
|
+
low?: {
|
|
3212
3212
|
value: number;
|
|
3213
3213
|
code?: string | undefined;
|
|
3214
3214
|
system?: string | undefined;
|
|
3215
3215
|
unit?: string | undefined;
|
|
3216
3216
|
} | undefined;
|
|
3217
|
-
|
|
3217
|
+
high?: {
|
|
3218
3218
|
value: number;
|
|
3219
3219
|
code?: string | undefined;
|
|
3220
3220
|
system?: string | undefined;
|
|
3221
3221
|
unit?: string | undefined;
|
|
3222
3222
|
} | undefined;
|
|
3223
3223
|
} | undefined;
|
|
3224
|
+
doseQuantity?: {
|
|
3225
|
+
value: number;
|
|
3226
|
+
code?: string | undefined;
|
|
3227
|
+
system?: string | undefined;
|
|
3228
|
+
unit?: string | undefined;
|
|
3229
|
+
} | undefined;
|
|
3224
3230
|
rateRange?: {
|
|
3225
3231
|
low?: {
|
|
3226
3232
|
value: number;
|
|
@@ -3235,12 +3241,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3235
3241
|
unit?: string | undefined;
|
|
3236
3242
|
} | undefined;
|
|
3237
3243
|
} | undefined;
|
|
3238
|
-
rateQuantity?: {
|
|
3239
|
-
value: number;
|
|
3240
|
-
code?: string | undefined;
|
|
3241
|
-
system?: string | undefined;
|
|
3242
|
-
unit?: string | undefined;
|
|
3243
|
-
} | undefined;
|
|
3244
3244
|
}[] | undefined;
|
|
3245
3245
|
maxDosePerPeriod?: {
|
|
3246
3246
|
numerator?: {
|
|
@@ -3278,6 +3278,22 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3278
3278
|
}[] | undefined;
|
|
3279
3279
|
text?: string | undefined;
|
|
3280
3280
|
} | undefined;
|
|
3281
|
+
site?: {
|
|
3282
|
+
coding?: {
|
|
3283
|
+
code?: string | undefined;
|
|
3284
|
+
system?: string | undefined;
|
|
3285
|
+
display?: string | undefined;
|
|
3286
|
+
}[] | undefined;
|
|
3287
|
+
text?: string | undefined;
|
|
3288
|
+
} | undefined;
|
|
3289
|
+
route?: {
|
|
3290
|
+
coding?: {
|
|
3291
|
+
code?: string | undefined;
|
|
3292
|
+
system?: string | undefined;
|
|
3293
|
+
display?: string | undefined;
|
|
3294
|
+
}[] | undefined;
|
|
3295
|
+
text?: string | undefined;
|
|
3296
|
+
} | undefined;
|
|
3281
3297
|
sequence?: number | undefined;
|
|
3282
3298
|
additionalInstruction?: {
|
|
3283
3299
|
coding?: {
|
|
@@ -3317,22 +3333,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3317
3333
|
} | undefined;
|
|
3318
3334
|
} | undefined;
|
|
3319
3335
|
asNeededBoolean?: boolean | undefined;
|
|
3320
|
-
site?: {
|
|
3321
|
-
coding?: {
|
|
3322
|
-
code?: string | undefined;
|
|
3323
|
-
system?: string | undefined;
|
|
3324
|
-
display?: string | undefined;
|
|
3325
|
-
}[] | undefined;
|
|
3326
|
-
text?: string | undefined;
|
|
3327
|
-
} | undefined;
|
|
3328
|
-
route?: {
|
|
3329
|
-
coding?: {
|
|
3330
|
-
code?: string | undefined;
|
|
3331
|
-
system?: string | undefined;
|
|
3332
|
-
display?: string | undefined;
|
|
3333
|
-
}[] | undefined;
|
|
3334
|
-
text?: string | undefined;
|
|
3335
|
-
} | undefined;
|
|
3336
3336
|
doseAndRate?: {
|
|
3337
3337
|
type?: {
|
|
3338
3338
|
coding?: {
|
|
@@ -3342,40 +3342,46 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3342
3342
|
}[] | undefined;
|
|
3343
3343
|
text?: string | undefined;
|
|
3344
3344
|
} | undefined;
|
|
3345
|
-
|
|
3346
|
-
|
|
3345
|
+
rateRatio?: {
|
|
3346
|
+
numerator?: {
|
|
3347
3347
|
value: number;
|
|
3348
3348
|
code?: string | undefined;
|
|
3349
3349
|
system?: string | undefined;
|
|
3350
3350
|
unit?: string | undefined;
|
|
3351
3351
|
} | undefined;
|
|
3352
|
-
|
|
3352
|
+
denominator?: {
|
|
3353
3353
|
value: number;
|
|
3354
3354
|
code?: string | undefined;
|
|
3355
3355
|
system?: string | undefined;
|
|
3356
3356
|
unit?: string | undefined;
|
|
3357
3357
|
} | undefined;
|
|
3358
3358
|
} | undefined;
|
|
3359
|
-
|
|
3359
|
+
rateQuantity?: {
|
|
3360
3360
|
value: number;
|
|
3361
3361
|
code?: string | undefined;
|
|
3362
3362
|
system?: string | undefined;
|
|
3363
3363
|
unit?: string | undefined;
|
|
3364
3364
|
} | undefined;
|
|
3365
|
-
|
|
3366
|
-
|
|
3365
|
+
doseRange?: {
|
|
3366
|
+
low?: {
|
|
3367
3367
|
value: number;
|
|
3368
3368
|
code?: string | undefined;
|
|
3369
3369
|
system?: string | undefined;
|
|
3370
3370
|
unit?: string | undefined;
|
|
3371
3371
|
} | undefined;
|
|
3372
|
-
|
|
3372
|
+
high?: {
|
|
3373
3373
|
value: number;
|
|
3374
3374
|
code?: string | undefined;
|
|
3375
3375
|
system?: string | undefined;
|
|
3376
3376
|
unit?: string | undefined;
|
|
3377
3377
|
} | undefined;
|
|
3378
3378
|
} | undefined;
|
|
3379
|
+
doseQuantity?: {
|
|
3380
|
+
value: number;
|
|
3381
|
+
code?: string | undefined;
|
|
3382
|
+
system?: string | undefined;
|
|
3383
|
+
unit?: string | undefined;
|
|
3384
|
+
} | undefined;
|
|
3379
3385
|
rateRange?: {
|
|
3380
3386
|
low?: {
|
|
3381
3387
|
value: number;
|
|
@@ -3390,12 +3396,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3390
3396
|
unit?: string | undefined;
|
|
3391
3397
|
} | undefined;
|
|
3392
3398
|
} | undefined;
|
|
3393
|
-
rateQuantity?: {
|
|
3394
|
-
value: number;
|
|
3395
|
-
code?: string | undefined;
|
|
3396
|
-
system?: string | undefined;
|
|
3397
|
-
unit?: string | undefined;
|
|
3398
|
-
} | undefined;
|
|
3399
3399
|
}[] | undefined;
|
|
3400
3400
|
maxDosePerPeriod?: {
|
|
3401
3401
|
numerator?: {
|
|
@@ -3656,42 +3656,24 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3656
3656
|
} | undefined;
|
|
3657
3657
|
}>>;
|
|
3658
3658
|
}, "strip", z.ZodTypeAny, {
|
|
3659
|
-
status: "unknown" | "active" | "
|
|
3659
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
3660
3660
|
resourceType: "MedicationRequest";
|
|
3661
3661
|
subject: {
|
|
3662
3662
|
reference: string;
|
|
3663
3663
|
type?: string | undefined;
|
|
3664
3664
|
display?: string | undefined;
|
|
3665
3665
|
};
|
|
3666
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
3667
3666
|
medicationReference: {
|
|
3668
3667
|
reference: string;
|
|
3669
3668
|
type?: string | undefined;
|
|
3670
3669
|
display?: string | undefined;
|
|
3671
3670
|
};
|
|
3671
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
3672
3672
|
identifier?: {
|
|
3673
3673
|
value: string;
|
|
3674
3674
|
system: string;
|
|
3675
3675
|
use?: string | undefined;
|
|
3676
3676
|
}[] | undefined;
|
|
3677
|
-
encounter?: {
|
|
3678
|
-
reference: string;
|
|
3679
|
-
type?: string | undefined;
|
|
3680
|
-
display?: string | undefined;
|
|
3681
|
-
} | undefined;
|
|
3682
|
-
category?: {
|
|
3683
|
-
coding?: {
|
|
3684
|
-
code?: string | undefined;
|
|
3685
|
-
system?: string | undefined;
|
|
3686
|
-
display?: string | undefined;
|
|
3687
|
-
}[] | undefined;
|
|
3688
|
-
text?: string | undefined;
|
|
3689
|
-
}[] | undefined;
|
|
3690
|
-
recorder?: {
|
|
3691
|
-
reference: string;
|
|
3692
|
-
type?: string | undefined;
|
|
3693
|
-
display?: string | undefined;
|
|
3694
|
-
} | undefined;
|
|
3695
3677
|
note?: {
|
|
3696
3678
|
text: string;
|
|
3697
3679
|
authorReference?: {
|
|
@@ -3702,12 +3684,20 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3702
3684
|
authorString?: string | undefined;
|
|
3703
3685
|
time?: string | undefined;
|
|
3704
3686
|
}[] | undefined;
|
|
3705
|
-
|
|
3687
|
+
category?: {
|
|
3688
|
+
coding?: {
|
|
3689
|
+
code?: string | undefined;
|
|
3690
|
+
system?: string | undefined;
|
|
3691
|
+
display?: string | undefined;
|
|
3692
|
+
}[] | undefined;
|
|
3693
|
+
text?: string | undefined;
|
|
3694
|
+
}[] | undefined;
|
|
3695
|
+
encounter?: {
|
|
3706
3696
|
reference: string;
|
|
3707
3697
|
type?: string | undefined;
|
|
3708
3698
|
display?: string | undefined;
|
|
3709
|
-
}
|
|
3710
|
-
|
|
3699
|
+
} | undefined;
|
|
3700
|
+
recorder?: {
|
|
3711
3701
|
reference: string;
|
|
3712
3702
|
type?: string | undefined;
|
|
3713
3703
|
display?: string | undefined;
|
|
@@ -3720,6 +3710,16 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3720
3710
|
}[] | undefined;
|
|
3721
3711
|
text?: string | undefined;
|
|
3722
3712
|
} | undefined;
|
|
3713
|
+
basedOn?: {
|
|
3714
|
+
reference: string;
|
|
3715
|
+
type?: string | undefined;
|
|
3716
|
+
display?: string | undefined;
|
|
3717
|
+
}[] | undefined;
|
|
3718
|
+
performer?: {
|
|
3719
|
+
reference: string;
|
|
3720
|
+
type?: string | undefined;
|
|
3721
|
+
display?: string | undefined;
|
|
3722
|
+
} | undefined;
|
|
3723
3723
|
reasonCode?: {
|
|
3724
3724
|
coding?: {
|
|
3725
3725
|
code?: string | undefined;
|
|
@@ -3764,6 +3764,22 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3764
3764
|
}[] | undefined;
|
|
3765
3765
|
text?: string | undefined;
|
|
3766
3766
|
} | undefined;
|
|
3767
|
+
site?: {
|
|
3768
|
+
coding?: {
|
|
3769
|
+
code?: string | undefined;
|
|
3770
|
+
system?: string | undefined;
|
|
3771
|
+
display?: string | undefined;
|
|
3772
|
+
}[] | undefined;
|
|
3773
|
+
text?: string | undefined;
|
|
3774
|
+
} | undefined;
|
|
3775
|
+
route?: {
|
|
3776
|
+
coding?: {
|
|
3777
|
+
code?: string | undefined;
|
|
3778
|
+
system?: string | undefined;
|
|
3779
|
+
display?: string | undefined;
|
|
3780
|
+
}[] | undefined;
|
|
3781
|
+
text?: string | undefined;
|
|
3782
|
+
} | undefined;
|
|
3767
3783
|
sequence?: number | undefined;
|
|
3768
3784
|
additionalInstruction?: {
|
|
3769
3785
|
coding?: {
|
|
@@ -3803,22 +3819,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3803
3819
|
} | undefined;
|
|
3804
3820
|
} | undefined;
|
|
3805
3821
|
asNeededBoolean?: boolean | undefined;
|
|
3806
|
-
site?: {
|
|
3807
|
-
coding?: {
|
|
3808
|
-
code?: string | undefined;
|
|
3809
|
-
system?: string | undefined;
|
|
3810
|
-
display?: string | undefined;
|
|
3811
|
-
}[] | undefined;
|
|
3812
|
-
text?: string | undefined;
|
|
3813
|
-
} | undefined;
|
|
3814
|
-
route?: {
|
|
3815
|
-
coding?: {
|
|
3816
|
-
code?: string | undefined;
|
|
3817
|
-
system?: string | undefined;
|
|
3818
|
-
display?: string | undefined;
|
|
3819
|
-
}[] | undefined;
|
|
3820
|
-
text?: string | undefined;
|
|
3821
|
-
} | undefined;
|
|
3822
3822
|
doseAndRate?: {
|
|
3823
3823
|
type?: {
|
|
3824
3824
|
coding?: {
|
|
@@ -3828,40 +3828,46 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3828
3828
|
}[] | undefined;
|
|
3829
3829
|
text?: string | undefined;
|
|
3830
3830
|
} | undefined;
|
|
3831
|
-
|
|
3832
|
-
|
|
3831
|
+
rateRatio?: {
|
|
3832
|
+
numerator?: {
|
|
3833
3833
|
value: number;
|
|
3834
3834
|
code?: string | undefined;
|
|
3835
3835
|
system?: string | undefined;
|
|
3836
3836
|
unit?: string | undefined;
|
|
3837
3837
|
} | undefined;
|
|
3838
|
-
|
|
3838
|
+
denominator?: {
|
|
3839
3839
|
value: number;
|
|
3840
3840
|
code?: string | undefined;
|
|
3841
3841
|
system?: string | undefined;
|
|
3842
3842
|
unit?: string | undefined;
|
|
3843
3843
|
} | undefined;
|
|
3844
3844
|
} | undefined;
|
|
3845
|
-
|
|
3845
|
+
rateQuantity?: {
|
|
3846
3846
|
value: number;
|
|
3847
3847
|
code?: string | undefined;
|
|
3848
3848
|
system?: string | undefined;
|
|
3849
3849
|
unit?: string | undefined;
|
|
3850
3850
|
} | undefined;
|
|
3851
|
-
|
|
3852
|
-
|
|
3851
|
+
doseRange?: {
|
|
3852
|
+
low?: {
|
|
3853
3853
|
value: number;
|
|
3854
3854
|
code?: string | undefined;
|
|
3855
3855
|
system?: string | undefined;
|
|
3856
3856
|
unit?: string | undefined;
|
|
3857
3857
|
} | undefined;
|
|
3858
|
-
|
|
3858
|
+
high?: {
|
|
3859
3859
|
value: number;
|
|
3860
3860
|
code?: string | undefined;
|
|
3861
3861
|
system?: string | undefined;
|
|
3862
3862
|
unit?: string | undefined;
|
|
3863
3863
|
} | undefined;
|
|
3864
3864
|
} | undefined;
|
|
3865
|
+
doseQuantity?: {
|
|
3866
|
+
value: number;
|
|
3867
|
+
code?: string | undefined;
|
|
3868
|
+
system?: string | undefined;
|
|
3869
|
+
unit?: string | undefined;
|
|
3870
|
+
} | undefined;
|
|
3865
3871
|
rateRange?: {
|
|
3866
3872
|
low?: {
|
|
3867
3873
|
value: number;
|
|
@@ -3876,12 +3882,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3876
3882
|
unit?: string | undefined;
|
|
3877
3883
|
} | undefined;
|
|
3878
3884
|
} | undefined;
|
|
3879
|
-
rateQuantity?: {
|
|
3880
|
-
value: number;
|
|
3881
|
-
code?: string | undefined;
|
|
3882
|
-
system?: string | undefined;
|
|
3883
|
-
unit?: string | undefined;
|
|
3884
|
-
} | undefined;
|
|
3885
3885
|
}[] | undefined;
|
|
3886
3886
|
maxDosePerPeriod?: {
|
|
3887
3887
|
numerator?: {
|
|
@@ -3960,42 +3960,24 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
3960
3960
|
} | undefined;
|
|
3961
3961
|
} | undefined;
|
|
3962
3962
|
}, {
|
|
3963
|
-
status: "unknown" | "active" | "
|
|
3963
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
3964
3964
|
resourceType: "MedicationRequest";
|
|
3965
3965
|
subject: {
|
|
3966
3966
|
reference: string;
|
|
3967
3967
|
type?: string | undefined;
|
|
3968
3968
|
display?: string | undefined;
|
|
3969
3969
|
};
|
|
3970
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
3971
3970
|
medicationReference: {
|
|
3972
3971
|
reference: string;
|
|
3973
3972
|
type?: string | undefined;
|
|
3974
3973
|
display?: string | undefined;
|
|
3975
3974
|
};
|
|
3975
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
3976
3976
|
identifier?: {
|
|
3977
3977
|
value: string;
|
|
3978
3978
|
system: string;
|
|
3979
3979
|
use?: string | undefined;
|
|
3980
3980
|
}[] | undefined;
|
|
3981
|
-
encounter?: {
|
|
3982
|
-
reference: string;
|
|
3983
|
-
type?: string | undefined;
|
|
3984
|
-
display?: string | undefined;
|
|
3985
|
-
} | undefined;
|
|
3986
|
-
category?: {
|
|
3987
|
-
coding?: {
|
|
3988
|
-
code?: string | undefined;
|
|
3989
|
-
system?: string | undefined;
|
|
3990
|
-
display?: string | undefined;
|
|
3991
|
-
}[] | undefined;
|
|
3992
|
-
text?: string | undefined;
|
|
3993
|
-
}[] | undefined;
|
|
3994
|
-
recorder?: {
|
|
3995
|
-
reference: string;
|
|
3996
|
-
type?: string | undefined;
|
|
3997
|
-
display?: string | undefined;
|
|
3998
|
-
} | undefined;
|
|
3999
3981
|
note?: {
|
|
4000
3982
|
text: string;
|
|
4001
3983
|
authorReference?: {
|
|
@@ -4006,12 +3988,20 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
4006
3988
|
authorString?: string | undefined;
|
|
4007
3989
|
time?: string | undefined;
|
|
4008
3990
|
}[] | undefined;
|
|
4009
|
-
|
|
3991
|
+
category?: {
|
|
3992
|
+
coding?: {
|
|
3993
|
+
code?: string | undefined;
|
|
3994
|
+
system?: string | undefined;
|
|
3995
|
+
display?: string | undefined;
|
|
3996
|
+
}[] | undefined;
|
|
3997
|
+
text?: string | undefined;
|
|
3998
|
+
}[] | undefined;
|
|
3999
|
+
encounter?: {
|
|
4010
4000
|
reference: string;
|
|
4011
4001
|
type?: string | undefined;
|
|
4012
4002
|
display?: string | undefined;
|
|
4013
|
-
}
|
|
4014
|
-
|
|
4003
|
+
} | undefined;
|
|
4004
|
+
recorder?: {
|
|
4015
4005
|
reference: string;
|
|
4016
4006
|
type?: string | undefined;
|
|
4017
4007
|
display?: string | undefined;
|
|
@@ -4024,6 +4014,16 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
4024
4014
|
}[] | undefined;
|
|
4025
4015
|
text?: string | undefined;
|
|
4026
4016
|
} | undefined;
|
|
4017
|
+
basedOn?: {
|
|
4018
|
+
reference: string;
|
|
4019
|
+
type?: string | undefined;
|
|
4020
|
+
display?: string | undefined;
|
|
4021
|
+
}[] | undefined;
|
|
4022
|
+
performer?: {
|
|
4023
|
+
reference: string;
|
|
4024
|
+
type?: string | undefined;
|
|
4025
|
+
display?: string | undefined;
|
|
4026
|
+
} | undefined;
|
|
4027
4027
|
reasonCode?: {
|
|
4028
4028
|
coding?: {
|
|
4029
4029
|
code?: string | undefined;
|
|
@@ -4068,6 +4068,22 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
4068
4068
|
}[] | undefined;
|
|
4069
4069
|
text?: string | undefined;
|
|
4070
4070
|
} | undefined;
|
|
4071
|
+
site?: {
|
|
4072
|
+
coding?: {
|
|
4073
|
+
code?: string | undefined;
|
|
4074
|
+
system?: string | undefined;
|
|
4075
|
+
display?: string | undefined;
|
|
4076
|
+
}[] | undefined;
|
|
4077
|
+
text?: string | undefined;
|
|
4078
|
+
} | undefined;
|
|
4079
|
+
route?: {
|
|
4080
|
+
coding?: {
|
|
4081
|
+
code?: string | undefined;
|
|
4082
|
+
system?: string | undefined;
|
|
4083
|
+
display?: string | undefined;
|
|
4084
|
+
}[] | undefined;
|
|
4085
|
+
text?: string | undefined;
|
|
4086
|
+
} | undefined;
|
|
4071
4087
|
sequence?: number | undefined;
|
|
4072
4088
|
additionalInstruction?: {
|
|
4073
4089
|
coding?: {
|
|
@@ -4107,22 +4123,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
4107
4123
|
} | undefined;
|
|
4108
4124
|
} | undefined;
|
|
4109
4125
|
asNeededBoolean?: boolean | undefined;
|
|
4110
|
-
site?: {
|
|
4111
|
-
coding?: {
|
|
4112
|
-
code?: string | undefined;
|
|
4113
|
-
system?: string | undefined;
|
|
4114
|
-
display?: string | undefined;
|
|
4115
|
-
}[] | undefined;
|
|
4116
|
-
text?: string | undefined;
|
|
4117
|
-
} | undefined;
|
|
4118
|
-
route?: {
|
|
4119
|
-
coding?: {
|
|
4120
|
-
code?: string | undefined;
|
|
4121
|
-
system?: string | undefined;
|
|
4122
|
-
display?: string | undefined;
|
|
4123
|
-
}[] | undefined;
|
|
4124
|
-
text?: string | undefined;
|
|
4125
|
-
} | undefined;
|
|
4126
4126
|
doseAndRate?: {
|
|
4127
4127
|
type?: {
|
|
4128
4128
|
coding?: {
|
|
@@ -4132,40 +4132,46 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
4132
4132
|
}[] | undefined;
|
|
4133
4133
|
text?: string | undefined;
|
|
4134
4134
|
} | undefined;
|
|
4135
|
-
|
|
4136
|
-
|
|
4135
|
+
rateRatio?: {
|
|
4136
|
+
numerator?: {
|
|
4137
4137
|
value: number;
|
|
4138
4138
|
code?: string | undefined;
|
|
4139
4139
|
system?: string | undefined;
|
|
4140
4140
|
unit?: string | undefined;
|
|
4141
4141
|
} | undefined;
|
|
4142
|
-
|
|
4142
|
+
denominator?: {
|
|
4143
4143
|
value: number;
|
|
4144
4144
|
code?: string | undefined;
|
|
4145
4145
|
system?: string | undefined;
|
|
4146
4146
|
unit?: string | undefined;
|
|
4147
4147
|
} | undefined;
|
|
4148
4148
|
} | undefined;
|
|
4149
|
-
|
|
4149
|
+
rateQuantity?: {
|
|
4150
4150
|
value: number;
|
|
4151
4151
|
code?: string | undefined;
|
|
4152
4152
|
system?: string | undefined;
|
|
4153
4153
|
unit?: string | undefined;
|
|
4154
4154
|
} | undefined;
|
|
4155
|
-
|
|
4156
|
-
|
|
4155
|
+
doseRange?: {
|
|
4156
|
+
low?: {
|
|
4157
4157
|
value: number;
|
|
4158
4158
|
code?: string | undefined;
|
|
4159
4159
|
system?: string | undefined;
|
|
4160
4160
|
unit?: string | undefined;
|
|
4161
4161
|
} | undefined;
|
|
4162
|
-
|
|
4162
|
+
high?: {
|
|
4163
4163
|
value: number;
|
|
4164
4164
|
code?: string | undefined;
|
|
4165
4165
|
system?: string | undefined;
|
|
4166
4166
|
unit?: string | undefined;
|
|
4167
4167
|
} | undefined;
|
|
4168
4168
|
} | undefined;
|
|
4169
|
+
doseQuantity?: {
|
|
4170
|
+
value: number;
|
|
4171
|
+
code?: string | undefined;
|
|
4172
|
+
system?: string | undefined;
|
|
4173
|
+
unit?: string | undefined;
|
|
4174
|
+
} | undefined;
|
|
4169
4175
|
rateRange?: {
|
|
4170
4176
|
low?: {
|
|
4171
4177
|
value: number;
|
|
@@ -4180,12 +4186,6 @@ export declare const MedicationRequestBaseSchema: z.ZodObject<{
|
|
|
4180
4186
|
unit?: string | undefined;
|
|
4181
4187
|
} | undefined;
|
|
4182
4188
|
} | undefined;
|
|
4183
|
-
rateQuantity?: {
|
|
4184
|
-
value: number;
|
|
4185
|
-
code?: string | undefined;
|
|
4186
|
-
system?: string | undefined;
|
|
4187
|
-
unit?: string | undefined;
|
|
4188
|
-
} | undefined;
|
|
4189
4189
|
}[] | undefined;
|
|
4190
4190
|
maxDosePerPeriod?: {
|
|
4191
4191
|
numerator?: {
|
|
@@ -5079,40 +5079,46 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5079
5079
|
}[] | undefined;
|
|
5080
5080
|
text?: string | undefined;
|
|
5081
5081
|
} | undefined;
|
|
5082
|
-
|
|
5083
|
-
|
|
5082
|
+
rateRatio?: {
|
|
5083
|
+
numerator?: {
|
|
5084
5084
|
value: number;
|
|
5085
5085
|
code?: string | undefined;
|
|
5086
5086
|
system?: string | undefined;
|
|
5087
5087
|
unit?: string | undefined;
|
|
5088
5088
|
} | undefined;
|
|
5089
|
-
|
|
5089
|
+
denominator?: {
|
|
5090
5090
|
value: number;
|
|
5091
5091
|
code?: string | undefined;
|
|
5092
5092
|
system?: string | undefined;
|
|
5093
5093
|
unit?: string | undefined;
|
|
5094
5094
|
} | undefined;
|
|
5095
5095
|
} | undefined;
|
|
5096
|
-
|
|
5096
|
+
rateQuantity?: {
|
|
5097
5097
|
value: number;
|
|
5098
5098
|
code?: string | undefined;
|
|
5099
5099
|
system?: string | undefined;
|
|
5100
5100
|
unit?: string | undefined;
|
|
5101
5101
|
} | undefined;
|
|
5102
|
-
|
|
5103
|
-
|
|
5102
|
+
doseRange?: {
|
|
5103
|
+
low?: {
|
|
5104
5104
|
value: number;
|
|
5105
5105
|
code?: string | undefined;
|
|
5106
5106
|
system?: string | undefined;
|
|
5107
5107
|
unit?: string | undefined;
|
|
5108
5108
|
} | undefined;
|
|
5109
|
-
|
|
5109
|
+
high?: {
|
|
5110
5110
|
value: number;
|
|
5111
5111
|
code?: string | undefined;
|
|
5112
5112
|
system?: string | undefined;
|
|
5113
5113
|
unit?: string | undefined;
|
|
5114
5114
|
} | undefined;
|
|
5115
5115
|
} | undefined;
|
|
5116
|
+
doseQuantity?: {
|
|
5117
|
+
value: number;
|
|
5118
|
+
code?: string | undefined;
|
|
5119
|
+
system?: string | undefined;
|
|
5120
|
+
unit?: string | undefined;
|
|
5121
|
+
} | undefined;
|
|
5116
5122
|
rateRange?: {
|
|
5117
5123
|
low?: {
|
|
5118
5124
|
value: number;
|
|
@@ -5127,12 +5133,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5127
5133
|
unit?: string | undefined;
|
|
5128
5134
|
} | undefined;
|
|
5129
5135
|
} | undefined;
|
|
5130
|
-
rateQuantity?: {
|
|
5131
|
-
value: number;
|
|
5132
|
-
code?: string | undefined;
|
|
5133
|
-
system?: string | undefined;
|
|
5134
|
-
unit?: string | undefined;
|
|
5135
|
-
} | undefined;
|
|
5136
5136
|
}, {
|
|
5137
5137
|
type?: {
|
|
5138
5138
|
coding?: {
|
|
@@ -5142,40 +5142,46 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5142
5142
|
}[] | undefined;
|
|
5143
5143
|
text?: string | undefined;
|
|
5144
5144
|
} | undefined;
|
|
5145
|
-
|
|
5146
|
-
|
|
5145
|
+
rateRatio?: {
|
|
5146
|
+
numerator?: {
|
|
5147
5147
|
value: number;
|
|
5148
5148
|
code?: string | undefined;
|
|
5149
5149
|
system?: string | undefined;
|
|
5150
5150
|
unit?: string | undefined;
|
|
5151
5151
|
} | undefined;
|
|
5152
|
-
|
|
5152
|
+
denominator?: {
|
|
5153
5153
|
value: number;
|
|
5154
5154
|
code?: string | undefined;
|
|
5155
5155
|
system?: string | undefined;
|
|
5156
5156
|
unit?: string | undefined;
|
|
5157
5157
|
} | undefined;
|
|
5158
5158
|
} | undefined;
|
|
5159
|
-
|
|
5159
|
+
rateQuantity?: {
|
|
5160
5160
|
value: number;
|
|
5161
5161
|
code?: string | undefined;
|
|
5162
5162
|
system?: string | undefined;
|
|
5163
5163
|
unit?: string | undefined;
|
|
5164
5164
|
} | undefined;
|
|
5165
|
-
|
|
5166
|
-
|
|
5165
|
+
doseRange?: {
|
|
5166
|
+
low?: {
|
|
5167
5167
|
value: number;
|
|
5168
5168
|
code?: string | undefined;
|
|
5169
5169
|
system?: string | undefined;
|
|
5170
5170
|
unit?: string | undefined;
|
|
5171
5171
|
} | undefined;
|
|
5172
|
-
|
|
5172
|
+
high?: {
|
|
5173
5173
|
value: number;
|
|
5174
5174
|
code?: string | undefined;
|
|
5175
5175
|
system?: string | undefined;
|
|
5176
5176
|
unit?: string | undefined;
|
|
5177
5177
|
} | undefined;
|
|
5178
5178
|
} | undefined;
|
|
5179
|
+
doseQuantity?: {
|
|
5180
|
+
value: number;
|
|
5181
|
+
code?: string | undefined;
|
|
5182
|
+
system?: string | undefined;
|
|
5183
|
+
unit?: string | undefined;
|
|
5184
|
+
} | undefined;
|
|
5179
5185
|
rateRange?: {
|
|
5180
5186
|
low?: {
|
|
5181
5187
|
value: number;
|
|
@@ -5190,12 +5196,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5190
5196
|
unit?: string | undefined;
|
|
5191
5197
|
} | undefined;
|
|
5192
5198
|
} | undefined;
|
|
5193
|
-
rateQuantity?: {
|
|
5194
|
-
value: number;
|
|
5195
|
-
code?: string | undefined;
|
|
5196
|
-
system?: string | undefined;
|
|
5197
|
-
unit?: string | undefined;
|
|
5198
|
-
} | undefined;
|
|
5199
5199
|
}>, "many">>;
|
|
5200
5200
|
maxDosePerPeriod: z.ZodOptional<z.ZodObject<{
|
|
5201
5201
|
numerator: z.ZodOptional<z.ZodObject<{
|
|
@@ -5299,6 +5299,22 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5299
5299
|
}[] | undefined;
|
|
5300
5300
|
text?: string | undefined;
|
|
5301
5301
|
} | undefined;
|
|
5302
|
+
site?: {
|
|
5303
|
+
coding?: {
|
|
5304
|
+
code?: string | undefined;
|
|
5305
|
+
system?: string | undefined;
|
|
5306
|
+
display?: string | undefined;
|
|
5307
|
+
}[] | undefined;
|
|
5308
|
+
text?: string | undefined;
|
|
5309
|
+
} | undefined;
|
|
5310
|
+
route?: {
|
|
5311
|
+
coding?: {
|
|
5312
|
+
code?: string | undefined;
|
|
5313
|
+
system?: string | undefined;
|
|
5314
|
+
display?: string | undefined;
|
|
5315
|
+
}[] | undefined;
|
|
5316
|
+
text?: string | undefined;
|
|
5317
|
+
} | undefined;
|
|
5302
5318
|
sequence?: number | undefined;
|
|
5303
5319
|
additionalInstruction?: {
|
|
5304
5320
|
coding?: {
|
|
@@ -5338,22 +5354,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5338
5354
|
} | undefined;
|
|
5339
5355
|
} | undefined;
|
|
5340
5356
|
asNeededBoolean?: boolean | undefined;
|
|
5341
|
-
site?: {
|
|
5342
|
-
coding?: {
|
|
5343
|
-
code?: string | undefined;
|
|
5344
|
-
system?: string | undefined;
|
|
5345
|
-
display?: string | undefined;
|
|
5346
|
-
}[] | undefined;
|
|
5347
|
-
text?: string | undefined;
|
|
5348
|
-
} | undefined;
|
|
5349
|
-
route?: {
|
|
5350
|
-
coding?: {
|
|
5351
|
-
code?: string | undefined;
|
|
5352
|
-
system?: string | undefined;
|
|
5353
|
-
display?: string | undefined;
|
|
5354
|
-
}[] | undefined;
|
|
5355
|
-
text?: string | undefined;
|
|
5356
|
-
} | undefined;
|
|
5357
5357
|
doseAndRate?: {
|
|
5358
5358
|
type?: {
|
|
5359
5359
|
coding?: {
|
|
@@ -5363,40 +5363,46 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5363
5363
|
}[] | undefined;
|
|
5364
5364
|
text?: string | undefined;
|
|
5365
5365
|
} | undefined;
|
|
5366
|
-
|
|
5367
|
-
|
|
5366
|
+
rateRatio?: {
|
|
5367
|
+
numerator?: {
|
|
5368
5368
|
value: number;
|
|
5369
5369
|
code?: string | undefined;
|
|
5370
5370
|
system?: string | undefined;
|
|
5371
5371
|
unit?: string | undefined;
|
|
5372
5372
|
} | undefined;
|
|
5373
|
-
|
|
5373
|
+
denominator?: {
|
|
5374
5374
|
value: number;
|
|
5375
5375
|
code?: string | undefined;
|
|
5376
5376
|
system?: string | undefined;
|
|
5377
5377
|
unit?: string | undefined;
|
|
5378
5378
|
} | undefined;
|
|
5379
5379
|
} | undefined;
|
|
5380
|
-
|
|
5380
|
+
rateQuantity?: {
|
|
5381
5381
|
value: number;
|
|
5382
5382
|
code?: string | undefined;
|
|
5383
5383
|
system?: string | undefined;
|
|
5384
5384
|
unit?: string | undefined;
|
|
5385
5385
|
} | undefined;
|
|
5386
|
-
|
|
5387
|
-
|
|
5386
|
+
doseRange?: {
|
|
5387
|
+
low?: {
|
|
5388
5388
|
value: number;
|
|
5389
5389
|
code?: string | undefined;
|
|
5390
5390
|
system?: string | undefined;
|
|
5391
5391
|
unit?: string | undefined;
|
|
5392
5392
|
} | undefined;
|
|
5393
|
-
|
|
5393
|
+
high?: {
|
|
5394
5394
|
value: number;
|
|
5395
5395
|
code?: string | undefined;
|
|
5396
5396
|
system?: string | undefined;
|
|
5397
5397
|
unit?: string | undefined;
|
|
5398
5398
|
} | undefined;
|
|
5399
5399
|
} | undefined;
|
|
5400
|
+
doseQuantity?: {
|
|
5401
|
+
value: number;
|
|
5402
|
+
code?: string | undefined;
|
|
5403
|
+
system?: string | undefined;
|
|
5404
|
+
unit?: string | undefined;
|
|
5405
|
+
} | undefined;
|
|
5400
5406
|
rateRange?: {
|
|
5401
5407
|
low?: {
|
|
5402
5408
|
value: number;
|
|
@@ -5411,12 +5417,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5411
5417
|
unit?: string | undefined;
|
|
5412
5418
|
} | undefined;
|
|
5413
5419
|
} | undefined;
|
|
5414
|
-
rateQuantity?: {
|
|
5415
|
-
value: number;
|
|
5416
|
-
code?: string | undefined;
|
|
5417
|
-
system?: string | undefined;
|
|
5418
|
-
unit?: string | undefined;
|
|
5419
|
-
} | undefined;
|
|
5420
5420
|
}[] | undefined;
|
|
5421
5421
|
maxDosePerPeriod?: {
|
|
5422
5422
|
numerator?: {
|
|
@@ -5454,6 +5454,22 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5454
5454
|
}[] | undefined;
|
|
5455
5455
|
text?: string | undefined;
|
|
5456
5456
|
} | undefined;
|
|
5457
|
+
site?: {
|
|
5458
|
+
coding?: {
|
|
5459
|
+
code?: string | undefined;
|
|
5460
|
+
system?: string | undefined;
|
|
5461
|
+
display?: string | undefined;
|
|
5462
|
+
}[] | undefined;
|
|
5463
|
+
text?: string | undefined;
|
|
5464
|
+
} | undefined;
|
|
5465
|
+
route?: {
|
|
5466
|
+
coding?: {
|
|
5467
|
+
code?: string | undefined;
|
|
5468
|
+
system?: string | undefined;
|
|
5469
|
+
display?: string | undefined;
|
|
5470
|
+
}[] | undefined;
|
|
5471
|
+
text?: string | undefined;
|
|
5472
|
+
} | undefined;
|
|
5457
5473
|
sequence?: number | undefined;
|
|
5458
5474
|
additionalInstruction?: {
|
|
5459
5475
|
coding?: {
|
|
@@ -5493,22 +5509,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5493
5509
|
} | undefined;
|
|
5494
5510
|
} | undefined;
|
|
5495
5511
|
asNeededBoolean?: boolean | undefined;
|
|
5496
|
-
site?: {
|
|
5497
|
-
coding?: {
|
|
5498
|
-
code?: string | undefined;
|
|
5499
|
-
system?: string | undefined;
|
|
5500
|
-
display?: string | undefined;
|
|
5501
|
-
}[] | undefined;
|
|
5502
|
-
text?: string | undefined;
|
|
5503
|
-
} | undefined;
|
|
5504
|
-
route?: {
|
|
5505
|
-
coding?: {
|
|
5506
|
-
code?: string | undefined;
|
|
5507
|
-
system?: string | undefined;
|
|
5508
|
-
display?: string | undefined;
|
|
5509
|
-
}[] | undefined;
|
|
5510
|
-
text?: string | undefined;
|
|
5511
|
-
} | undefined;
|
|
5512
5512
|
doseAndRate?: {
|
|
5513
5513
|
type?: {
|
|
5514
5514
|
coding?: {
|
|
@@ -5518,40 +5518,46 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5518
5518
|
}[] | undefined;
|
|
5519
5519
|
text?: string | undefined;
|
|
5520
5520
|
} | undefined;
|
|
5521
|
-
|
|
5522
|
-
|
|
5521
|
+
rateRatio?: {
|
|
5522
|
+
numerator?: {
|
|
5523
5523
|
value: number;
|
|
5524
5524
|
code?: string | undefined;
|
|
5525
5525
|
system?: string | undefined;
|
|
5526
5526
|
unit?: string | undefined;
|
|
5527
5527
|
} | undefined;
|
|
5528
|
-
|
|
5528
|
+
denominator?: {
|
|
5529
5529
|
value: number;
|
|
5530
5530
|
code?: string | undefined;
|
|
5531
5531
|
system?: string | undefined;
|
|
5532
5532
|
unit?: string | undefined;
|
|
5533
5533
|
} | undefined;
|
|
5534
5534
|
} | undefined;
|
|
5535
|
-
|
|
5535
|
+
rateQuantity?: {
|
|
5536
5536
|
value: number;
|
|
5537
5537
|
code?: string | undefined;
|
|
5538
5538
|
system?: string | undefined;
|
|
5539
5539
|
unit?: string | undefined;
|
|
5540
5540
|
} | undefined;
|
|
5541
|
-
|
|
5542
|
-
|
|
5541
|
+
doseRange?: {
|
|
5542
|
+
low?: {
|
|
5543
5543
|
value: number;
|
|
5544
5544
|
code?: string | undefined;
|
|
5545
5545
|
system?: string | undefined;
|
|
5546
5546
|
unit?: string | undefined;
|
|
5547
5547
|
} | undefined;
|
|
5548
|
-
|
|
5548
|
+
high?: {
|
|
5549
5549
|
value: number;
|
|
5550
5550
|
code?: string | undefined;
|
|
5551
5551
|
system?: string | undefined;
|
|
5552
5552
|
unit?: string | undefined;
|
|
5553
5553
|
} | undefined;
|
|
5554
5554
|
} | undefined;
|
|
5555
|
+
doseQuantity?: {
|
|
5556
|
+
value: number;
|
|
5557
|
+
code?: string | undefined;
|
|
5558
|
+
system?: string | undefined;
|
|
5559
|
+
unit?: string | undefined;
|
|
5560
|
+
} | undefined;
|
|
5555
5561
|
rateRange?: {
|
|
5556
5562
|
low?: {
|
|
5557
5563
|
value: number;
|
|
@@ -5566,12 +5572,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5566
5572
|
unit?: string | undefined;
|
|
5567
5573
|
} | undefined;
|
|
5568
5574
|
} | undefined;
|
|
5569
|
-
rateQuantity?: {
|
|
5570
|
-
value: number;
|
|
5571
|
-
code?: string | undefined;
|
|
5572
|
-
system?: string | undefined;
|
|
5573
|
-
unit?: string | undefined;
|
|
5574
|
-
} | undefined;
|
|
5575
5575
|
}[] | undefined;
|
|
5576
5576
|
maxDosePerPeriod?: {
|
|
5577
5577
|
numerator?: {
|
|
@@ -5832,42 +5832,24 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5832
5832
|
} | undefined;
|
|
5833
5833
|
}>>;
|
|
5834
5834
|
}, "strip", z.ZodTypeAny, {
|
|
5835
|
-
status: "unknown" | "active" | "
|
|
5835
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
5836
5836
|
resourceType: "MedicationRequest";
|
|
5837
5837
|
subject: {
|
|
5838
5838
|
reference: string;
|
|
5839
5839
|
type?: string | undefined;
|
|
5840
5840
|
display?: string | undefined;
|
|
5841
5841
|
};
|
|
5842
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
5843
5842
|
medicationReference: {
|
|
5844
5843
|
reference: string;
|
|
5845
5844
|
type?: string | undefined;
|
|
5846
5845
|
display?: string | undefined;
|
|
5847
5846
|
};
|
|
5847
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
5848
5848
|
identifier?: {
|
|
5849
5849
|
value: string;
|
|
5850
5850
|
system: string;
|
|
5851
5851
|
use?: string | undefined;
|
|
5852
5852
|
}[] | undefined;
|
|
5853
|
-
encounter?: {
|
|
5854
|
-
reference: string;
|
|
5855
|
-
type?: string | undefined;
|
|
5856
|
-
display?: string | undefined;
|
|
5857
|
-
} | undefined;
|
|
5858
|
-
category?: {
|
|
5859
|
-
coding?: {
|
|
5860
|
-
code?: string | undefined;
|
|
5861
|
-
system?: string | undefined;
|
|
5862
|
-
display?: string | undefined;
|
|
5863
|
-
}[] | undefined;
|
|
5864
|
-
text?: string | undefined;
|
|
5865
|
-
}[] | undefined;
|
|
5866
|
-
recorder?: {
|
|
5867
|
-
reference: string;
|
|
5868
|
-
type?: string | undefined;
|
|
5869
|
-
display?: string | undefined;
|
|
5870
|
-
} | undefined;
|
|
5871
5853
|
note?: {
|
|
5872
5854
|
text: string;
|
|
5873
5855
|
authorReference?: {
|
|
@@ -5878,12 +5860,20 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5878
5860
|
authorString?: string | undefined;
|
|
5879
5861
|
time?: string | undefined;
|
|
5880
5862
|
}[] | undefined;
|
|
5881
|
-
|
|
5863
|
+
category?: {
|
|
5864
|
+
coding?: {
|
|
5865
|
+
code?: string | undefined;
|
|
5866
|
+
system?: string | undefined;
|
|
5867
|
+
display?: string | undefined;
|
|
5868
|
+
}[] | undefined;
|
|
5869
|
+
text?: string | undefined;
|
|
5870
|
+
}[] | undefined;
|
|
5871
|
+
encounter?: {
|
|
5882
5872
|
reference: string;
|
|
5883
5873
|
type?: string | undefined;
|
|
5884
5874
|
display?: string | undefined;
|
|
5885
|
-
}
|
|
5886
|
-
|
|
5875
|
+
} | undefined;
|
|
5876
|
+
recorder?: {
|
|
5887
5877
|
reference: string;
|
|
5888
5878
|
type?: string | undefined;
|
|
5889
5879
|
display?: string | undefined;
|
|
@@ -5896,6 +5886,16 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5896
5886
|
}[] | undefined;
|
|
5897
5887
|
text?: string | undefined;
|
|
5898
5888
|
} | undefined;
|
|
5889
|
+
basedOn?: {
|
|
5890
|
+
reference: string;
|
|
5891
|
+
type?: string | undefined;
|
|
5892
|
+
display?: string | undefined;
|
|
5893
|
+
}[] | undefined;
|
|
5894
|
+
performer?: {
|
|
5895
|
+
reference: string;
|
|
5896
|
+
type?: string | undefined;
|
|
5897
|
+
display?: string | undefined;
|
|
5898
|
+
} | undefined;
|
|
5899
5899
|
reasonCode?: {
|
|
5900
5900
|
coding?: {
|
|
5901
5901
|
code?: string | undefined;
|
|
@@ -5940,6 +5940,22 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5940
5940
|
}[] | undefined;
|
|
5941
5941
|
text?: string | undefined;
|
|
5942
5942
|
} | undefined;
|
|
5943
|
+
site?: {
|
|
5944
|
+
coding?: {
|
|
5945
|
+
code?: string | undefined;
|
|
5946
|
+
system?: string | undefined;
|
|
5947
|
+
display?: string | undefined;
|
|
5948
|
+
}[] | undefined;
|
|
5949
|
+
text?: string | undefined;
|
|
5950
|
+
} | undefined;
|
|
5951
|
+
route?: {
|
|
5952
|
+
coding?: {
|
|
5953
|
+
code?: string | undefined;
|
|
5954
|
+
system?: string | undefined;
|
|
5955
|
+
display?: string | undefined;
|
|
5956
|
+
}[] | undefined;
|
|
5957
|
+
text?: string | undefined;
|
|
5958
|
+
} | undefined;
|
|
5943
5959
|
sequence?: number | undefined;
|
|
5944
5960
|
additionalInstruction?: {
|
|
5945
5961
|
coding?: {
|
|
@@ -5979,22 +5995,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
5979
5995
|
} | undefined;
|
|
5980
5996
|
} | undefined;
|
|
5981
5997
|
asNeededBoolean?: boolean | undefined;
|
|
5982
|
-
site?: {
|
|
5983
|
-
coding?: {
|
|
5984
|
-
code?: string | undefined;
|
|
5985
|
-
system?: string | undefined;
|
|
5986
|
-
display?: string | undefined;
|
|
5987
|
-
}[] | undefined;
|
|
5988
|
-
text?: string | undefined;
|
|
5989
|
-
} | undefined;
|
|
5990
|
-
route?: {
|
|
5991
|
-
coding?: {
|
|
5992
|
-
code?: string | undefined;
|
|
5993
|
-
system?: string | undefined;
|
|
5994
|
-
display?: string | undefined;
|
|
5995
|
-
}[] | undefined;
|
|
5996
|
-
text?: string | undefined;
|
|
5997
|
-
} | undefined;
|
|
5998
5998
|
doseAndRate?: {
|
|
5999
5999
|
type?: {
|
|
6000
6000
|
coding?: {
|
|
@@ -6004,40 +6004,46 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
6004
6004
|
}[] | undefined;
|
|
6005
6005
|
text?: string | undefined;
|
|
6006
6006
|
} | undefined;
|
|
6007
|
-
|
|
6008
|
-
|
|
6007
|
+
rateRatio?: {
|
|
6008
|
+
numerator?: {
|
|
6009
6009
|
value: number;
|
|
6010
6010
|
code?: string | undefined;
|
|
6011
6011
|
system?: string | undefined;
|
|
6012
6012
|
unit?: string | undefined;
|
|
6013
6013
|
} | undefined;
|
|
6014
|
-
|
|
6014
|
+
denominator?: {
|
|
6015
6015
|
value: number;
|
|
6016
6016
|
code?: string | undefined;
|
|
6017
6017
|
system?: string | undefined;
|
|
6018
6018
|
unit?: string | undefined;
|
|
6019
6019
|
} | undefined;
|
|
6020
6020
|
} | undefined;
|
|
6021
|
-
|
|
6021
|
+
rateQuantity?: {
|
|
6022
6022
|
value: number;
|
|
6023
6023
|
code?: string | undefined;
|
|
6024
6024
|
system?: string | undefined;
|
|
6025
6025
|
unit?: string | undefined;
|
|
6026
6026
|
} | undefined;
|
|
6027
|
-
|
|
6028
|
-
|
|
6027
|
+
doseRange?: {
|
|
6028
|
+
low?: {
|
|
6029
6029
|
value: number;
|
|
6030
6030
|
code?: string | undefined;
|
|
6031
6031
|
system?: string | undefined;
|
|
6032
6032
|
unit?: string | undefined;
|
|
6033
6033
|
} | undefined;
|
|
6034
|
-
|
|
6034
|
+
high?: {
|
|
6035
6035
|
value: number;
|
|
6036
6036
|
code?: string | undefined;
|
|
6037
6037
|
system?: string | undefined;
|
|
6038
6038
|
unit?: string | undefined;
|
|
6039
6039
|
} | undefined;
|
|
6040
6040
|
} | undefined;
|
|
6041
|
+
doseQuantity?: {
|
|
6042
|
+
value: number;
|
|
6043
|
+
code?: string | undefined;
|
|
6044
|
+
system?: string | undefined;
|
|
6045
|
+
unit?: string | undefined;
|
|
6046
|
+
} | undefined;
|
|
6041
6047
|
rateRange?: {
|
|
6042
6048
|
low?: {
|
|
6043
6049
|
value: number;
|
|
@@ -6052,12 +6058,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
6052
6058
|
unit?: string | undefined;
|
|
6053
6059
|
} | undefined;
|
|
6054
6060
|
} | undefined;
|
|
6055
|
-
rateQuantity?: {
|
|
6056
|
-
value: number;
|
|
6057
|
-
code?: string | undefined;
|
|
6058
|
-
system?: string | undefined;
|
|
6059
|
-
unit?: string | undefined;
|
|
6060
|
-
} | undefined;
|
|
6061
6061
|
}[] | undefined;
|
|
6062
6062
|
maxDosePerPeriod?: {
|
|
6063
6063
|
numerator?: {
|
|
@@ -6136,42 +6136,24 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
6136
6136
|
} | undefined;
|
|
6137
6137
|
} | undefined;
|
|
6138
6138
|
}, {
|
|
6139
|
-
status: "unknown" | "active" | "
|
|
6139
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
6140
6140
|
resourceType: "MedicationRequest";
|
|
6141
6141
|
subject: {
|
|
6142
6142
|
reference: string;
|
|
6143
6143
|
type?: string | undefined;
|
|
6144
6144
|
display?: string | undefined;
|
|
6145
6145
|
};
|
|
6146
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
6147
6146
|
medicationReference: {
|
|
6148
6147
|
reference: string;
|
|
6149
6148
|
type?: string | undefined;
|
|
6150
6149
|
display?: string | undefined;
|
|
6151
6150
|
};
|
|
6151
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
6152
6152
|
identifier?: {
|
|
6153
6153
|
value: string;
|
|
6154
6154
|
system: string;
|
|
6155
6155
|
use?: string | undefined;
|
|
6156
6156
|
}[] | undefined;
|
|
6157
|
-
encounter?: {
|
|
6158
|
-
reference: string;
|
|
6159
|
-
type?: string | undefined;
|
|
6160
|
-
display?: string | undefined;
|
|
6161
|
-
} | undefined;
|
|
6162
|
-
category?: {
|
|
6163
|
-
coding?: {
|
|
6164
|
-
code?: string | undefined;
|
|
6165
|
-
system?: string | undefined;
|
|
6166
|
-
display?: string | undefined;
|
|
6167
|
-
}[] | undefined;
|
|
6168
|
-
text?: string | undefined;
|
|
6169
|
-
}[] | undefined;
|
|
6170
|
-
recorder?: {
|
|
6171
|
-
reference: string;
|
|
6172
|
-
type?: string | undefined;
|
|
6173
|
-
display?: string | undefined;
|
|
6174
|
-
} | undefined;
|
|
6175
6157
|
note?: {
|
|
6176
6158
|
text: string;
|
|
6177
6159
|
authorReference?: {
|
|
@@ -6182,12 +6164,20 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
6182
6164
|
authorString?: string | undefined;
|
|
6183
6165
|
time?: string | undefined;
|
|
6184
6166
|
}[] | undefined;
|
|
6185
|
-
|
|
6167
|
+
category?: {
|
|
6168
|
+
coding?: {
|
|
6169
|
+
code?: string | undefined;
|
|
6170
|
+
system?: string | undefined;
|
|
6171
|
+
display?: string | undefined;
|
|
6172
|
+
}[] | undefined;
|
|
6173
|
+
text?: string | undefined;
|
|
6174
|
+
}[] | undefined;
|
|
6175
|
+
encounter?: {
|
|
6186
6176
|
reference: string;
|
|
6187
6177
|
type?: string | undefined;
|
|
6188
6178
|
display?: string | undefined;
|
|
6189
|
-
}
|
|
6190
|
-
|
|
6179
|
+
} | undefined;
|
|
6180
|
+
recorder?: {
|
|
6191
6181
|
reference: string;
|
|
6192
6182
|
type?: string | undefined;
|
|
6193
6183
|
display?: string | undefined;
|
|
@@ -6200,6 +6190,16 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
6200
6190
|
}[] | undefined;
|
|
6201
6191
|
text?: string | undefined;
|
|
6202
6192
|
} | undefined;
|
|
6193
|
+
basedOn?: {
|
|
6194
|
+
reference: string;
|
|
6195
|
+
type?: string | undefined;
|
|
6196
|
+
display?: string | undefined;
|
|
6197
|
+
}[] | undefined;
|
|
6198
|
+
performer?: {
|
|
6199
|
+
reference: string;
|
|
6200
|
+
type?: string | undefined;
|
|
6201
|
+
display?: string | undefined;
|
|
6202
|
+
} | undefined;
|
|
6203
6203
|
reasonCode?: {
|
|
6204
6204
|
coding?: {
|
|
6205
6205
|
code?: string | undefined;
|
|
@@ -6244,6 +6244,22 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
6244
6244
|
}[] | undefined;
|
|
6245
6245
|
text?: string | undefined;
|
|
6246
6246
|
} | undefined;
|
|
6247
|
+
site?: {
|
|
6248
|
+
coding?: {
|
|
6249
|
+
code?: string | undefined;
|
|
6250
|
+
system?: string | undefined;
|
|
6251
|
+
display?: string | undefined;
|
|
6252
|
+
}[] | undefined;
|
|
6253
|
+
text?: string | undefined;
|
|
6254
|
+
} | undefined;
|
|
6255
|
+
route?: {
|
|
6256
|
+
coding?: {
|
|
6257
|
+
code?: string | undefined;
|
|
6258
|
+
system?: string | undefined;
|
|
6259
|
+
display?: string | undefined;
|
|
6260
|
+
}[] | undefined;
|
|
6261
|
+
text?: string | undefined;
|
|
6262
|
+
} | undefined;
|
|
6247
6263
|
sequence?: number | undefined;
|
|
6248
6264
|
additionalInstruction?: {
|
|
6249
6265
|
coding?: {
|
|
@@ -6283,22 +6299,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
6283
6299
|
} | undefined;
|
|
6284
6300
|
} | undefined;
|
|
6285
6301
|
asNeededBoolean?: boolean | undefined;
|
|
6286
|
-
site?: {
|
|
6287
|
-
coding?: {
|
|
6288
|
-
code?: string | undefined;
|
|
6289
|
-
system?: string | undefined;
|
|
6290
|
-
display?: string | undefined;
|
|
6291
|
-
}[] | undefined;
|
|
6292
|
-
text?: string | undefined;
|
|
6293
|
-
} | undefined;
|
|
6294
|
-
route?: {
|
|
6295
|
-
coding?: {
|
|
6296
|
-
code?: string | undefined;
|
|
6297
|
-
system?: string | undefined;
|
|
6298
|
-
display?: string | undefined;
|
|
6299
|
-
}[] | undefined;
|
|
6300
|
-
text?: string | undefined;
|
|
6301
|
-
} | undefined;
|
|
6302
6302
|
doseAndRate?: {
|
|
6303
6303
|
type?: {
|
|
6304
6304
|
coding?: {
|
|
@@ -6308,40 +6308,46 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
6308
6308
|
}[] | undefined;
|
|
6309
6309
|
text?: string | undefined;
|
|
6310
6310
|
} | undefined;
|
|
6311
|
-
|
|
6312
|
-
|
|
6311
|
+
rateRatio?: {
|
|
6312
|
+
numerator?: {
|
|
6313
6313
|
value: number;
|
|
6314
6314
|
code?: string | undefined;
|
|
6315
6315
|
system?: string | undefined;
|
|
6316
6316
|
unit?: string | undefined;
|
|
6317
6317
|
} | undefined;
|
|
6318
|
-
|
|
6318
|
+
denominator?: {
|
|
6319
6319
|
value: number;
|
|
6320
6320
|
code?: string | undefined;
|
|
6321
6321
|
system?: string | undefined;
|
|
6322
6322
|
unit?: string | undefined;
|
|
6323
6323
|
} | undefined;
|
|
6324
6324
|
} | undefined;
|
|
6325
|
-
|
|
6325
|
+
rateQuantity?: {
|
|
6326
6326
|
value: number;
|
|
6327
6327
|
code?: string | undefined;
|
|
6328
6328
|
system?: string | undefined;
|
|
6329
6329
|
unit?: string | undefined;
|
|
6330
6330
|
} | undefined;
|
|
6331
|
-
|
|
6332
|
-
|
|
6331
|
+
doseRange?: {
|
|
6332
|
+
low?: {
|
|
6333
6333
|
value: number;
|
|
6334
6334
|
code?: string | undefined;
|
|
6335
6335
|
system?: string | undefined;
|
|
6336
6336
|
unit?: string | undefined;
|
|
6337
6337
|
} | undefined;
|
|
6338
|
-
|
|
6338
|
+
high?: {
|
|
6339
6339
|
value: number;
|
|
6340
6340
|
code?: string | undefined;
|
|
6341
6341
|
system?: string | undefined;
|
|
6342
6342
|
unit?: string | undefined;
|
|
6343
6343
|
} | undefined;
|
|
6344
6344
|
} | undefined;
|
|
6345
|
+
doseQuantity?: {
|
|
6346
|
+
value: number;
|
|
6347
|
+
code?: string | undefined;
|
|
6348
|
+
system?: string | undefined;
|
|
6349
|
+
unit?: string | undefined;
|
|
6350
|
+
} | undefined;
|
|
6345
6351
|
rateRange?: {
|
|
6346
6352
|
low?: {
|
|
6347
6353
|
value: number;
|
|
@@ -6356,12 +6362,6 @@ export declare const MedicationRequestCreateSchema: z.ZodObject<{
|
|
|
6356
6362
|
unit?: string | undefined;
|
|
6357
6363
|
} | undefined;
|
|
6358
6364
|
} | undefined;
|
|
6359
|
-
rateQuantity?: {
|
|
6360
|
-
value: number;
|
|
6361
|
-
code?: string | undefined;
|
|
6362
|
-
system?: string | undefined;
|
|
6363
|
-
unit?: string | undefined;
|
|
6364
|
-
} | undefined;
|
|
6365
6365
|
}[] | undefined;
|
|
6366
6366
|
maxDosePerPeriod?: {
|
|
6367
6367
|
numerator?: {
|
|
@@ -7255,40 +7255,46 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7255
7255
|
}[] | undefined;
|
|
7256
7256
|
text?: string | undefined;
|
|
7257
7257
|
} | undefined;
|
|
7258
|
-
|
|
7259
|
-
|
|
7258
|
+
rateRatio?: {
|
|
7259
|
+
numerator?: {
|
|
7260
7260
|
value: number;
|
|
7261
7261
|
code?: string | undefined;
|
|
7262
7262
|
system?: string | undefined;
|
|
7263
7263
|
unit?: string | undefined;
|
|
7264
7264
|
} | undefined;
|
|
7265
|
-
|
|
7265
|
+
denominator?: {
|
|
7266
7266
|
value: number;
|
|
7267
7267
|
code?: string | undefined;
|
|
7268
7268
|
system?: string | undefined;
|
|
7269
7269
|
unit?: string | undefined;
|
|
7270
7270
|
} | undefined;
|
|
7271
7271
|
} | undefined;
|
|
7272
|
-
|
|
7272
|
+
rateQuantity?: {
|
|
7273
7273
|
value: number;
|
|
7274
7274
|
code?: string | undefined;
|
|
7275
7275
|
system?: string | undefined;
|
|
7276
7276
|
unit?: string | undefined;
|
|
7277
7277
|
} | undefined;
|
|
7278
|
-
|
|
7279
|
-
|
|
7278
|
+
doseRange?: {
|
|
7279
|
+
low?: {
|
|
7280
7280
|
value: number;
|
|
7281
7281
|
code?: string | undefined;
|
|
7282
7282
|
system?: string | undefined;
|
|
7283
7283
|
unit?: string | undefined;
|
|
7284
7284
|
} | undefined;
|
|
7285
|
-
|
|
7285
|
+
high?: {
|
|
7286
7286
|
value: number;
|
|
7287
7287
|
code?: string | undefined;
|
|
7288
7288
|
system?: string | undefined;
|
|
7289
7289
|
unit?: string | undefined;
|
|
7290
7290
|
} | undefined;
|
|
7291
7291
|
} | undefined;
|
|
7292
|
+
doseQuantity?: {
|
|
7293
|
+
value: number;
|
|
7294
|
+
code?: string | undefined;
|
|
7295
|
+
system?: string | undefined;
|
|
7296
|
+
unit?: string | undefined;
|
|
7297
|
+
} | undefined;
|
|
7292
7298
|
rateRange?: {
|
|
7293
7299
|
low?: {
|
|
7294
7300
|
value: number;
|
|
@@ -7303,12 +7309,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7303
7309
|
unit?: string | undefined;
|
|
7304
7310
|
} | undefined;
|
|
7305
7311
|
} | undefined;
|
|
7306
|
-
rateQuantity?: {
|
|
7307
|
-
value: number;
|
|
7308
|
-
code?: string | undefined;
|
|
7309
|
-
system?: string | undefined;
|
|
7310
|
-
unit?: string | undefined;
|
|
7311
|
-
} | undefined;
|
|
7312
7312
|
}, {
|
|
7313
7313
|
type?: {
|
|
7314
7314
|
coding?: {
|
|
@@ -7318,40 +7318,46 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7318
7318
|
}[] | undefined;
|
|
7319
7319
|
text?: string | undefined;
|
|
7320
7320
|
} | undefined;
|
|
7321
|
-
|
|
7322
|
-
|
|
7321
|
+
rateRatio?: {
|
|
7322
|
+
numerator?: {
|
|
7323
7323
|
value: number;
|
|
7324
7324
|
code?: string | undefined;
|
|
7325
7325
|
system?: string | undefined;
|
|
7326
7326
|
unit?: string | undefined;
|
|
7327
7327
|
} | undefined;
|
|
7328
|
-
|
|
7328
|
+
denominator?: {
|
|
7329
7329
|
value: number;
|
|
7330
7330
|
code?: string | undefined;
|
|
7331
7331
|
system?: string | undefined;
|
|
7332
7332
|
unit?: string | undefined;
|
|
7333
7333
|
} | undefined;
|
|
7334
7334
|
} | undefined;
|
|
7335
|
-
|
|
7335
|
+
rateQuantity?: {
|
|
7336
7336
|
value: number;
|
|
7337
7337
|
code?: string | undefined;
|
|
7338
7338
|
system?: string | undefined;
|
|
7339
7339
|
unit?: string | undefined;
|
|
7340
7340
|
} | undefined;
|
|
7341
|
-
|
|
7342
|
-
|
|
7341
|
+
doseRange?: {
|
|
7342
|
+
low?: {
|
|
7343
7343
|
value: number;
|
|
7344
7344
|
code?: string | undefined;
|
|
7345
7345
|
system?: string | undefined;
|
|
7346
7346
|
unit?: string | undefined;
|
|
7347
7347
|
} | undefined;
|
|
7348
|
-
|
|
7348
|
+
high?: {
|
|
7349
7349
|
value: number;
|
|
7350
7350
|
code?: string | undefined;
|
|
7351
7351
|
system?: string | undefined;
|
|
7352
7352
|
unit?: string | undefined;
|
|
7353
7353
|
} | undefined;
|
|
7354
7354
|
} | undefined;
|
|
7355
|
+
doseQuantity?: {
|
|
7356
|
+
value: number;
|
|
7357
|
+
code?: string | undefined;
|
|
7358
|
+
system?: string | undefined;
|
|
7359
|
+
unit?: string | undefined;
|
|
7360
|
+
} | undefined;
|
|
7355
7361
|
rateRange?: {
|
|
7356
7362
|
low?: {
|
|
7357
7363
|
value: number;
|
|
@@ -7366,12 +7372,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7366
7372
|
unit?: string | undefined;
|
|
7367
7373
|
} | undefined;
|
|
7368
7374
|
} | undefined;
|
|
7369
|
-
rateQuantity?: {
|
|
7370
|
-
value: number;
|
|
7371
|
-
code?: string | undefined;
|
|
7372
|
-
system?: string | undefined;
|
|
7373
|
-
unit?: string | undefined;
|
|
7374
|
-
} | undefined;
|
|
7375
7375
|
}>, "many">>;
|
|
7376
7376
|
maxDosePerPeriod: z.ZodOptional<z.ZodObject<{
|
|
7377
7377
|
numerator: z.ZodOptional<z.ZodObject<{
|
|
@@ -7475,6 +7475,22 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7475
7475
|
}[] | undefined;
|
|
7476
7476
|
text?: string | undefined;
|
|
7477
7477
|
} | undefined;
|
|
7478
|
+
site?: {
|
|
7479
|
+
coding?: {
|
|
7480
|
+
code?: string | undefined;
|
|
7481
|
+
system?: string | undefined;
|
|
7482
|
+
display?: string | undefined;
|
|
7483
|
+
}[] | undefined;
|
|
7484
|
+
text?: string | undefined;
|
|
7485
|
+
} | undefined;
|
|
7486
|
+
route?: {
|
|
7487
|
+
coding?: {
|
|
7488
|
+
code?: string | undefined;
|
|
7489
|
+
system?: string | undefined;
|
|
7490
|
+
display?: string | undefined;
|
|
7491
|
+
}[] | undefined;
|
|
7492
|
+
text?: string | undefined;
|
|
7493
|
+
} | undefined;
|
|
7478
7494
|
sequence?: number | undefined;
|
|
7479
7495
|
additionalInstruction?: {
|
|
7480
7496
|
coding?: {
|
|
@@ -7514,22 +7530,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7514
7530
|
} | undefined;
|
|
7515
7531
|
} | undefined;
|
|
7516
7532
|
asNeededBoolean?: boolean | undefined;
|
|
7517
|
-
site?: {
|
|
7518
|
-
coding?: {
|
|
7519
|
-
code?: string | undefined;
|
|
7520
|
-
system?: string | undefined;
|
|
7521
|
-
display?: string | undefined;
|
|
7522
|
-
}[] | undefined;
|
|
7523
|
-
text?: string | undefined;
|
|
7524
|
-
} | undefined;
|
|
7525
|
-
route?: {
|
|
7526
|
-
coding?: {
|
|
7527
|
-
code?: string | undefined;
|
|
7528
|
-
system?: string | undefined;
|
|
7529
|
-
display?: string | undefined;
|
|
7530
|
-
}[] | undefined;
|
|
7531
|
-
text?: string | undefined;
|
|
7532
|
-
} | undefined;
|
|
7533
7533
|
doseAndRate?: {
|
|
7534
7534
|
type?: {
|
|
7535
7535
|
coding?: {
|
|
@@ -7539,40 +7539,46 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7539
7539
|
}[] | undefined;
|
|
7540
7540
|
text?: string | undefined;
|
|
7541
7541
|
} | undefined;
|
|
7542
|
-
|
|
7543
|
-
|
|
7542
|
+
rateRatio?: {
|
|
7543
|
+
numerator?: {
|
|
7544
7544
|
value: number;
|
|
7545
7545
|
code?: string | undefined;
|
|
7546
7546
|
system?: string | undefined;
|
|
7547
7547
|
unit?: string | undefined;
|
|
7548
7548
|
} | undefined;
|
|
7549
|
-
|
|
7549
|
+
denominator?: {
|
|
7550
7550
|
value: number;
|
|
7551
7551
|
code?: string | undefined;
|
|
7552
7552
|
system?: string | undefined;
|
|
7553
7553
|
unit?: string | undefined;
|
|
7554
7554
|
} | undefined;
|
|
7555
7555
|
} | undefined;
|
|
7556
|
-
|
|
7556
|
+
rateQuantity?: {
|
|
7557
7557
|
value: number;
|
|
7558
7558
|
code?: string | undefined;
|
|
7559
7559
|
system?: string | undefined;
|
|
7560
7560
|
unit?: string | undefined;
|
|
7561
7561
|
} | undefined;
|
|
7562
|
-
|
|
7563
|
-
|
|
7562
|
+
doseRange?: {
|
|
7563
|
+
low?: {
|
|
7564
7564
|
value: number;
|
|
7565
7565
|
code?: string | undefined;
|
|
7566
7566
|
system?: string | undefined;
|
|
7567
7567
|
unit?: string | undefined;
|
|
7568
7568
|
} | undefined;
|
|
7569
|
-
|
|
7569
|
+
high?: {
|
|
7570
7570
|
value: number;
|
|
7571
7571
|
code?: string | undefined;
|
|
7572
7572
|
system?: string | undefined;
|
|
7573
7573
|
unit?: string | undefined;
|
|
7574
7574
|
} | undefined;
|
|
7575
7575
|
} | undefined;
|
|
7576
|
+
doseQuantity?: {
|
|
7577
|
+
value: number;
|
|
7578
|
+
code?: string | undefined;
|
|
7579
|
+
system?: string | undefined;
|
|
7580
|
+
unit?: string | undefined;
|
|
7581
|
+
} | undefined;
|
|
7576
7582
|
rateRange?: {
|
|
7577
7583
|
low?: {
|
|
7578
7584
|
value: number;
|
|
@@ -7587,12 +7593,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7587
7593
|
unit?: string | undefined;
|
|
7588
7594
|
} | undefined;
|
|
7589
7595
|
} | undefined;
|
|
7590
|
-
rateQuantity?: {
|
|
7591
|
-
value: number;
|
|
7592
|
-
code?: string | undefined;
|
|
7593
|
-
system?: string | undefined;
|
|
7594
|
-
unit?: string | undefined;
|
|
7595
|
-
} | undefined;
|
|
7596
7596
|
}[] | undefined;
|
|
7597
7597
|
maxDosePerPeriod?: {
|
|
7598
7598
|
numerator?: {
|
|
@@ -7630,6 +7630,22 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7630
7630
|
}[] | undefined;
|
|
7631
7631
|
text?: string | undefined;
|
|
7632
7632
|
} | undefined;
|
|
7633
|
+
site?: {
|
|
7634
|
+
coding?: {
|
|
7635
|
+
code?: string | undefined;
|
|
7636
|
+
system?: string | undefined;
|
|
7637
|
+
display?: string | undefined;
|
|
7638
|
+
}[] | undefined;
|
|
7639
|
+
text?: string | undefined;
|
|
7640
|
+
} | undefined;
|
|
7641
|
+
route?: {
|
|
7642
|
+
coding?: {
|
|
7643
|
+
code?: string | undefined;
|
|
7644
|
+
system?: string | undefined;
|
|
7645
|
+
display?: string | undefined;
|
|
7646
|
+
}[] | undefined;
|
|
7647
|
+
text?: string | undefined;
|
|
7648
|
+
} | undefined;
|
|
7633
7649
|
sequence?: number | undefined;
|
|
7634
7650
|
additionalInstruction?: {
|
|
7635
7651
|
coding?: {
|
|
@@ -7669,22 +7685,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7669
7685
|
} | undefined;
|
|
7670
7686
|
} | undefined;
|
|
7671
7687
|
asNeededBoolean?: boolean | undefined;
|
|
7672
|
-
site?: {
|
|
7673
|
-
coding?: {
|
|
7674
|
-
code?: string | undefined;
|
|
7675
|
-
system?: string | undefined;
|
|
7676
|
-
display?: string | undefined;
|
|
7677
|
-
}[] | undefined;
|
|
7678
|
-
text?: string | undefined;
|
|
7679
|
-
} | undefined;
|
|
7680
|
-
route?: {
|
|
7681
|
-
coding?: {
|
|
7682
|
-
code?: string | undefined;
|
|
7683
|
-
system?: string | undefined;
|
|
7684
|
-
display?: string | undefined;
|
|
7685
|
-
}[] | undefined;
|
|
7686
|
-
text?: string | undefined;
|
|
7687
|
-
} | undefined;
|
|
7688
7688
|
doseAndRate?: {
|
|
7689
7689
|
type?: {
|
|
7690
7690
|
coding?: {
|
|
@@ -7694,40 +7694,46 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7694
7694
|
}[] | undefined;
|
|
7695
7695
|
text?: string | undefined;
|
|
7696
7696
|
} | undefined;
|
|
7697
|
-
|
|
7698
|
-
|
|
7697
|
+
rateRatio?: {
|
|
7698
|
+
numerator?: {
|
|
7699
7699
|
value: number;
|
|
7700
7700
|
code?: string | undefined;
|
|
7701
7701
|
system?: string | undefined;
|
|
7702
7702
|
unit?: string | undefined;
|
|
7703
7703
|
} | undefined;
|
|
7704
|
-
|
|
7704
|
+
denominator?: {
|
|
7705
7705
|
value: number;
|
|
7706
7706
|
code?: string | undefined;
|
|
7707
7707
|
system?: string | undefined;
|
|
7708
7708
|
unit?: string | undefined;
|
|
7709
7709
|
} | undefined;
|
|
7710
7710
|
} | undefined;
|
|
7711
|
-
|
|
7711
|
+
rateQuantity?: {
|
|
7712
7712
|
value: number;
|
|
7713
7713
|
code?: string | undefined;
|
|
7714
7714
|
system?: string | undefined;
|
|
7715
7715
|
unit?: string | undefined;
|
|
7716
7716
|
} | undefined;
|
|
7717
|
-
|
|
7718
|
-
|
|
7717
|
+
doseRange?: {
|
|
7718
|
+
low?: {
|
|
7719
7719
|
value: number;
|
|
7720
7720
|
code?: string | undefined;
|
|
7721
7721
|
system?: string | undefined;
|
|
7722
7722
|
unit?: string | undefined;
|
|
7723
7723
|
} | undefined;
|
|
7724
|
-
|
|
7724
|
+
high?: {
|
|
7725
7725
|
value: number;
|
|
7726
7726
|
code?: string | undefined;
|
|
7727
7727
|
system?: string | undefined;
|
|
7728
7728
|
unit?: string | undefined;
|
|
7729
7729
|
} | undefined;
|
|
7730
7730
|
} | undefined;
|
|
7731
|
+
doseQuantity?: {
|
|
7732
|
+
value: number;
|
|
7733
|
+
code?: string | undefined;
|
|
7734
|
+
system?: string | undefined;
|
|
7735
|
+
unit?: string | undefined;
|
|
7736
|
+
} | undefined;
|
|
7731
7737
|
rateRange?: {
|
|
7732
7738
|
low?: {
|
|
7733
7739
|
value: number;
|
|
@@ -7742,12 +7748,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
7742
7748
|
unit?: string | undefined;
|
|
7743
7749
|
} | undefined;
|
|
7744
7750
|
} | undefined;
|
|
7745
|
-
rateQuantity?: {
|
|
7746
|
-
value: number;
|
|
7747
|
-
code?: string | undefined;
|
|
7748
|
-
system?: string | undefined;
|
|
7749
|
-
unit?: string | undefined;
|
|
7750
|
-
} | undefined;
|
|
7751
7751
|
}[] | undefined;
|
|
7752
7752
|
maxDosePerPeriod?: {
|
|
7753
7753
|
numerator?: {
|
|
@@ -8023,7 +8023,7 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8023
8023
|
versionId?: string | undefined;
|
|
8024
8024
|
}>>;
|
|
8025
8025
|
}, "strip", z.ZodTypeAny, {
|
|
8026
|
-
status: "unknown" | "active" | "
|
|
8026
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
8027
8027
|
resourceType: "MedicationRequest";
|
|
8028
8028
|
id: string;
|
|
8029
8029
|
subject: {
|
|
@@ -8031,12 +8031,12 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8031
8031
|
type?: string | undefined;
|
|
8032
8032
|
display?: string | undefined;
|
|
8033
8033
|
};
|
|
8034
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
8035
8034
|
medicationReference: {
|
|
8036
8035
|
reference: string;
|
|
8037
8036
|
type?: string | undefined;
|
|
8038
8037
|
display?: string | undefined;
|
|
8039
8038
|
};
|
|
8039
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
8040
8040
|
identifier?: {
|
|
8041
8041
|
value: string;
|
|
8042
8042
|
system: string;
|
|
@@ -8047,24 +8047,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8047
8047
|
profile?: string[] | undefined;
|
|
8048
8048
|
versionId?: string | undefined;
|
|
8049
8049
|
} | undefined;
|
|
8050
|
-
encounter?: {
|
|
8051
|
-
reference: string;
|
|
8052
|
-
type?: string | undefined;
|
|
8053
|
-
display?: string | undefined;
|
|
8054
|
-
} | undefined;
|
|
8055
|
-
category?: {
|
|
8056
|
-
coding?: {
|
|
8057
|
-
code?: string | undefined;
|
|
8058
|
-
system?: string | undefined;
|
|
8059
|
-
display?: string | undefined;
|
|
8060
|
-
}[] | undefined;
|
|
8061
|
-
text?: string | undefined;
|
|
8062
|
-
}[] | undefined;
|
|
8063
|
-
recorder?: {
|
|
8064
|
-
reference: string;
|
|
8065
|
-
type?: string | undefined;
|
|
8066
|
-
display?: string | undefined;
|
|
8067
|
-
} | undefined;
|
|
8068
8050
|
note?: {
|
|
8069
8051
|
text: string;
|
|
8070
8052
|
authorReference?: {
|
|
@@ -8075,12 +8057,20 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8075
8057
|
authorString?: string | undefined;
|
|
8076
8058
|
time?: string | undefined;
|
|
8077
8059
|
}[] | undefined;
|
|
8078
|
-
|
|
8060
|
+
category?: {
|
|
8061
|
+
coding?: {
|
|
8062
|
+
code?: string | undefined;
|
|
8063
|
+
system?: string | undefined;
|
|
8064
|
+
display?: string | undefined;
|
|
8065
|
+
}[] | undefined;
|
|
8066
|
+
text?: string | undefined;
|
|
8067
|
+
}[] | undefined;
|
|
8068
|
+
encounter?: {
|
|
8079
8069
|
reference: string;
|
|
8080
8070
|
type?: string | undefined;
|
|
8081
8071
|
display?: string | undefined;
|
|
8082
|
-
}
|
|
8083
|
-
|
|
8072
|
+
} | undefined;
|
|
8073
|
+
recorder?: {
|
|
8084
8074
|
reference: string;
|
|
8085
8075
|
type?: string | undefined;
|
|
8086
8076
|
display?: string | undefined;
|
|
@@ -8093,6 +8083,16 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8093
8083
|
}[] | undefined;
|
|
8094
8084
|
text?: string | undefined;
|
|
8095
8085
|
} | undefined;
|
|
8086
|
+
basedOn?: {
|
|
8087
|
+
reference: string;
|
|
8088
|
+
type?: string | undefined;
|
|
8089
|
+
display?: string | undefined;
|
|
8090
|
+
}[] | undefined;
|
|
8091
|
+
performer?: {
|
|
8092
|
+
reference: string;
|
|
8093
|
+
type?: string | undefined;
|
|
8094
|
+
display?: string | undefined;
|
|
8095
|
+
} | undefined;
|
|
8096
8096
|
reasonCode?: {
|
|
8097
8097
|
coding?: {
|
|
8098
8098
|
code?: string | undefined;
|
|
@@ -8137,6 +8137,22 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8137
8137
|
}[] | undefined;
|
|
8138
8138
|
text?: string | undefined;
|
|
8139
8139
|
} | undefined;
|
|
8140
|
+
site?: {
|
|
8141
|
+
coding?: {
|
|
8142
|
+
code?: string | undefined;
|
|
8143
|
+
system?: string | undefined;
|
|
8144
|
+
display?: string | undefined;
|
|
8145
|
+
}[] | undefined;
|
|
8146
|
+
text?: string | undefined;
|
|
8147
|
+
} | undefined;
|
|
8148
|
+
route?: {
|
|
8149
|
+
coding?: {
|
|
8150
|
+
code?: string | undefined;
|
|
8151
|
+
system?: string | undefined;
|
|
8152
|
+
display?: string | undefined;
|
|
8153
|
+
}[] | undefined;
|
|
8154
|
+
text?: string | undefined;
|
|
8155
|
+
} | undefined;
|
|
8140
8156
|
sequence?: number | undefined;
|
|
8141
8157
|
additionalInstruction?: {
|
|
8142
8158
|
coding?: {
|
|
@@ -8176,22 +8192,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8176
8192
|
} | undefined;
|
|
8177
8193
|
} | undefined;
|
|
8178
8194
|
asNeededBoolean?: boolean | undefined;
|
|
8179
|
-
site?: {
|
|
8180
|
-
coding?: {
|
|
8181
|
-
code?: string | undefined;
|
|
8182
|
-
system?: string | undefined;
|
|
8183
|
-
display?: string | undefined;
|
|
8184
|
-
}[] | undefined;
|
|
8185
|
-
text?: string | undefined;
|
|
8186
|
-
} | undefined;
|
|
8187
|
-
route?: {
|
|
8188
|
-
coding?: {
|
|
8189
|
-
code?: string | undefined;
|
|
8190
|
-
system?: string | undefined;
|
|
8191
|
-
display?: string | undefined;
|
|
8192
|
-
}[] | undefined;
|
|
8193
|
-
text?: string | undefined;
|
|
8194
|
-
} | undefined;
|
|
8195
8195
|
doseAndRate?: {
|
|
8196
8196
|
type?: {
|
|
8197
8197
|
coding?: {
|
|
@@ -8201,40 +8201,46 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8201
8201
|
}[] | undefined;
|
|
8202
8202
|
text?: string | undefined;
|
|
8203
8203
|
} | undefined;
|
|
8204
|
-
|
|
8205
|
-
|
|
8204
|
+
rateRatio?: {
|
|
8205
|
+
numerator?: {
|
|
8206
8206
|
value: number;
|
|
8207
8207
|
code?: string | undefined;
|
|
8208
8208
|
system?: string | undefined;
|
|
8209
8209
|
unit?: string | undefined;
|
|
8210
8210
|
} | undefined;
|
|
8211
|
-
|
|
8211
|
+
denominator?: {
|
|
8212
8212
|
value: number;
|
|
8213
8213
|
code?: string | undefined;
|
|
8214
8214
|
system?: string | undefined;
|
|
8215
8215
|
unit?: string | undefined;
|
|
8216
8216
|
} | undefined;
|
|
8217
8217
|
} | undefined;
|
|
8218
|
-
|
|
8218
|
+
rateQuantity?: {
|
|
8219
8219
|
value: number;
|
|
8220
8220
|
code?: string | undefined;
|
|
8221
8221
|
system?: string | undefined;
|
|
8222
8222
|
unit?: string | undefined;
|
|
8223
8223
|
} | undefined;
|
|
8224
|
-
|
|
8225
|
-
|
|
8224
|
+
doseRange?: {
|
|
8225
|
+
low?: {
|
|
8226
8226
|
value: number;
|
|
8227
8227
|
code?: string | undefined;
|
|
8228
8228
|
system?: string | undefined;
|
|
8229
8229
|
unit?: string | undefined;
|
|
8230
8230
|
} | undefined;
|
|
8231
|
-
|
|
8231
|
+
high?: {
|
|
8232
8232
|
value: number;
|
|
8233
8233
|
code?: string | undefined;
|
|
8234
8234
|
system?: string | undefined;
|
|
8235
8235
|
unit?: string | undefined;
|
|
8236
8236
|
} | undefined;
|
|
8237
8237
|
} | undefined;
|
|
8238
|
+
doseQuantity?: {
|
|
8239
|
+
value: number;
|
|
8240
|
+
code?: string | undefined;
|
|
8241
|
+
system?: string | undefined;
|
|
8242
|
+
unit?: string | undefined;
|
|
8243
|
+
} | undefined;
|
|
8238
8244
|
rateRange?: {
|
|
8239
8245
|
low?: {
|
|
8240
8246
|
value: number;
|
|
@@ -8249,12 +8255,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8249
8255
|
unit?: string | undefined;
|
|
8250
8256
|
} | undefined;
|
|
8251
8257
|
} | undefined;
|
|
8252
|
-
rateQuantity?: {
|
|
8253
|
-
value: number;
|
|
8254
|
-
code?: string | undefined;
|
|
8255
|
-
system?: string | undefined;
|
|
8256
|
-
unit?: string | undefined;
|
|
8257
|
-
} | undefined;
|
|
8258
8258
|
}[] | undefined;
|
|
8259
8259
|
maxDosePerPeriod?: {
|
|
8260
8260
|
numerator?: {
|
|
@@ -8333,7 +8333,7 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8333
8333
|
} | undefined;
|
|
8334
8334
|
} | undefined;
|
|
8335
8335
|
}, {
|
|
8336
|
-
status: "unknown" | "active" | "
|
|
8336
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
8337
8337
|
resourceType: "MedicationRequest";
|
|
8338
8338
|
id: string;
|
|
8339
8339
|
subject: {
|
|
@@ -8341,12 +8341,12 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8341
8341
|
type?: string | undefined;
|
|
8342
8342
|
display?: string | undefined;
|
|
8343
8343
|
};
|
|
8344
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
8345
8344
|
medicationReference: {
|
|
8346
8345
|
reference: string;
|
|
8347
8346
|
type?: string | undefined;
|
|
8348
8347
|
display?: string | undefined;
|
|
8349
8348
|
};
|
|
8349
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
8350
8350
|
identifier?: {
|
|
8351
8351
|
value: string;
|
|
8352
8352
|
system: string;
|
|
@@ -8357,24 +8357,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8357
8357
|
profile?: string[] | undefined;
|
|
8358
8358
|
versionId?: string | undefined;
|
|
8359
8359
|
} | undefined;
|
|
8360
|
-
encounter?: {
|
|
8361
|
-
reference: string;
|
|
8362
|
-
type?: string | undefined;
|
|
8363
|
-
display?: string | undefined;
|
|
8364
|
-
} | undefined;
|
|
8365
|
-
category?: {
|
|
8366
|
-
coding?: {
|
|
8367
|
-
code?: string | undefined;
|
|
8368
|
-
system?: string | undefined;
|
|
8369
|
-
display?: string | undefined;
|
|
8370
|
-
}[] | undefined;
|
|
8371
|
-
text?: string | undefined;
|
|
8372
|
-
}[] | undefined;
|
|
8373
|
-
recorder?: {
|
|
8374
|
-
reference: string;
|
|
8375
|
-
type?: string | undefined;
|
|
8376
|
-
display?: string | undefined;
|
|
8377
|
-
} | undefined;
|
|
8378
8360
|
note?: {
|
|
8379
8361
|
text: string;
|
|
8380
8362
|
authorReference?: {
|
|
@@ -8385,12 +8367,20 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8385
8367
|
authorString?: string | undefined;
|
|
8386
8368
|
time?: string | undefined;
|
|
8387
8369
|
}[] | undefined;
|
|
8388
|
-
|
|
8370
|
+
category?: {
|
|
8371
|
+
coding?: {
|
|
8372
|
+
code?: string | undefined;
|
|
8373
|
+
system?: string | undefined;
|
|
8374
|
+
display?: string | undefined;
|
|
8375
|
+
}[] | undefined;
|
|
8376
|
+
text?: string | undefined;
|
|
8377
|
+
}[] | undefined;
|
|
8378
|
+
encounter?: {
|
|
8389
8379
|
reference: string;
|
|
8390
8380
|
type?: string | undefined;
|
|
8391
8381
|
display?: string | undefined;
|
|
8392
|
-
}
|
|
8393
|
-
|
|
8382
|
+
} | undefined;
|
|
8383
|
+
recorder?: {
|
|
8394
8384
|
reference: string;
|
|
8395
8385
|
type?: string | undefined;
|
|
8396
8386
|
display?: string | undefined;
|
|
@@ -8403,10 +8393,20 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8403
8393
|
}[] | undefined;
|
|
8404
8394
|
text?: string | undefined;
|
|
8405
8395
|
} | undefined;
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8396
|
+
basedOn?: {
|
|
8397
|
+
reference: string;
|
|
8398
|
+
type?: string | undefined;
|
|
8399
|
+
display?: string | undefined;
|
|
8400
|
+
}[] | undefined;
|
|
8401
|
+
performer?: {
|
|
8402
|
+
reference: string;
|
|
8403
|
+
type?: string | undefined;
|
|
8404
|
+
display?: string | undefined;
|
|
8405
|
+
} | undefined;
|
|
8406
|
+
reasonCode?: {
|
|
8407
|
+
coding?: {
|
|
8408
|
+
code?: string | undefined;
|
|
8409
|
+
system?: string | undefined;
|
|
8410
8410
|
display?: string | undefined;
|
|
8411
8411
|
}[] | undefined;
|
|
8412
8412
|
text?: string | undefined;
|
|
@@ -8447,6 +8447,22 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8447
8447
|
}[] | undefined;
|
|
8448
8448
|
text?: string | undefined;
|
|
8449
8449
|
} | undefined;
|
|
8450
|
+
site?: {
|
|
8451
|
+
coding?: {
|
|
8452
|
+
code?: string | undefined;
|
|
8453
|
+
system?: string | undefined;
|
|
8454
|
+
display?: string | undefined;
|
|
8455
|
+
}[] | undefined;
|
|
8456
|
+
text?: string | undefined;
|
|
8457
|
+
} | undefined;
|
|
8458
|
+
route?: {
|
|
8459
|
+
coding?: {
|
|
8460
|
+
code?: string | undefined;
|
|
8461
|
+
system?: string | undefined;
|
|
8462
|
+
display?: string | undefined;
|
|
8463
|
+
}[] | undefined;
|
|
8464
|
+
text?: string | undefined;
|
|
8465
|
+
} | undefined;
|
|
8450
8466
|
sequence?: number | undefined;
|
|
8451
8467
|
additionalInstruction?: {
|
|
8452
8468
|
coding?: {
|
|
@@ -8486,22 +8502,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8486
8502
|
} | undefined;
|
|
8487
8503
|
} | undefined;
|
|
8488
8504
|
asNeededBoolean?: boolean | undefined;
|
|
8489
|
-
site?: {
|
|
8490
|
-
coding?: {
|
|
8491
|
-
code?: string | undefined;
|
|
8492
|
-
system?: string | undefined;
|
|
8493
|
-
display?: string | undefined;
|
|
8494
|
-
}[] | undefined;
|
|
8495
|
-
text?: string | undefined;
|
|
8496
|
-
} | undefined;
|
|
8497
|
-
route?: {
|
|
8498
|
-
coding?: {
|
|
8499
|
-
code?: string | undefined;
|
|
8500
|
-
system?: string | undefined;
|
|
8501
|
-
display?: string | undefined;
|
|
8502
|
-
}[] | undefined;
|
|
8503
|
-
text?: string | undefined;
|
|
8504
|
-
} | undefined;
|
|
8505
8505
|
doseAndRate?: {
|
|
8506
8506
|
type?: {
|
|
8507
8507
|
coding?: {
|
|
@@ -8511,40 +8511,46 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8511
8511
|
}[] | undefined;
|
|
8512
8512
|
text?: string | undefined;
|
|
8513
8513
|
} | undefined;
|
|
8514
|
-
|
|
8515
|
-
|
|
8514
|
+
rateRatio?: {
|
|
8515
|
+
numerator?: {
|
|
8516
8516
|
value: number;
|
|
8517
8517
|
code?: string | undefined;
|
|
8518
8518
|
system?: string | undefined;
|
|
8519
8519
|
unit?: string | undefined;
|
|
8520
8520
|
} | undefined;
|
|
8521
|
-
|
|
8521
|
+
denominator?: {
|
|
8522
8522
|
value: number;
|
|
8523
8523
|
code?: string | undefined;
|
|
8524
8524
|
system?: string | undefined;
|
|
8525
8525
|
unit?: string | undefined;
|
|
8526
8526
|
} | undefined;
|
|
8527
8527
|
} | undefined;
|
|
8528
|
-
|
|
8528
|
+
rateQuantity?: {
|
|
8529
8529
|
value: number;
|
|
8530
8530
|
code?: string | undefined;
|
|
8531
8531
|
system?: string | undefined;
|
|
8532
8532
|
unit?: string | undefined;
|
|
8533
8533
|
} | undefined;
|
|
8534
|
-
|
|
8535
|
-
|
|
8534
|
+
doseRange?: {
|
|
8535
|
+
low?: {
|
|
8536
8536
|
value: number;
|
|
8537
8537
|
code?: string | undefined;
|
|
8538
8538
|
system?: string | undefined;
|
|
8539
8539
|
unit?: string | undefined;
|
|
8540
8540
|
} | undefined;
|
|
8541
|
-
|
|
8541
|
+
high?: {
|
|
8542
8542
|
value: number;
|
|
8543
8543
|
code?: string | undefined;
|
|
8544
8544
|
system?: string | undefined;
|
|
8545
8545
|
unit?: string | undefined;
|
|
8546
8546
|
} | undefined;
|
|
8547
8547
|
} | undefined;
|
|
8548
|
+
doseQuantity?: {
|
|
8549
|
+
value: number;
|
|
8550
|
+
code?: string | undefined;
|
|
8551
|
+
system?: string | undefined;
|
|
8552
|
+
unit?: string | undefined;
|
|
8553
|
+
} | undefined;
|
|
8548
8554
|
rateRange?: {
|
|
8549
8555
|
low?: {
|
|
8550
8556
|
value: number;
|
|
@@ -8559,12 +8565,6 @@ export declare const MedicationRequestSchema: z.ZodObject<{
|
|
|
8559
8565
|
unit?: string | undefined;
|
|
8560
8566
|
} | undefined;
|
|
8561
8567
|
} | undefined;
|
|
8562
|
-
rateQuantity?: {
|
|
8563
|
-
value: number;
|
|
8564
|
-
code?: string | undefined;
|
|
8565
|
-
system?: string | undefined;
|
|
8566
|
-
unit?: string | undefined;
|
|
8567
|
-
} | undefined;
|
|
8568
8568
|
}[] | undefined;
|
|
8569
8569
|
maxDosePerPeriod?: {
|
|
8570
8570
|
numerator?: {
|
|
@@ -9481,40 +9481,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9481
9481
|
}[] | undefined;
|
|
9482
9482
|
text?: string | undefined;
|
|
9483
9483
|
} | undefined;
|
|
9484
|
-
|
|
9485
|
-
|
|
9484
|
+
rateRatio?: {
|
|
9485
|
+
numerator?: {
|
|
9486
9486
|
value: number;
|
|
9487
9487
|
code?: string | undefined;
|
|
9488
9488
|
system?: string | undefined;
|
|
9489
9489
|
unit?: string | undefined;
|
|
9490
9490
|
} | undefined;
|
|
9491
|
-
|
|
9491
|
+
denominator?: {
|
|
9492
9492
|
value: number;
|
|
9493
9493
|
code?: string | undefined;
|
|
9494
9494
|
system?: string | undefined;
|
|
9495
9495
|
unit?: string | undefined;
|
|
9496
9496
|
} | undefined;
|
|
9497
9497
|
} | undefined;
|
|
9498
|
-
|
|
9498
|
+
rateQuantity?: {
|
|
9499
9499
|
value: number;
|
|
9500
9500
|
code?: string | undefined;
|
|
9501
9501
|
system?: string | undefined;
|
|
9502
9502
|
unit?: string | undefined;
|
|
9503
9503
|
} | undefined;
|
|
9504
|
-
|
|
9505
|
-
|
|
9504
|
+
doseRange?: {
|
|
9505
|
+
low?: {
|
|
9506
9506
|
value: number;
|
|
9507
9507
|
code?: string | undefined;
|
|
9508
9508
|
system?: string | undefined;
|
|
9509
9509
|
unit?: string | undefined;
|
|
9510
9510
|
} | undefined;
|
|
9511
|
-
|
|
9511
|
+
high?: {
|
|
9512
9512
|
value: number;
|
|
9513
9513
|
code?: string | undefined;
|
|
9514
9514
|
system?: string | undefined;
|
|
9515
9515
|
unit?: string | undefined;
|
|
9516
9516
|
} | undefined;
|
|
9517
9517
|
} | undefined;
|
|
9518
|
+
doseQuantity?: {
|
|
9519
|
+
value: number;
|
|
9520
|
+
code?: string | undefined;
|
|
9521
|
+
system?: string | undefined;
|
|
9522
|
+
unit?: string | undefined;
|
|
9523
|
+
} | undefined;
|
|
9518
9524
|
rateRange?: {
|
|
9519
9525
|
low?: {
|
|
9520
9526
|
value: number;
|
|
@@ -9529,12 +9535,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9529
9535
|
unit?: string | undefined;
|
|
9530
9536
|
} | undefined;
|
|
9531
9537
|
} | undefined;
|
|
9532
|
-
rateQuantity?: {
|
|
9533
|
-
value: number;
|
|
9534
|
-
code?: string | undefined;
|
|
9535
|
-
system?: string | undefined;
|
|
9536
|
-
unit?: string | undefined;
|
|
9537
|
-
} | undefined;
|
|
9538
9538
|
}, {
|
|
9539
9539
|
type?: {
|
|
9540
9540
|
coding?: {
|
|
@@ -9544,40 +9544,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9544
9544
|
}[] | undefined;
|
|
9545
9545
|
text?: string | undefined;
|
|
9546
9546
|
} | undefined;
|
|
9547
|
-
|
|
9548
|
-
|
|
9547
|
+
rateRatio?: {
|
|
9548
|
+
numerator?: {
|
|
9549
9549
|
value: number;
|
|
9550
9550
|
code?: string | undefined;
|
|
9551
9551
|
system?: string | undefined;
|
|
9552
9552
|
unit?: string | undefined;
|
|
9553
9553
|
} | undefined;
|
|
9554
|
-
|
|
9554
|
+
denominator?: {
|
|
9555
9555
|
value: number;
|
|
9556
9556
|
code?: string | undefined;
|
|
9557
9557
|
system?: string | undefined;
|
|
9558
9558
|
unit?: string | undefined;
|
|
9559
9559
|
} | undefined;
|
|
9560
9560
|
} | undefined;
|
|
9561
|
-
|
|
9561
|
+
rateQuantity?: {
|
|
9562
9562
|
value: number;
|
|
9563
9563
|
code?: string | undefined;
|
|
9564
9564
|
system?: string | undefined;
|
|
9565
9565
|
unit?: string | undefined;
|
|
9566
9566
|
} | undefined;
|
|
9567
|
-
|
|
9568
|
-
|
|
9567
|
+
doseRange?: {
|
|
9568
|
+
low?: {
|
|
9569
9569
|
value: number;
|
|
9570
9570
|
code?: string | undefined;
|
|
9571
9571
|
system?: string | undefined;
|
|
9572
9572
|
unit?: string | undefined;
|
|
9573
9573
|
} | undefined;
|
|
9574
|
-
|
|
9574
|
+
high?: {
|
|
9575
9575
|
value: number;
|
|
9576
9576
|
code?: string | undefined;
|
|
9577
9577
|
system?: string | undefined;
|
|
9578
9578
|
unit?: string | undefined;
|
|
9579
9579
|
} | undefined;
|
|
9580
9580
|
} | undefined;
|
|
9581
|
+
doseQuantity?: {
|
|
9582
|
+
value: number;
|
|
9583
|
+
code?: string | undefined;
|
|
9584
|
+
system?: string | undefined;
|
|
9585
|
+
unit?: string | undefined;
|
|
9586
|
+
} | undefined;
|
|
9581
9587
|
rateRange?: {
|
|
9582
9588
|
low?: {
|
|
9583
9589
|
value: number;
|
|
@@ -9592,12 +9598,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9592
9598
|
unit?: string | undefined;
|
|
9593
9599
|
} | undefined;
|
|
9594
9600
|
} | undefined;
|
|
9595
|
-
rateQuantity?: {
|
|
9596
|
-
value: number;
|
|
9597
|
-
code?: string | undefined;
|
|
9598
|
-
system?: string | undefined;
|
|
9599
|
-
unit?: string | undefined;
|
|
9600
|
-
} | undefined;
|
|
9601
9601
|
}>, "many">>;
|
|
9602
9602
|
maxDosePerPeriod: z.ZodOptional<z.ZodObject<{
|
|
9603
9603
|
numerator: z.ZodOptional<z.ZodObject<{
|
|
@@ -9701,6 +9701,22 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9701
9701
|
}[] | undefined;
|
|
9702
9702
|
text?: string | undefined;
|
|
9703
9703
|
} | undefined;
|
|
9704
|
+
site?: {
|
|
9705
|
+
coding?: {
|
|
9706
|
+
code?: string | undefined;
|
|
9707
|
+
system?: string | undefined;
|
|
9708
|
+
display?: string | undefined;
|
|
9709
|
+
}[] | undefined;
|
|
9710
|
+
text?: string | undefined;
|
|
9711
|
+
} | undefined;
|
|
9712
|
+
route?: {
|
|
9713
|
+
coding?: {
|
|
9714
|
+
code?: string | undefined;
|
|
9715
|
+
system?: string | undefined;
|
|
9716
|
+
display?: string | undefined;
|
|
9717
|
+
}[] | undefined;
|
|
9718
|
+
text?: string | undefined;
|
|
9719
|
+
} | undefined;
|
|
9704
9720
|
sequence?: number | undefined;
|
|
9705
9721
|
additionalInstruction?: {
|
|
9706
9722
|
coding?: {
|
|
@@ -9740,22 +9756,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9740
9756
|
} | undefined;
|
|
9741
9757
|
} | undefined;
|
|
9742
9758
|
asNeededBoolean?: boolean | undefined;
|
|
9743
|
-
site?: {
|
|
9744
|
-
coding?: {
|
|
9745
|
-
code?: string | undefined;
|
|
9746
|
-
system?: string | undefined;
|
|
9747
|
-
display?: string | undefined;
|
|
9748
|
-
}[] | undefined;
|
|
9749
|
-
text?: string | undefined;
|
|
9750
|
-
} | undefined;
|
|
9751
|
-
route?: {
|
|
9752
|
-
coding?: {
|
|
9753
|
-
code?: string | undefined;
|
|
9754
|
-
system?: string | undefined;
|
|
9755
|
-
display?: string | undefined;
|
|
9756
|
-
}[] | undefined;
|
|
9757
|
-
text?: string | undefined;
|
|
9758
|
-
} | undefined;
|
|
9759
9759
|
doseAndRate?: {
|
|
9760
9760
|
type?: {
|
|
9761
9761
|
coding?: {
|
|
@@ -9765,40 +9765,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9765
9765
|
}[] | undefined;
|
|
9766
9766
|
text?: string | undefined;
|
|
9767
9767
|
} | undefined;
|
|
9768
|
-
|
|
9769
|
-
|
|
9768
|
+
rateRatio?: {
|
|
9769
|
+
numerator?: {
|
|
9770
9770
|
value: number;
|
|
9771
9771
|
code?: string | undefined;
|
|
9772
9772
|
system?: string | undefined;
|
|
9773
9773
|
unit?: string | undefined;
|
|
9774
9774
|
} | undefined;
|
|
9775
|
-
|
|
9775
|
+
denominator?: {
|
|
9776
9776
|
value: number;
|
|
9777
9777
|
code?: string | undefined;
|
|
9778
9778
|
system?: string | undefined;
|
|
9779
9779
|
unit?: string | undefined;
|
|
9780
9780
|
} | undefined;
|
|
9781
9781
|
} | undefined;
|
|
9782
|
-
|
|
9782
|
+
rateQuantity?: {
|
|
9783
9783
|
value: number;
|
|
9784
9784
|
code?: string | undefined;
|
|
9785
9785
|
system?: string | undefined;
|
|
9786
9786
|
unit?: string | undefined;
|
|
9787
9787
|
} | undefined;
|
|
9788
|
-
|
|
9789
|
-
|
|
9788
|
+
doseRange?: {
|
|
9789
|
+
low?: {
|
|
9790
9790
|
value: number;
|
|
9791
9791
|
code?: string | undefined;
|
|
9792
9792
|
system?: string | undefined;
|
|
9793
9793
|
unit?: string | undefined;
|
|
9794
9794
|
} | undefined;
|
|
9795
|
-
|
|
9795
|
+
high?: {
|
|
9796
9796
|
value: number;
|
|
9797
9797
|
code?: string | undefined;
|
|
9798
9798
|
system?: string | undefined;
|
|
9799
9799
|
unit?: string | undefined;
|
|
9800
9800
|
} | undefined;
|
|
9801
9801
|
} | undefined;
|
|
9802
|
+
doseQuantity?: {
|
|
9803
|
+
value: number;
|
|
9804
|
+
code?: string | undefined;
|
|
9805
|
+
system?: string | undefined;
|
|
9806
|
+
unit?: string | undefined;
|
|
9807
|
+
} | undefined;
|
|
9802
9808
|
rateRange?: {
|
|
9803
9809
|
low?: {
|
|
9804
9810
|
value: number;
|
|
@@ -9813,12 +9819,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9813
9819
|
unit?: string | undefined;
|
|
9814
9820
|
} | undefined;
|
|
9815
9821
|
} | undefined;
|
|
9816
|
-
rateQuantity?: {
|
|
9817
|
-
value: number;
|
|
9818
|
-
code?: string | undefined;
|
|
9819
|
-
system?: string | undefined;
|
|
9820
|
-
unit?: string | undefined;
|
|
9821
|
-
} | undefined;
|
|
9822
9822
|
}[] | undefined;
|
|
9823
9823
|
maxDosePerPeriod?: {
|
|
9824
9824
|
numerator?: {
|
|
@@ -9856,6 +9856,22 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9856
9856
|
}[] | undefined;
|
|
9857
9857
|
text?: string | undefined;
|
|
9858
9858
|
} | undefined;
|
|
9859
|
+
site?: {
|
|
9860
|
+
coding?: {
|
|
9861
|
+
code?: string | undefined;
|
|
9862
|
+
system?: string | undefined;
|
|
9863
|
+
display?: string | undefined;
|
|
9864
|
+
}[] | undefined;
|
|
9865
|
+
text?: string | undefined;
|
|
9866
|
+
} | undefined;
|
|
9867
|
+
route?: {
|
|
9868
|
+
coding?: {
|
|
9869
|
+
code?: string | undefined;
|
|
9870
|
+
system?: string | undefined;
|
|
9871
|
+
display?: string | undefined;
|
|
9872
|
+
}[] | undefined;
|
|
9873
|
+
text?: string | undefined;
|
|
9874
|
+
} | undefined;
|
|
9859
9875
|
sequence?: number | undefined;
|
|
9860
9876
|
additionalInstruction?: {
|
|
9861
9877
|
coding?: {
|
|
@@ -9895,22 +9911,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9895
9911
|
} | undefined;
|
|
9896
9912
|
} | undefined;
|
|
9897
9913
|
asNeededBoolean?: boolean | undefined;
|
|
9898
|
-
site?: {
|
|
9899
|
-
coding?: {
|
|
9900
|
-
code?: string | undefined;
|
|
9901
|
-
system?: string | undefined;
|
|
9902
|
-
display?: string | undefined;
|
|
9903
|
-
}[] | undefined;
|
|
9904
|
-
text?: string | undefined;
|
|
9905
|
-
} | undefined;
|
|
9906
|
-
route?: {
|
|
9907
|
-
coding?: {
|
|
9908
|
-
code?: string | undefined;
|
|
9909
|
-
system?: string | undefined;
|
|
9910
|
-
display?: string | undefined;
|
|
9911
|
-
}[] | undefined;
|
|
9912
|
-
text?: string | undefined;
|
|
9913
|
-
} | undefined;
|
|
9914
9914
|
doseAndRate?: {
|
|
9915
9915
|
type?: {
|
|
9916
9916
|
coding?: {
|
|
@@ -9920,40 +9920,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9920
9920
|
}[] | undefined;
|
|
9921
9921
|
text?: string | undefined;
|
|
9922
9922
|
} | undefined;
|
|
9923
|
-
|
|
9924
|
-
|
|
9923
|
+
rateRatio?: {
|
|
9924
|
+
numerator?: {
|
|
9925
9925
|
value: number;
|
|
9926
9926
|
code?: string | undefined;
|
|
9927
9927
|
system?: string | undefined;
|
|
9928
9928
|
unit?: string | undefined;
|
|
9929
9929
|
} | undefined;
|
|
9930
|
-
|
|
9930
|
+
denominator?: {
|
|
9931
9931
|
value: number;
|
|
9932
9932
|
code?: string | undefined;
|
|
9933
9933
|
system?: string | undefined;
|
|
9934
9934
|
unit?: string | undefined;
|
|
9935
9935
|
} | undefined;
|
|
9936
9936
|
} | undefined;
|
|
9937
|
-
|
|
9937
|
+
rateQuantity?: {
|
|
9938
9938
|
value: number;
|
|
9939
9939
|
code?: string | undefined;
|
|
9940
9940
|
system?: string | undefined;
|
|
9941
9941
|
unit?: string | undefined;
|
|
9942
9942
|
} | undefined;
|
|
9943
|
-
|
|
9944
|
-
|
|
9943
|
+
doseRange?: {
|
|
9944
|
+
low?: {
|
|
9945
9945
|
value: number;
|
|
9946
9946
|
code?: string | undefined;
|
|
9947
9947
|
system?: string | undefined;
|
|
9948
9948
|
unit?: string | undefined;
|
|
9949
9949
|
} | undefined;
|
|
9950
|
-
|
|
9950
|
+
high?: {
|
|
9951
9951
|
value: number;
|
|
9952
9952
|
code?: string | undefined;
|
|
9953
9953
|
system?: string | undefined;
|
|
9954
9954
|
unit?: string | undefined;
|
|
9955
9955
|
} | undefined;
|
|
9956
9956
|
} | undefined;
|
|
9957
|
+
doseQuantity?: {
|
|
9958
|
+
value: number;
|
|
9959
|
+
code?: string | undefined;
|
|
9960
|
+
system?: string | undefined;
|
|
9961
|
+
unit?: string | undefined;
|
|
9962
|
+
} | undefined;
|
|
9957
9963
|
rateRange?: {
|
|
9958
9964
|
low?: {
|
|
9959
9965
|
value: number;
|
|
@@ -9968,12 +9974,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
9968
9974
|
unit?: string | undefined;
|
|
9969
9975
|
} | undefined;
|
|
9970
9976
|
} | undefined;
|
|
9971
|
-
rateQuantity?: {
|
|
9972
|
-
value: number;
|
|
9973
|
-
code?: string | undefined;
|
|
9974
|
-
system?: string | undefined;
|
|
9975
|
-
unit?: string | undefined;
|
|
9976
|
-
} | undefined;
|
|
9977
9977
|
}[] | undefined;
|
|
9978
9978
|
maxDosePerPeriod?: {
|
|
9979
9979
|
numerator?: {
|
|
@@ -10249,7 +10249,7 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10249
10249
|
versionId?: string | undefined;
|
|
10250
10250
|
}>>;
|
|
10251
10251
|
}, "strip", z.ZodTypeAny, {
|
|
10252
|
-
status: "unknown" | "active" | "
|
|
10252
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
10253
10253
|
resourceType: "MedicationRequest";
|
|
10254
10254
|
id: string;
|
|
10255
10255
|
subject: {
|
|
@@ -10257,12 +10257,12 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10257
10257
|
type?: string | undefined;
|
|
10258
10258
|
display?: string | undefined;
|
|
10259
10259
|
};
|
|
10260
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
10261
10260
|
medicationReference: {
|
|
10262
10261
|
reference: string;
|
|
10263
10262
|
type?: string | undefined;
|
|
10264
10263
|
display?: string | undefined;
|
|
10265
10264
|
};
|
|
10265
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
10266
10266
|
identifier?: {
|
|
10267
10267
|
value: string;
|
|
10268
10268
|
system: string;
|
|
@@ -10273,40 +10273,30 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10273
10273
|
profile?: string[] | undefined;
|
|
10274
10274
|
versionId?: string | undefined;
|
|
10275
10275
|
} | undefined;
|
|
10276
|
-
|
|
10277
|
-
|
|
10278
|
-
|
|
10279
|
-
|
|
10280
|
-
|
|
10281
|
-
category?: {
|
|
10282
|
-
coding?: {
|
|
10283
|
-
code?: string | undefined;
|
|
10284
|
-
system?: string | undefined;
|
|
10285
|
-
display?: string | undefined;
|
|
10286
|
-
}[] | undefined;
|
|
10287
|
-
text?: string | undefined;
|
|
10288
|
-
}[] | undefined;
|
|
10289
|
-
recorder?: {
|
|
10290
|
-
reference: string;
|
|
10291
|
-
type?: string | undefined;
|
|
10292
|
-
display?: string | undefined;
|
|
10293
|
-
} | undefined;
|
|
10294
|
-
note?: {
|
|
10295
|
-
text: string;
|
|
10296
|
-
authorReference?: {
|
|
10297
|
-
reference: string;
|
|
10298
|
-
type?: string | undefined;
|
|
10276
|
+
note?: {
|
|
10277
|
+
text: string;
|
|
10278
|
+
authorReference?: {
|
|
10279
|
+
reference: string;
|
|
10280
|
+
type?: string | undefined;
|
|
10299
10281
|
display?: string | undefined;
|
|
10300
10282
|
} | undefined;
|
|
10301
10283
|
authorString?: string | undefined;
|
|
10302
10284
|
time?: string | undefined;
|
|
10303
10285
|
}[] | undefined;
|
|
10304
|
-
|
|
10286
|
+
category?: {
|
|
10287
|
+
coding?: {
|
|
10288
|
+
code?: string | undefined;
|
|
10289
|
+
system?: string | undefined;
|
|
10290
|
+
display?: string | undefined;
|
|
10291
|
+
}[] | undefined;
|
|
10292
|
+
text?: string | undefined;
|
|
10293
|
+
}[] | undefined;
|
|
10294
|
+
encounter?: {
|
|
10305
10295
|
reference: string;
|
|
10306
10296
|
type?: string | undefined;
|
|
10307
10297
|
display?: string | undefined;
|
|
10308
|
-
}
|
|
10309
|
-
|
|
10298
|
+
} | undefined;
|
|
10299
|
+
recorder?: {
|
|
10310
10300
|
reference: string;
|
|
10311
10301
|
type?: string | undefined;
|
|
10312
10302
|
display?: string | undefined;
|
|
@@ -10319,6 +10309,16 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10319
10309
|
}[] | undefined;
|
|
10320
10310
|
text?: string | undefined;
|
|
10321
10311
|
} | undefined;
|
|
10312
|
+
basedOn?: {
|
|
10313
|
+
reference: string;
|
|
10314
|
+
type?: string | undefined;
|
|
10315
|
+
display?: string | undefined;
|
|
10316
|
+
}[] | undefined;
|
|
10317
|
+
performer?: {
|
|
10318
|
+
reference: string;
|
|
10319
|
+
type?: string | undefined;
|
|
10320
|
+
display?: string | undefined;
|
|
10321
|
+
} | undefined;
|
|
10322
10322
|
reasonCode?: {
|
|
10323
10323
|
coding?: {
|
|
10324
10324
|
code?: string | undefined;
|
|
@@ -10363,6 +10363,22 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10363
10363
|
}[] | undefined;
|
|
10364
10364
|
text?: string | undefined;
|
|
10365
10365
|
} | undefined;
|
|
10366
|
+
site?: {
|
|
10367
|
+
coding?: {
|
|
10368
|
+
code?: string | undefined;
|
|
10369
|
+
system?: string | undefined;
|
|
10370
|
+
display?: string | undefined;
|
|
10371
|
+
}[] | undefined;
|
|
10372
|
+
text?: string | undefined;
|
|
10373
|
+
} | undefined;
|
|
10374
|
+
route?: {
|
|
10375
|
+
coding?: {
|
|
10376
|
+
code?: string | undefined;
|
|
10377
|
+
system?: string | undefined;
|
|
10378
|
+
display?: string | undefined;
|
|
10379
|
+
}[] | undefined;
|
|
10380
|
+
text?: string | undefined;
|
|
10381
|
+
} | undefined;
|
|
10366
10382
|
sequence?: number | undefined;
|
|
10367
10383
|
additionalInstruction?: {
|
|
10368
10384
|
coding?: {
|
|
@@ -10402,22 +10418,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10402
10418
|
} | undefined;
|
|
10403
10419
|
} | undefined;
|
|
10404
10420
|
asNeededBoolean?: boolean | undefined;
|
|
10405
|
-
site?: {
|
|
10406
|
-
coding?: {
|
|
10407
|
-
code?: string | undefined;
|
|
10408
|
-
system?: string | undefined;
|
|
10409
|
-
display?: string | undefined;
|
|
10410
|
-
}[] | undefined;
|
|
10411
|
-
text?: string | undefined;
|
|
10412
|
-
} | undefined;
|
|
10413
|
-
route?: {
|
|
10414
|
-
coding?: {
|
|
10415
|
-
code?: string | undefined;
|
|
10416
|
-
system?: string | undefined;
|
|
10417
|
-
display?: string | undefined;
|
|
10418
|
-
}[] | undefined;
|
|
10419
|
-
text?: string | undefined;
|
|
10420
|
-
} | undefined;
|
|
10421
10421
|
doseAndRate?: {
|
|
10422
10422
|
type?: {
|
|
10423
10423
|
coding?: {
|
|
@@ -10427,40 +10427,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10427
10427
|
}[] | undefined;
|
|
10428
10428
|
text?: string | undefined;
|
|
10429
10429
|
} | undefined;
|
|
10430
|
-
|
|
10431
|
-
|
|
10430
|
+
rateRatio?: {
|
|
10431
|
+
numerator?: {
|
|
10432
10432
|
value: number;
|
|
10433
10433
|
code?: string | undefined;
|
|
10434
10434
|
system?: string | undefined;
|
|
10435
10435
|
unit?: string | undefined;
|
|
10436
10436
|
} | undefined;
|
|
10437
|
-
|
|
10437
|
+
denominator?: {
|
|
10438
10438
|
value: number;
|
|
10439
10439
|
code?: string | undefined;
|
|
10440
10440
|
system?: string | undefined;
|
|
10441
10441
|
unit?: string | undefined;
|
|
10442
10442
|
} | undefined;
|
|
10443
10443
|
} | undefined;
|
|
10444
|
-
|
|
10444
|
+
rateQuantity?: {
|
|
10445
10445
|
value: number;
|
|
10446
10446
|
code?: string | undefined;
|
|
10447
10447
|
system?: string | undefined;
|
|
10448
10448
|
unit?: string | undefined;
|
|
10449
10449
|
} | undefined;
|
|
10450
|
-
|
|
10451
|
-
|
|
10450
|
+
doseRange?: {
|
|
10451
|
+
low?: {
|
|
10452
10452
|
value: number;
|
|
10453
10453
|
code?: string | undefined;
|
|
10454
10454
|
system?: string | undefined;
|
|
10455
10455
|
unit?: string | undefined;
|
|
10456
10456
|
} | undefined;
|
|
10457
|
-
|
|
10457
|
+
high?: {
|
|
10458
10458
|
value: number;
|
|
10459
10459
|
code?: string | undefined;
|
|
10460
10460
|
system?: string | undefined;
|
|
10461
10461
|
unit?: string | undefined;
|
|
10462
10462
|
} | undefined;
|
|
10463
10463
|
} | undefined;
|
|
10464
|
+
doseQuantity?: {
|
|
10465
|
+
value: number;
|
|
10466
|
+
code?: string | undefined;
|
|
10467
|
+
system?: string | undefined;
|
|
10468
|
+
unit?: string | undefined;
|
|
10469
|
+
} | undefined;
|
|
10464
10470
|
rateRange?: {
|
|
10465
10471
|
low?: {
|
|
10466
10472
|
value: number;
|
|
@@ -10475,12 +10481,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10475
10481
|
unit?: string | undefined;
|
|
10476
10482
|
} | undefined;
|
|
10477
10483
|
} | undefined;
|
|
10478
|
-
rateQuantity?: {
|
|
10479
|
-
value: number;
|
|
10480
|
-
code?: string | undefined;
|
|
10481
|
-
system?: string | undefined;
|
|
10482
|
-
unit?: string | undefined;
|
|
10483
|
-
} | undefined;
|
|
10484
10484
|
}[] | undefined;
|
|
10485
10485
|
maxDosePerPeriod?: {
|
|
10486
10486
|
numerator?: {
|
|
@@ -10559,7 +10559,7 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10559
10559
|
} | undefined;
|
|
10560
10560
|
} | undefined;
|
|
10561
10561
|
}, {
|
|
10562
|
-
status: "unknown" | "active" | "
|
|
10562
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
10563
10563
|
resourceType: "MedicationRequest";
|
|
10564
10564
|
id: string;
|
|
10565
10565
|
subject: {
|
|
@@ -10567,12 +10567,12 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10567
10567
|
type?: string | undefined;
|
|
10568
10568
|
display?: string | undefined;
|
|
10569
10569
|
};
|
|
10570
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
10571
10570
|
medicationReference: {
|
|
10572
10571
|
reference: string;
|
|
10573
10572
|
type?: string | undefined;
|
|
10574
10573
|
display?: string | undefined;
|
|
10575
10574
|
};
|
|
10575
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
10576
10576
|
identifier?: {
|
|
10577
10577
|
value: string;
|
|
10578
10578
|
system: string;
|
|
@@ -10583,24 +10583,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10583
10583
|
profile?: string[] | undefined;
|
|
10584
10584
|
versionId?: string | undefined;
|
|
10585
10585
|
} | undefined;
|
|
10586
|
-
encounter?: {
|
|
10587
|
-
reference: string;
|
|
10588
|
-
type?: string | undefined;
|
|
10589
|
-
display?: string | undefined;
|
|
10590
|
-
} | undefined;
|
|
10591
|
-
category?: {
|
|
10592
|
-
coding?: {
|
|
10593
|
-
code?: string | undefined;
|
|
10594
|
-
system?: string | undefined;
|
|
10595
|
-
display?: string | undefined;
|
|
10596
|
-
}[] | undefined;
|
|
10597
|
-
text?: string | undefined;
|
|
10598
|
-
}[] | undefined;
|
|
10599
|
-
recorder?: {
|
|
10600
|
-
reference: string;
|
|
10601
|
-
type?: string | undefined;
|
|
10602
|
-
display?: string | undefined;
|
|
10603
|
-
} | undefined;
|
|
10604
10586
|
note?: {
|
|
10605
10587
|
text: string;
|
|
10606
10588
|
authorReference?: {
|
|
@@ -10611,12 +10593,20 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10611
10593
|
authorString?: string | undefined;
|
|
10612
10594
|
time?: string | undefined;
|
|
10613
10595
|
}[] | undefined;
|
|
10614
|
-
|
|
10596
|
+
category?: {
|
|
10597
|
+
coding?: {
|
|
10598
|
+
code?: string | undefined;
|
|
10599
|
+
system?: string | undefined;
|
|
10600
|
+
display?: string | undefined;
|
|
10601
|
+
}[] | undefined;
|
|
10602
|
+
text?: string | undefined;
|
|
10603
|
+
}[] | undefined;
|
|
10604
|
+
encounter?: {
|
|
10615
10605
|
reference: string;
|
|
10616
10606
|
type?: string | undefined;
|
|
10617
10607
|
display?: string | undefined;
|
|
10618
|
-
}
|
|
10619
|
-
|
|
10608
|
+
} | undefined;
|
|
10609
|
+
recorder?: {
|
|
10620
10610
|
reference: string;
|
|
10621
10611
|
type?: string | undefined;
|
|
10622
10612
|
display?: string | undefined;
|
|
@@ -10629,6 +10619,16 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10629
10619
|
}[] | undefined;
|
|
10630
10620
|
text?: string | undefined;
|
|
10631
10621
|
} | undefined;
|
|
10622
|
+
basedOn?: {
|
|
10623
|
+
reference: string;
|
|
10624
|
+
type?: string | undefined;
|
|
10625
|
+
display?: string | undefined;
|
|
10626
|
+
}[] | undefined;
|
|
10627
|
+
performer?: {
|
|
10628
|
+
reference: string;
|
|
10629
|
+
type?: string | undefined;
|
|
10630
|
+
display?: string | undefined;
|
|
10631
|
+
} | undefined;
|
|
10632
10632
|
reasonCode?: {
|
|
10633
10633
|
coding?: {
|
|
10634
10634
|
code?: string | undefined;
|
|
@@ -10673,6 +10673,22 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10673
10673
|
}[] | undefined;
|
|
10674
10674
|
text?: string | undefined;
|
|
10675
10675
|
} | undefined;
|
|
10676
|
+
site?: {
|
|
10677
|
+
coding?: {
|
|
10678
|
+
code?: string | undefined;
|
|
10679
|
+
system?: string | undefined;
|
|
10680
|
+
display?: string | undefined;
|
|
10681
|
+
}[] | undefined;
|
|
10682
|
+
text?: string | undefined;
|
|
10683
|
+
} | undefined;
|
|
10684
|
+
route?: {
|
|
10685
|
+
coding?: {
|
|
10686
|
+
code?: string | undefined;
|
|
10687
|
+
system?: string | undefined;
|
|
10688
|
+
display?: string | undefined;
|
|
10689
|
+
}[] | undefined;
|
|
10690
|
+
text?: string | undefined;
|
|
10691
|
+
} | undefined;
|
|
10676
10692
|
sequence?: number | undefined;
|
|
10677
10693
|
additionalInstruction?: {
|
|
10678
10694
|
coding?: {
|
|
@@ -10712,22 +10728,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10712
10728
|
} | undefined;
|
|
10713
10729
|
} | undefined;
|
|
10714
10730
|
asNeededBoolean?: boolean | undefined;
|
|
10715
|
-
site?: {
|
|
10716
|
-
coding?: {
|
|
10717
|
-
code?: string | undefined;
|
|
10718
|
-
system?: string | undefined;
|
|
10719
|
-
display?: string | undefined;
|
|
10720
|
-
}[] | undefined;
|
|
10721
|
-
text?: string | undefined;
|
|
10722
|
-
} | undefined;
|
|
10723
|
-
route?: {
|
|
10724
|
-
coding?: {
|
|
10725
|
-
code?: string | undefined;
|
|
10726
|
-
system?: string | undefined;
|
|
10727
|
-
display?: string | undefined;
|
|
10728
|
-
}[] | undefined;
|
|
10729
|
-
text?: string | undefined;
|
|
10730
|
-
} | undefined;
|
|
10731
10731
|
doseAndRate?: {
|
|
10732
10732
|
type?: {
|
|
10733
10733
|
coding?: {
|
|
@@ -10737,40 +10737,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10737
10737
|
}[] | undefined;
|
|
10738
10738
|
text?: string | undefined;
|
|
10739
10739
|
} | undefined;
|
|
10740
|
-
|
|
10741
|
-
|
|
10740
|
+
rateRatio?: {
|
|
10741
|
+
numerator?: {
|
|
10742
10742
|
value: number;
|
|
10743
10743
|
code?: string | undefined;
|
|
10744
10744
|
system?: string | undefined;
|
|
10745
10745
|
unit?: string | undefined;
|
|
10746
10746
|
} | undefined;
|
|
10747
|
-
|
|
10747
|
+
denominator?: {
|
|
10748
10748
|
value: number;
|
|
10749
10749
|
code?: string | undefined;
|
|
10750
10750
|
system?: string | undefined;
|
|
10751
10751
|
unit?: string | undefined;
|
|
10752
10752
|
} | undefined;
|
|
10753
10753
|
} | undefined;
|
|
10754
|
-
|
|
10754
|
+
rateQuantity?: {
|
|
10755
10755
|
value: number;
|
|
10756
10756
|
code?: string | undefined;
|
|
10757
10757
|
system?: string | undefined;
|
|
10758
10758
|
unit?: string | undefined;
|
|
10759
10759
|
} | undefined;
|
|
10760
|
-
|
|
10761
|
-
|
|
10760
|
+
doseRange?: {
|
|
10761
|
+
low?: {
|
|
10762
10762
|
value: number;
|
|
10763
10763
|
code?: string | undefined;
|
|
10764
10764
|
system?: string | undefined;
|
|
10765
10765
|
unit?: string | undefined;
|
|
10766
10766
|
} | undefined;
|
|
10767
|
-
|
|
10767
|
+
high?: {
|
|
10768
10768
|
value: number;
|
|
10769
10769
|
code?: string | undefined;
|
|
10770
10770
|
system?: string | undefined;
|
|
10771
10771
|
unit?: string | undefined;
|
|
10772
10772
|
} | undefined;
|
|
10773
10773
|
} | undefined;
|
|
10774
|
+
doseQuantity?: {
|
|
10775
|
+
value: number;
|
|
10776
|
+
code?: string | undefined;
|
|
10777
|
+
system?: string | undefined;
|
|
10778
|
+
unit?: string | undefined;
|
|
10779
|
+
} | undefined;
|
|
10774
10780
|
rateRange?: {
|
|
10775
10781
|
low?: {
|
|
10776
10782
|
value: number;
|
|
@@ -10785,12 +10791,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10785
10791
|
unit?: string | undefined;
|
|
10786
10792
|
} | undefined;
|
|
10787
10793
|
} | undefined;
|
|
10788
|
-
rateQuantity?: {
|
|
10789
|
-
value: number;
|
|
10790
|
-
code?: string | undefined;
|
|
10791
|
-
system?: string | undefined;
|
|
10792
|
-
unit?: string | undefined;
|
|
10793
|
-
} | undefined;
|
|
10794
10794
|
}[] | undefined;
|
|
10795
10795
|
maxDosePerPeriod?: {
|
|
10796
10796
|
numerator?: {
|
|
@@ -10878,7 +10878,7 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10878
10878
|
}>>;
|
|
10879
10879
|
}, "strip", z.ZodTypeAny, {
|
|
10880
10880
|
resource: {
|
|
10881
|
-
status: "unknown" | "active" | "
|
|
10881
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
10882
10882
|
resourceType: "MedicationRequest";
|
|
10883
10883
|
id: string;
|
|
10884
10884
|
subject: {
|
|
@@ -10886,12 +10886,12 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10886
10886
|
type?: string | undefined;
|
|
10887
10887
|
display?: string | undefined;
|
|
10888
10888
|
};
|
|
10889
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
10890
10889
|
medicationReference: {
|
|
10891
10890
|
reference: string;
|
|
10892
10891
|
type?: string | undefined;
|
|
10893
10892
|
display?: string | undefined;
|
|
10894
10893
|
};
|
|
10894
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
10895
10895
|
identifier?: {
|
|
10896
10896
|
value: string;
|
|
10897
10897
|
system: string;
|
|
@@ -10902,24 +10902,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10902
10902
|
profile?: string[] | undefined;
|
|
10903
10903
|
versionId?: string | undefined;
|
|
10904
10904
|
} | undefined;
|
|
10905
|
-
encounter?: {
|
|
10906
|
-
reference: string;
|
|
10907
|
-
type?: string | undefined;
|
|
10908
|
-
display?: string | undefined;
|
|
10909
|
-
} | undefined;
|
|
10910
|
-
category?: {
|
|
10911
|
-
coding?: {
|
|
10912
|
-
code?: string | undefined;
|
|
10913
|
-
system?: string | undefined;
|
|
10914
|
-
display?: string | undefined;
|
|
10915
|
-
}[] | undefined;
|
|
10916
|
-
text?: string | undefined;
|
|
10917
|
-
}[] | undefined;
|
|
10918
|
-
recorder?: {
|
|
10919
|
-
reference: string;
|
|
10920
|
-
type?: string | undefined;
|
|
10921
|
-
display?: string | undefined;
|
|
10922
|
-
} | undefined;
|
|
10923
10905
|
note?: {
|
|
10924
10906
|
text: string;
|
|
10925
10907
|
authorReference?: {
|
|
@@ -10930,12 +10912,20 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10930
10912
|
authorString?: string | undefined;
|
|
10931
10913
|
time?: string | undefined;
|
|
10932
10914
|
}[] | undefined;
|
|
10933
|
-
|
|
10915
|
+
category?: {
|
|
10916
|
+
coding?: {
|
|
10917
|
+
code?: string | undefined;
|
|
10918
|
+
system?: string | undefined;
|
|
10919
|
+
display?: string | undefined;
|
|
10920
|
+
}[] | undefined;
|
|
10921
|
+
text?: string | undefined;
|
|
10922
|
+
}[] | undefined;
|
|
10923
|
+
encounter?: {
|
|
10934
10924
|
reference: string;
|
|
10935
10925
|
type?: string | undefined;
|
|
10936
10926
|
display?: string | undefined;
|
|
10937
|
-
}
|
|
10938
|
-
|
|
10927
|
+
} | undefined;
|
|
10928
|
+
recorder?: {
|
|
10939
10929
|
reference: string;
|
|
10940
10930
|
type?: string | undefined;
|
|
10941
10931
|
display?: string | undefined;
|
|
@@ -10948,6 +10938,16 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10948
10938
|
}[] | undefined;
|
|
10949
10939
|
text?: string | undefined;
|
|
10950
10940
|
} | undefined;
|
|
10941
|
+
basedOn?: {
|
|
10942
|
+
reference: string;
|
|
10943
|
+
type?: string | undefined;
|
|
10944
|
+
display?: string | undefined;
|
|
10945
|
+
}[] | undefined;
|
|
10946
|
+
performer?: {
|
|
10947
|
+
reference: string;
|
|
10948
|
+
type?: string | undefined;
|
|
10949
|
+
display?: string | undefined;
|
|
10950
|
+
} | undefined;
|
|
10951
10951
|
reasonCode?: {
|
|
10952
10952
|
coding?: {
|
|
10953
10953
|
code?: string | undefined;
|
|
@@ -10992,6 +10992,22 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
10992
10992
|
}[] | undefined;
|
|
10993
10993
|
text?: string | undefined;
|
|
10994
10994
|
} | undefined;
|
|
10995
|
+
site?: {
|
|
10996
|
+
coding?: {
|
|
10997
|
+
code?: string | undefined;
|
|
10998
|
+
system?: string | undefined;
|
|
10999
|
+
display?: string | undefined;
|
|
11000
|
+
}[] | undefined;
|
|
11001
|
+
text?: string | undefined;
|
|
11002
|
+
} | undefined;
|
|
11003
|
+
route?: {
|
|
11004
|
+
coding?: {
|
|
11005
|
+
code?: string | undefined;
|
|
11006
|
+
system?: string | undefined;
|
|
11007
|
+
display?: string | undefined;
|
|
11008
|
+
}[] | undefined;
|
|
11009
|
+
text?: string | undefined;
|
|
11010
|
+
} | undefined;
|
|
10995
11011
|
sequence?: number | undefined;
|
|
10996
11012
|
additionalInstruction?: {
|
|
10997
11013
|
coding?: {
|
|
@@ -11031,22 +11047,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11031
11047
|
} | undefined;
|
|
11032
11048
|
} | undefined;
|
|
11033
11049
|
asNeededBoolean?: boolean | undefined;
|
|
11034
|
-
site?: {
|
|
11035
|
-
coding?: {
|
|
11036
|
-
code?: string | undefined;
|
|
11037
|
-
system?: string | undefined;
|
|
11038
|
-
display?: string | undefined;
|
|
11039
|
-
}[] | undefined;
|
|
11040
|
-
text?: string | undefined;
|
|
11041
|
-
} | undefined;
|
|
11042
|
-
route?: {
|
|
11043
|
-
coding?: {
|
|
11044
|
-
code?: string | undefined;
|
|
11045
|
-
system?: string | undefined;
|
|
11046
|
-
display?: string | undefined;
|
|
11047
|
-
}[] | undefined;
|
|
11048
|
-
text?: string | undefined;
|
|
11049
|
-
} | undefined;
|
|
11050
11050
|
doseAndRate?: {
|
|
11051
11051
|
type?: {
|
|
11052
11052
|
coding?: {
|
|
@@ -11056,40 +11056,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11056
11056
|
}[] | undefined;
|
|
11057
11057
|
text?: string | undefined;
|
|
11058
11058
|
} | undefined;
|
|
11059
|
-
|
|
11060
|
-
|
|
11059
|
+
rateRatio?: {
|
|
11060
|
+
numerator?: {
|
|
11061
11061
|
value: number;
|
|
11062
11062
|
code?: string | undefined;
|
|
11063
11063
|
system?: string | undefined;
|
|
11064
11064
|
unit?: string | undefined;
|
|
11065
11065
|
} | undefined;
|
|
11066
|
-
|
|
11066
|
+
denominator?: {
|
|
11067
11067
|
value: number;
|
|
11068
11068
|
code?: string | undefined;
|
|
11069
11069
|
system?: string | undefined;
|
|
11070
11070
|
unit?: string | undefined;
|
|
11071
11071
|
} | undefined;
|
|
11072
11072
|
} | undefined;
|
|
11073
|
-
|
|
11073
|
+
rateQuantity?: {
|
|
11074
11074
|
value: number;
|
|
11075
11075
|
code?: string | undefined;
|
|
11076
11076
|
system?: string | undefined;
|
|
11077
11077
|
unit?: string | undefined;
|
|
11078
11078
|
} | undefined;
|
|
11079
|
-
|
|
11080
|
-
|
|
11079
|
+
doseRange?: {
|
|
11080
|
+
low?: {
|
|
11081
11081
|
value: number;
|
|
11082
11082
|
code?: string | undefined;
|
|
11083
11083
|
system?: string | undefined;
|
|
11084
11084
|
unit?: string | undefined;
|
|
11085
11085
|
} | undefined;
|
|
11086
|
-
|
|
11086
|
+
high?: {
|
|
11087
11087
|
value: number;
|
|
11088
11088
|
code?: string | undefined;
|
|
11089
11089
|
system?: string | undefined;
|
|
11090
11090
|
unit?: string | undefined;
|
|
11091
11091
|
} | undefined;
|
|
11092
11092
|
} | undefined;
|
|
11093
|
+
doseQuantity?: {
|
|
11094
|
+
value: number;
|
|
11095
|
+
code?: string | undefined;
|
|
11096
|
+
system?: string | undefined;
|
|
11097
|
+
unit?: string | undefined;
|
|
11098
|
+
} | undefined;
|
|
11093
11099
|
rateRange?: {
|
|
11094
11100
|
low?: {
|
|
11095
11101
|
value: number;
|
|
@@ -11104,12 +11110,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11104
11110
|
unit?: string | undefined;
|
|
11105
11111
|
} | undefined;
|
|
11106
11112
|
} | undefined;
|
|
11107
|
-
rateQuantity?: {
|
|
11108
|
-
value: number;
|
|
11109
|
-
code?: string | undefined;
|
|
11110
|
-
system?: string | undefined;
|
|
11111
|
-
unit?: string | undefined;
|
|
11112
|
-
} | undefined;
|
|
11113
11113
|
}[] | undefined;
|
|
11114
11114
|
maxDosePerPeriod?: {
|
|
11115
11115
|
numerator?: {
|
|
@@ -11194,7 +11194,7 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11194
11194
|
} | undefined;
|
|
11195
11195
|
}, {
|
|
11196
11196
|
resource: {
|
|
11197
|
-
status: "unknown" | "active" | "
|
|
11197
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
11198
11198
|
resourceType: "MedicationRequest";
|
|
11199
11199
|
id: string;
|
|
11200
11200
|
subject: {
|
|
@@ -11202,12 +11202,12 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11202
11202
|
type?: string | undefined;
|
|
11203
11203
|
display?: string | undefined;
|
|
11204
11204
|
};
|
|
11205
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
11206
11205
|
medicationReference: {
|
|
11207
11206
|
reference: string;
|
|
11208
11207
|
type?: string | undefined;
|
|
11209
11208
|
display?: string | undefined;
|
|
11210
11209
|
};
|
|
11210
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
11211
11211
|
identifier?: {
|
|
11212
11212
|
value: string;
|
|
11213
11213
|
system: string;
|
|
@@ -11218,24 +11218,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11218
11218
|
profile?: string[] | undefined;
|
|
11219
11219
|
versionId?: string | undefined;
|
|
11220
11220
|
} | undefined;
|
|
11221
|
-
encounter?: {
|
|
11222
|
-
reference: string;
|
|
11223
|
-
type?: string | undefined;
|
|
11224
|
-
display?: string | undefined;
|
|
11225
|
-
} | undefined;
|
|
11226
|
-
category?: {
|
|
11227
|
-
coding?: {
|
|
11228
|
-
code?: string | undefined;
|
|
11229
|
-
system?: string | undefined;
|
|
11230
|
-
display?: string | undefined;
|
|
11231
|
-
}[] | undefined;
|
|
11232
|
-
text?: string | undefined;
|
|
11233
|
-
}[] | undefined;
|
|
11234
|
-
recorder?: {
|
|
11235
|
-
reference: string;
|
|
11236
|
-
type?: string | undefined;
|
|
11237
|
-
display?: string | undefined;
|
|
11238
|
-
} | undefined;
|
|
11239
11221
|
note?: {
|
|
11240
11222
|
text: string;
|
|
11241
11223
|
authorReference?: {
|
|
@@ -11246,12 +11228,20 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11246
11228
|
authorString?: string | undefined;
|
|
11247
11229
|
time?: string | undefined;
|
|
11248
11230
|
}[] | undefined;
|
|
11249
|
-
|
|
11231
|
+
category?: {
|
|
11232
|
+
coding?: {
|
|
11233
|
+
code?: string | undefined;
|
|
11234
|
+
system?: string | undefined;
|
|
11235
|
+
display?: string | undefined;
|
|
11236
|
+
}[] | undefined;
|
|
11237
|
+
text?: string | undefined;
|
|
11238
|
+
}[] | undefined;
|
|
11239
|
+
encounter?: {
|
|
11250
11240
|
reference: string;
|
|
11251
11241
|
type?: string | undefined;
|
|
11252
11242
|
display?: string | undefined;
|
|
11253
|
-
}
|
|
11254
|
-
|
|
11243
|
+
} | undefined;
|
|
11244
|
+
recorder?: {
|
|
11255
11245
|
reference: string;
|
|
11256
11246
|
type?: string | undefined;
|
|
11257
11247
|
display?: string | undefined;
|
|
@@ -11264,6 +11254,16 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11264
11254
|
}[] | undefined;
|
|
11265
11255
|
text?: string | undefined;
|
|
11266
11256
|
} | undefined;
|
|
11257
|
+
basedOn?: {
|
|
11258
|
+
reference: string;
|
|
11259
|
+
type?: string | undefined;
|
|
11260
|
+
display?: string | undefined;
|
|
11261
|
+
}[] | undefined;
|
|
11262
|
+
performer?: {
|
|
11263
|
+
reference: string;
|
|
11264
|
+
type?: string | undefined;
|
|
11265
|
+
display?: string | undefined;
|
|
11266
|
+
} | undefined;
|
|
11267
11267
|
reasonCode?: {
|
|
11268
11268
|
coding?: {
|
|
11269
11269
|
code?: string | undefined;
|
|
@@ -11308,6 +11308,22 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11308
11308
|
}[] | undefined;
|
|
11309
11309
|
text?: string | undefined;
|
|
11310
11310
|
} | undefined;
|
|
11311
|
+
site?: {
|
|
11312
|
+
coding?: {
|
|
11313
|
+
code?: string | undefined;
|
|
11314
|
+
system?: string | undefined;
|
|
11315
|
+
display?: string | undefined;
|
|
11316
|
+
}[] | undefined;
|
|
11317
|
+
text?: string | undefined;
|
|
11318
|
+
} | undefined;
|
|
11319
|
+
route?: {
|
|
11320
|
+
coding?: {
|
|
11321
|
+
code?: string | undefined;
|
|
11322
|
+
system?: string | undefined;
|
|
11323
|
+
display?: string | undefined;
|
|
11324
|
+
}[] | undefined;
|
|
11325
|
+
text?: string | undefined;
|
|
11326
|
+
} | undefined;
|
|
11311
11327
|
sequence?: number | undefined;
|
|
11312
11328
|
additionalInstruction?: {
|
|
11313
11329
|
coding?: {
|
|
@@ -11347,22 +11363,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11347
11363
|
} | undefined;
|
|
11348
11364
|
} | undefined;
|
|
11349
11365
|
asNeededBoolean?: boolean | undefined;
|
|
11350
|
-
site?: {
|
|
11351
|
-
coding?: {
|
|
11352
|
-
code?: string | undefined;
|
|
11353
|
-
system?: string | undefined;
|
|
11354
|
-
display?: string | undefined;
|
|
11355
|
-
}[] | undefined;
|
|
11356
|
-
text?: string | undefined;
|
|
11357
|
-
} | undefined;
|
|
11358
|
-
route?: {
|
|
11359
|
-
coding?: {
|
|
11360
|
-
code?: string | undefined;
|
|
11361
|
-
system?: string | undefined;
|
|
11362
|
-
display?: string | undefined;
|
|
11363
|
-
}[] | undefined;
|
|
11364
|
-
text?: string | undefined;
|
|
11365
|
-
} | undefined;
|
|
11366
11366
|
doseAndRate?: {
|
|
11367
11367
|
type?: {
|
|
11368
11368
|
coding?: {
|
|
@@ -11372,40 +11372,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11372
11372
|
}[] | undefined;
|
|
11373
11373
|
text?: string | undefined;
|
|
11374
11374
|
} | undefined;
|
|
11375
|
-
|
|
11376
|
-
|
|
11375
|
+
rateRatio?: {
|
|
11376
|
+
numerator?: {
|
|
11377
11377
|
value: number;
|
|
11378
11378
|
code?: string | undefined;
|
|
11379
11379
|
system?: string | undefined;
|
|
11380
11380
|
unit?: string | undefined;
|
|
11381
11381
|
} | undefined;
|
|
11382
|
-
|
|
11382
|
+
denominator?: {
|
|
11383
11383
|
value: number;
|
|
11384
11384
|
code?: string | undefined;
|
|
11385
11385
|
system?: string | undefined;
|
|
11386
11386
|
unit?: string | undefined;
|
|
11387
11387
|
} | undefined;
|
|
11388
11388
|
} | undefined;
|
|
11389
|
-
|
|
11389
|
+
rateQuantity?: {
|
|
11390
11390
|
value: number;
|
|
11391
11391
|
code?: string | undefined;
|
|
11392
11392
|
system?: string | undefined;
|
|
11393
11393
|
unit?: string | undefined;
|
|
11394
11394
|
} | undefined;
|
|
11395
|
-
|
|
11396
|
-
|
|
11395
|
+
doseRange?: {
|
|
11396
|
+
low?: {
|
|
11397
11397
|
value: number;
|
|
11398
11398
|
code?: string | undefined;
|
|
11399
11399
|
system?: string | undefined;
|
|
11400
11400
|
unit?: string | undefined;
|
|
11401
11401
|
} | undefined;
|
|
11402
|
-
|
|
11402
|
+
high?: {
|
|
11403
11403
|
value: number;
|
|
11404
11404
|
code?: string | undefined;
|
|
11405
11405
|
system?: string | undefined;
|
|
11406
11406
|
unit?: string | undefined;
|
|
11407
11407
|
} | undefined;
|
|
11408
11408
|
} | undefined;
|
|
11409
|
+
doseQuantity?: {
|
|
11410
|
+
value: number;
|
|
11411
|
+
code?: string | undefined;
|
|
11412
|
+
system?: string | undefined;
|
|
11413
|
+
unit?: string | undefined;
|
|
11414
|
+
} | undefined;
|
|
11409
11415
|
rateRange?: {
|
|
11410
11416
|
low?: {
|
|
11411
11417
|
value: number;
|
|
@@ -11420,12 +11426,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11420
11426
|
unit?: string | undefined;
|
|
11421
11427
|
} | undefined;
|
|
11422
11428
|
} | undefined;
|
|
11423
|
-
rateQuantity?: {
|
|
11424
|
-
value: number;
|
|
11425
|
-
code?: string | undefined;
|
|
11426
|
-
system?: string | undefined;
|
|
11427
|
-
unit?: string | undefined;
|
|
11428
|
-
} | undefined;
|
|
11429
11429
|
}[] | undefined;
|
|
11430
11430
|
maxDosePerPeriod?: {
|
|
11431
11431
|
numerator?: {
|
|
@@ -11519,7 +11519,7 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11519
11519
|
}[] | undefined;
|
|
11520
11520
|
entry?: {
|
|
11521
11521
|
resource: {
|
|
11522
|
-
status: "unknown" | "active" | "
|
|
11522
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
11523
11523
|
resourceType: "MedicationRequest";
|
|
11524
11524
|
id: string;
|
|
11525
11525
|
subject: {
|
|
@@ -11527,12 +11527,12 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11527
11527
|
type?: string | undefined;
|
|
11528
11528
|
display?: string | undefined;
|
|
11529
11529
|
};
|
|
11530
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
11531
11530
|
medicationReference: {
|
|
11532
11531
|
reference: string;
|
|
11533
11532
|
type?: string | undefined;
|
|
11534
11533
|
display?: string | undefined;
|
|
11535
11534
|
};
|
|
11535
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
11536
11536
|
identifier?: {
|
|
11537
11537
|
value: string;
|
|
11538
11538
|
system: string;
|
|
@@ -11543,24 +11543,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11543
11543
|
profile?: string[] | undefined;
|
|
11544
11544
|
versionId?: string | undefined;
|
|
11545
11545
|
} | undefined;
|
|
11546
|
-
encounter?: {
|
|
11547
|
-
reference: string;
|
|
11548
|
-
type?: string | undefined;
|
|
11549
|
-
display?: string | undefined;
|
|
11550
|
-
} | undefined;
|
|
11551
|
-
category?: {
|
|
11552
|
-
coding?: {
|
|
11553
|
-
code?: string | undefined;
|
|
11554
|
-
system?: string | undefined;
|
|
11555
|
-
display?: string | undefined;
|
|
11556
|
-
}[] | undefined;
|
|
11557
|
-
text?: string | undefined;
|
|
11558
|
-
}[] | undefined;
|
|
11559
|
-
recorder?: {
|
|
11560
|
-
reference: string;
|
|
11561
|
-
type?: string | undefined;
|
|
11562
|
-
display?: string | undefined;
|
|
11563
|
-
} | undefined;
|
|
11564
11546
|
note?: {
|
|
11565
11547
|
text: string;
|
|
11566
11548
|
authorReference?: {
|
|
@@ -11571,12 +11553,20 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11571
11553
|
authorString?: string | undefined;
|
|
11572
11554
|
time?: string | undefined;
|
|
11573
11555
|
}[] | undefined;
|
|
11574
|
-
|
|
11556
|
+
category?: {
|
|
11557
|
+
coding?: {
|
|
11558
|
+
code?: string | undefined;
|
|
11559
|
+
system?: string | undefined;
|
|
11560
|
+
display?: string | undefined;
|
|
11561
|
+
}[] | undefined;
|
|
11562
|
+
text?: string | undefined;
|
|
11563
|
+
}[] | undefined;
|
|
11564
|
+
encounter?: {
|
|
11575
11565
|
reference: string;
|
|
11576
11566
|
type?: string | undefined;
|
|
11577
11567
|
display?: string | undefined;
|
|
11578
|
-
}
|
|
11579
|
-
|
|
11568
|
+
} | undefined;
|
|
11569
|
+
recorder?: {
|
|
11580
11570
|
reference: string;
|
|
11581
11571
|
type?: string | undefined;
|
|
11582
11572
|
display?: string | undefined;
|
|
@@ -11589,6 +11579,16 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11589
11579
|
}[] | undefined;
|
|
11590
11580
|
text?: string | undefined;
|
|
11591
11581
|
} | undefined;
|
|
11582
|
+
basedOn?: {
|
|
11583
|
+
reference: string;
|
|
11584
|
+
type?: string | undefined;
|
|
11585
|
+
display?: string | undefined;
|
|
11586
|
+
}[] | undefined;
|
|
11587
|
+
performer?: {
|
|
11588
|
+
reference: string;
|
|
11589
|
+
type?: string | undefined;
|
|
11590
|
+
display?: string | undefined;
|
|
11591
|
+
} | undefined;
|
|
11592
11592
|
reasonCode?: {
|
|
11593
11593
|
coding?: {
|
|
11594
11594
|
code?: string | undefined;
|
|
@@ -11633,6 +11633,22 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11633
11633
|
}[] | undefined;
|
|
11634
11634
|
text?: string | undefined;
|
|
11635
11635
|
} | undefined;
|
|
11636
|
+
site?: {
|
|
11637
|
+
coding?: {
|
|
11638
|
+
code?: string | undefined;
|
|
11639
|
+
system?: string | undefined;
|
|
11640
|
+
display?: string | undefined;
|
|
11641
|
+
}[] | undefined;
|
|
11642
|
+
text?: string | undefined;
|
|
11643
|
+
} | undefined;
|
|
11644
|
+
route?: {
|
|
11645
|
+
coding?: {
|
|
11646
|
+
code?: string | undefined;
|
|
11647
|
+
system?: string | undefined;
|
|
11648
|
+
display?: string | undefined;
|
|
11649
|
+
}[] | undefined;
|
|
11650
|
+
text?: string | undefined;
|
|
11651
|
+
} | undefined;
|
|
11636
11652
|
sequence?: number | undefined;
|
|
11637
11653
|
additionalInstruction?: {
|
|
11638
11654
|
coding?: {
|
|
@@ -11672,22 +11688,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11672
11688
|
} | undefined;
|
|
11673
11689
|
} | undefined;
|
|
11674
11690
|
asNeededBoolean?: boolean | undefined;
|
|
11675
|
-
site?: {
|
|
11676
|
-
coding?: {
|
|
11677
|
-
code?: string | undefined;
|
|
11678
|
-
system?: string | undefined;
|
|
11679
|
-
display?: string | undefined;
|
|
11680
|
-
}[] | undefined;
|
|
11681
|
-
text?: string | undefined;
|
|
11682
|
-
} | undefined;
|
|
11683
|
-
route?: {
|
|
11684
|
-
coding?: {
|
|
11685
|
-
code?: string | undefined;
|
|
11686
|
-
system?: string | undefined;
|
|
11687
|
-
display?: string | undefined;
|
|
11688
|
-
}[] | undefined;
|
|
11689
|
-
text?: string | undefined;
|
|
11690
|
-
} | undefined;
|
|
11691
11691
|
doseAndRate?: {
|
|
11692
11692
|
type?: {
|
|
11693
11693
|
coding?: {
|
|
@@ -11697,40 +11697,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11697
11697
|
}[] | undefined;
|
|
11698
11698
|
text?: string | undefined;
|
|
11699
11699
|
} | undefined;
|
|
11700
|
-
|
|
11701
|
-
|
|
11700
|
+
rateRatio?: {
|
|
11701
|
+
numerator?: {
|
|
11702
11702
|
value: number;
|
|
11703
11703
|
code?: string | undefined;
|
|
11704
11704
|
system?: string | undefined;
|
|
11705
11705
|
unit?: string | undefined;
|
|
11706
11706
|
} | undefined;
|
|
11707
|
-
|
|
11707
|
+
denominator?: {
|
|
11708
11708
|
value: number;
|
|
11709
11709
|
code?: string | undefined;
|
|
11710
11710
|
system?: string | undefined;
|
|
11711
11711
|
unit?: string | undefined;
|
|
11712
11712
|
} | undefined;
|
|
11713
11713
|
} | undefined;
|
|
11714
|
-
|
|
11714
|
+
rateQuantity?: {
|
|
11715
11715
|
value: number;
|
|
11716
11716
|
code?: string | undefined;
|
|
11717
11717
|
system?: string | undefined;
|
|
11718
11718
|
unit?: string | undefined;
|
|
11719
11719
|
} | undefined;
|
|
11720
|
-
|
|
11721
|
-
|
|
11720
|
+
doseRange?: {
|
|
11721
|
+
low?: {
|
|
11722
11722
|
value: number;
|
|
11723
11723
|
code?: string | undefined;
|
|
11724
11724
|
system?: string | undefined;
|
|
11725
11725
|
unit?: string | undefined;
|
|
11726
11726
|
} | undefined;
|
|
11727
|
-
|
|
11727
|
+
high?: {
|
|
11728
11728
|
value: number;
|
|
11729
11729
|
code?: string | undefined;
|
|
11730
11730
|
system?: string | undefined;
|
|
11731
11731
|
unit?: string | undefined;
|
|
11732
11732
|
} | undefined;
|
|
11733
11733
|
} | undefined;
|
|
11734
|
+
doseQuantity?: {
|
|
11735
|
+
value: number;
|
|
11736
|
+
code?: string | undefined;
|
|
11737
|
+
system?: string | undefined;
|
|
11738
|
+
unit?: string | undefined;
|
|
11739
|
+
} | undefined;
|
|
11734
11740
|
rateRange?: {
|
|
11735
11741
|
low?: {
|
|
11736
11742
|
value: number;
|
|
@@ -11745,12 +11751,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11745
11751
|
unit?: string | undefined;
|
|
11746
11752
|
} | undefined;
|
|
11747
11753
|
} | undefined;
|
|
11748
|
-
rateQuantity?: {
|
|
11749
|
-
value: number;
|
|
11750
|
-
code?: string | undefined;
|
|
11751
|
-
system?: string | undefined;
|
|
11752
|
-
unit?: string | undefined;
|
|
11753
|
-
} | undefined;
|
|
11754
11754
|
}[] | undefined;
|
|
11755
11755
|
maxDosePerPeriod?: {
|
|
11756
11756
|
numerator?: {
|
|
@@ -11844,7 +11844,7 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11844
11844
|
}[] | undefined;
|
|
11845
11845
|
entry?: {
|
|
11846
11846
|
resource: {
|
|
11847
|
-
status: "unknown" | "active" | "
|
|
11847
|
+
status: "unknown" | "active" | "on-hold" | "stopped" | "completed" | "entered-in-error" | "cancelled" | "draft";
|
|
11848
11848
|
resourceType: "MedicationRequest";
|
|
11849
11849
|
id: string;
|
|
11850
11850
|
subject: {
|
|
@@ -11852,12 +11852,12 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11852
11852
|
type?: string | undefined;
|
|
11853
11853
|
display?: string | undefined;
|
|
11854
11854
|
};
|
|
11855
|
-
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
11856
11855
|
medicationReference: {
|
|
11857
11856
|
reference: string;
|
|
11858
11857
|
type?: string | undefined;
|
|
11859
11858
|
display?: string | undefined;
|
|
11860
11859
|
};
|
|
11860
|
+
intent: "proposal" | "plan" | "order" | "original-order" | "reflex-order" | "filler-order" | "instance-order" | "option";
|
|
11861
11861
|
identifier?: {
|
|
11862
11862
|
value: string;
|
|
11863
11863
|
system: string;
|
|
@@ -11868,24 +11868,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11868
11868
|
profile?: string[] | undefined;
|
|
11869
11869
|
versionId?: string | undefined;
|
|
11870
11870
|
} | undefined;
|
|
11871
|
-
encounter?: {
|
|
11872
|
-
reference: string;
|
|
11873
|
-
type?: string | undefined;
|
|
11874
|
-
display?: string | undefined;
|
|
11875
|
-
} | undefined;
|
|
11876
|
-
category?: {
|
|
11877
|
-
coding?: {
|
|
11878
|
-
code?: string | undefined;
|
|
11879
|
-
system?: string | undefined;
|
|
11880
|
-
display?: string | undefined;
|
|
11881
|
-
}[] | undefined;
|
|
11882
|
-
text?: string | undefined;
|
|
11883
|
-
}[] | undefined;
|
|
11884
|
-
recorder?: {
|
|
11885
|
-
reference: string;
|
|
11886
|
-
type?: string | undefined;
|
|
11887
|
-
display?: string | undefined;
|
|
11888
|
-
} | undefined;
|
|
11889
11871
|
note?: {
|
|
11890
11872
|
text: string;
|
|
11891
11873
|
authorReference?: {
|
|
@@ -11896,12 +11878,20 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11896
11878
|
authorString?: string | undefined;
|
|
11897
11879
|
time?: string | undefined;
|
|
11898
11880
|
}[] | undefined;
|
|
11899
|
-
|
|
11881
|
+
category?: {
|
|
11882
|
+
coding?: {
|
|
11883
|
+
code?: string | undefined;
|
|
11884
|
+
system?: string | undefined;
|
|
11885
|
+
display?: string | undefined;
|
|
11886
|
+
}[] | undefined;
|
|
11887
|
+
text?: string | undefined;
|
|
11888
|
+
}[] | undefined;
|
|
11889
|
+
encounter?: {
|
|
11900
11890
|
reference: string;
|
|
11901
11891
|
type?: string | undefined;
|
|
11902
11892
|
display?: string | undefined;
|
|
11903
|
-
}
|
|
11904
|
-
|
|
11893
|
+
} | undefined;
|
|
11894
|
+
recorder?: {
|
|
11905
11895
|
reference: string;
|
|
11906
11896
|
type?: string | undefined;
|
|
11907
11897
|
display?: string | undefined;
|
|
@@ -11914,6 +11904,16 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11914
11904
|
}[] | undefined;
|
|
11915
11905
|
text?: string | undefined;
|
|
11916
11906
|
} | undefined;
|
|
11907
|
+
basedOn?: {
|
|
11908
|
+
reference: string;
|
|
11909
|
+
type?: string | undefined;
|
|
11910
|
+
display?: string | undefined;
|
|
11911
|
+
}[] | undefined;
|
|
11912
|
+
performer?: {
|
|
11913
|
+
reference: string;
|
|
11914
|
+
type?: string | undefined;
|
|
11915
|
+
display?: string | undefined;
|
|
11916
|
+
} | undefined;
|
|
11917
11917
|
reasonCode?: {
|
|
11918
11918
|
coding?: {
|
|
11919
11919
|
code?: string | undefined;
|
|
@@ -11958,6 +11958,22 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11958
11958
|
}[] | undefined;
|
|
11959
11959
|
text?: string | undefined;
|
|
11960
11960
|
} | undefined;
|
|
11961
|
+
site?: {
|
|
11962
|
+
coding?: {
|
|
11963
|
+
code?: string | undefined;
|
|
11964
|
+
system?: string | undefined;
|
|
11965
|
+
display?: string | undefined;
|
|
11966
|
+
}[] | undefined;
|
|
11967
|
+
text?: string | undefined;
|
|
11968
|
+
} | undefined;
|
|
11969
|
+
route?: {
|
|
11970
|
+
coding?: {
|
|
11971
|
+
code?: string | undefined;
|
|
11972
|
+
system?: string | undefined;
|
|
11973
|
+
display?: string | undefined;
|
|
11974
|
+
}[] | undefined;
|
|
11975
|
+
text?: string | undefined;
|
|
11976
|
+
} | undefined;
|
|
11961
11977
|
sequence?: number | undefined;
|
|
11962
11978
|
additionalInstruction?: {
|
|
11963
11979
|
coding?: {
|
|
@@ -11997,22 +12013,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
11997
12013
|
} | undefined;
|
|
11998
12014
|
} | undefined;
|
|
11999
12015
|
asNeededBoolean?: boolean | undefined;
|
|
12000
|
-
site?: {
|
|
12001
|
-
coding?: {
|
|
12002
|
-
code?: string | undefined;
|
|
12003
|
-
system?: string | undefined;
|
|
12004
|
-
display?: string | undefined;
|
|
12005
|
-
}[] | undefined;
|
|
12006
|
-
text?: string | undefined;
|
|
12007
|
-
} | undefined;
|
|
12008
|
-
route?: {
|
|
12009
|
-
coding?: {
|
|
12010
|
-
code?: string | undefined;
|
|
12011
|
-
system?: string | undefined;
|
|
12012
|
-
display?: string | undefined;
|
|
12013
|
-
}[] | undefined;
|
|
12014
|
-
text?: string | undefined;
|
|
12015
|
-
} | undefined;
|
|
12016
12016
|
doseAndRate?: {
|
|
12017
12017
|
type?: {
|
|
12018
12018
|
coding?: {
|
|
@@ -12022,40 +12022,46 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
12022
12022
|
}[] | undefined;
|
|
12023
12023
|
text?: string | undefined;
|
|
12024
12024
|
} | undefined;
|
|
12025
|
-
|
|
12026
|
-
|
|
12025
|
+
rateRatio?: {
|
|
12026
|
+
numerator?: {
|
|
12027
12027
|
value: number;
|
|
12028
12028
|
code?: string | undefined;
|
|
12029
12029
|
system?: string | undefined;
|
|
12030
12030
|
unit?: string | undefined;
|
|
12031
12031
|
} | undefined;
|
|
12032
|
-
|
|
12032
|
+
denominator?: {
|
|
12033
12033
|
value: number;
|
|
12034
12034
|
code?: string | undefined;
|
|
12035
12035
|
system?: string | undefined;
|
|
12036
12036
|
unit?: string | undefined;
|
|
12037
12037
|
} | undefined;
|
|
12038
12038
|
} | undefined;
|
|
12039
|
-
|
|
12039
|
+
rateQuantity?: {
|
|
12040
12040
|
value: number;
|
|
12041
12041
|
code?: string | undefined;
|
|
12042
12042
|
system?: string | undefined;
|
|
12043
12043
|
unit?: string | undefined;
|
|
12044
12044
|
} | undefined;
|
|
12045
|
-
|
|
12046
|
-
|
|
12045
|
+
doseRange?: {
|
|
12046
|
+
low?: {
|
|
12047
12047
|
value: number;
|
|
12048
12048
|
code?: string | undefined;
|
|
12049
12049
|
system?: string | undefined;
|
|
12050
12050
|
unit?: string | undefined;
|
|
12051
12051
|
} | undefined;
|
|
12052
|
-
|
|
12052
|
+
high?: {
|
|
12053
12053
|
value: number;
|
|
12054
12054
|
code?: string | undefined;
|
|
12055
12055
|
system?: string | undefined;
|
|
12056
12056
|
unit?: string | undefined;
|
|
12057
12057
|
} | undefined;
|
|
12058
12058
|
} | undefined;
|
|
12059
|
+
doseQuantity?: {
|
|
12060
|
+
value: number;
|
|
12061
|
+
code?: string | undefined;
|
|
12062
|
+
system?: string | undefined;
|
|
12063
|
+
unit?: string | undefined;
|
|
12064
|
+
} | undefined;
|
|
12059
12065
|
rateRange?: {
|
|
12060
12066
|
low?: {
|
|
12061
12067
|
value: number;
|
|
@@ -12070,12 +12076,6 @@ export declare const MedicationRequestBundleSchema: z.ZodObject<{
|
|
|
12070
12076
|
unit?: string | undefined;
|
|
12071
12077
|
} | undefined;
|
|
12072
12078
|
} | undefined;
|
|
12073
|
-
rateQuantity?: {
|
|
12074
|
-
value: number;
|
|
12075
|
-
code?: string | undefined;
|
|
12076
|
-
system?: string | undefined;
|
|
12077
|
-
unit?: string | undefined;
|
|
12078
|
-
} | undefined;
|
|
12079
12079
|
}[] | undefined;
|
|
12080
12080
|
maxDosePerPeriod?: {
|
|
12081
12081
|
numerator?: {
|