@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
|
@@ -293,17 +293,17 @@ export declare const ProcedureSearchParamsSchema: z.ZodEffects<z.ZodObject<{
|
|
|
293
293
|
subject: z.ZodOptional<z.ZodString>;
|
|
294
294
|
encounter: z.ZodOptional<z.ZodString>;
|
|
295
295
|
}, "strip", z.ZodTypeAny, {
|
|
296
|
-
subject?: string | undefined;
|
|
297
296
|
encounter?: string | undefined;
|
|
298
|
-
}, {
|
|
299
297
|
subject?: string | undefined;
|
|
298
|
+
}, {
|
|
300
299
|
encounter?: string | undefined;
|
|
301
|
-
}>, {
|
|
302
300
|
subject?: string | undefined;
|
|
301
|
+
}>, {
|
|
303
302
|
encounter?: string | undefined;
|
|
304
|
-
}, {
|
|
305
303
|
subject?: string | undefined;
|
|
304
|
+
}, {
|
|
306
305
|
encounter?: string | undefined;
|
|
306
|
+
subject?: string | undefined;
|
|
307
307
|
}>;
|
|
308
308
|
export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
309
309
|
resourceType: z.ZodLiteral<"Procedure">;
|
|
@@ -961,14 +961,14 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
961
961
|
}[];
|
|
962
962
|
text?: string | undefined;
|
|
963
963
|
};
|
|
964
|
-
status: "unknown" | "
|
|
964
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
965
965
|
resourceType: "Procedure";
|
|
966
|
-
|
|
966
|
+
encounter: {
|
|
967
967
|
reference: string;
|
|
968
968
|
type?: string | undefined;
|
|
969
969
|
display?: string | undefined;
|
|
970
970
|
};
|
|
971
|
-
|
|
971
|
+
subject: {
|
|
972
972
|
reference: string;
|
|
973
973
|
type?: string | undefined;
|
|
974
974
|
display?: string | undefined;
|
|
@@ -978,6 +978,16 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
978
978
|
system: string;
|
|
979
979
|
use?: string | undefined;
|
|
980
980
|
}[] | undefined;
|
|
981
|
+
note?: {
|
|
982
|
+
text: string;
|
|
983
|
+
authorReference?: {
|
|
984
|
+
reference: string;
|
|
985
|
+
type?: string | undefined;
|
|
986
|
+
display?: string | undefined;
|
|
987
|
+
} | undefined;
|
|
988
|
+
authorString?: string | undefined;
|
|
989
|
+
time?: string | undefined;
|
|
990
|
+
}[] | undefined;
|
|
981
991
|
category?: {
|
|
982
992
|
coding?: {
|
|
983
993
|
code?: string | undefined;
|
|
@@ -986,14 +996,6 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
986
996
|
}[] | undefined;
|
|
987
997
|
text?: string | undefined;
|
|
988
998
|
} | undefined;
|
|
989
|
-
bodySite?: {
|
|
990
|
-
coding?: {
|
|
991
|
-
code?: string | undefined;
|
|
992
|
-
system?: string | undefined;
|
|
993
|
-
display?: string | undefined;
|
|
994
|
-
}[] | undefined;
|
|
995
|
-
text?: string | undefined;
|
|
996
|
-
}[] | undefined;
|
|
997
999
|
recorder?: {
|
|
998
1000
|
reference: string;
|
|
999
1001
|
type?: string | undefined;
|
|
@@ -1004,16 +1006,22 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
1004
1006
|
type?: string | undefined;
|
|
1005
1007
|
display?: string | undefined;
|
|
1006
1008
|
} | undefined;
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
type?: string | undefined;
|
|
1009
|
+
statusReason?: {
|
|
1010
|
+
coding?: {
|
|
1011
|
+
code?: string | undefined;
|
|
1012
|
+
system?: string | undefined;
|
|
1012
1013
|
display?: string | undefined;
|
|
1013
|
-
} | undefined;
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1014
|
+
}[] | undefined;
|
|
1015
|
+
text?: string | undefined;
|
|
1016
|
+
} | undefined;
|
|
1017
|
+
outcome?: {
|
|
1018
|
+
coding?: {
|
|
1019
|
+
code?: string | undefined;
|
|
1020
|
+
system?: string | undefined;
|
|
1021
|
+
display?: string | undefined;
|
|
1022
|
+
}[] | undefined;
|
|
1023
|
+
text?: string | undefined;
|
|
1024
|
+
} | undefined;
|
|
1017
1025
|
basedOn?: {
|
|
1018
1026
|
reference: string;
|
|
1019
1027
|
type?: string | undefined;
|
|
@@ -1039,30 +1047,20 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
1039
1047
|
display?: string | undefined;
|
|
1040
1048
|
} | undefined;
|
|
1041
1049
|
}[] | undefined;
|
|
1042
|
-
|
|
1043
|
-
reference: string;
|
|
1044
|
-
type?: string | undefined;
|
|
1045
|
-
display?: string | undefined;
|
|
1046
|
-
}[] | undefined;
|
|
1047
|
-
statusReason?: {
|
|
1050
|
+
reasonCode?: {
|
|
1048
1051
|
coding?: {
|
|
1049
1052
|
code?: string | undefined;
|
|
1050
1053
|
system?: string | undefined;
|
|
1051
1054
|
display?: string | undefined;
|
|
1052
1055
|
}[] | undefined;
|
|
1053
1056
|
text?: string | undefined;
|
|
1054
|
-
} | undefined;
|
|
1055
|
-
|
|
1056
|
-
performedPeriod?: {
|
|
1057
|
-
start?: string | undefined;
|
|
1058
|
-
end?: string | undefined;
|
|
1059
|
-
} | undefined;
|
|
1060
|
-
location?: {
|
|
1057
|
+
}[] | undefined;
|
|
1058
|
+
reasonReference?: {
|
|
1061
1059
|
reference: string;
|
|
1062
1060
|
type?: string | undefined;
|
|
1063
1061
|
display?: string | undefined;
|
|
1064
|
-
} | undefined;
|
|
1065
|
-
|
|
1062
|
+
}[] | undefined;
|
|
1063
|
+
bodySite?: {
|
|
1066
1064
|
coding?: {
|
|
1067
1065
|
code?: string | undefined;
|
|
1068
1066
|
system?: string | undefined;
|
|
@@ -1070,18 +1068,20 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
1070
1068
|
}[] | undefined;
|
|
1071
1069
|
text?: string | undefined;
|
|
1072
1070
|
}[] | undefined;
|
|
1073
|
-
|
|
1071
|
+
location?: {
|
|
1072
|
+
reference: string;
|
|
1073
|
+
type?: string | undefined;
|
|
1074
|
+
display?: string | undefined;
|
|
1075
|
+
} | undefined;
|
|
1076
|
+
partOf?: {
|
|
1074
1077
|
reference: string;
|
|
1075
1078
|
type?: string | undefined;
|
|
1076
1079
|
display?: string | undefined;
|
|
1077
1080
|
}[] | undefined;
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
display?: string | undefined;
|
|
1083
|
-
}[] | undefined;
|
|
1084
|
-
text?: string | undefined;
|
|
1081
|
+
performedDateTime?: string | undefined;
|
|
1082
|
+
performedPeriod?: {
|
|
1083
|
+
start?: string | undefined;
|
|
1084
|
+
end?: string | undefined;
|
|
1085
1085
|
} | undefined;
|
|
1086
1086
|
report?: {
|
|
1087
1087
|
reference: string;
|
|
@@ -1146,14 +1146,14 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
1146
1146
|
}[];
|
|
1147
1147
|
text?: string | undefined;
|
|
1148
1148
|
};
|
|
1149
|
-
status: "unknown" | "
|
|
1149
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
1150
1150
|
resourceType: "Procedure";
|
|
1151
|
-
|
|
1151
|
+
encounter: {
|
|
1152
1152
|
reference: string;
|
|
1153
1153
|
type?: string | undefined;
|
|
1154
1154
|
display?: string | undefined;
|
|
1155
1155
|
};
|
|
1156
|
-
|
|
1156
|
+
subject: {
|
|
1157
1157
|
reference: string;
|
|
1158
1158
|
type?: string | undefined;
|
|
1159
1159
|
display?: string | undefined;
|
|
@@ -1163,6 +1163,16 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
1163
1163
|
system: string;
|
|
1164
1164
|
use?: string | undefined;
|
|
1165
1165
|
}[] | undefined;
|
|
1166
|
+
note?: {
|
|
1167
|
+
text: string;
|
|
1168
|
+
authorReference?: {
|
|
1169
|
+
reference: string;
|
|
1170
|
+
type?: string | undefined;
|
|
1171
|
+
display?: string | undefined;
|
|
1172
|
+
} | undefined;
|
|
1173
|
+
authorString?: string | undefined;
|
|
1174
|
+
time?: string | undefined;
|
|
1175
|
+
}[] | undefined;
|
|
1166
1176
|
category?: {
|
|
1167
1177
|
coding?: {
|
|
1168
1178
|
code?: string | undefined;
|
|
@@ -1171,14 +1181,6 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
1171
1181
|
}[] | undefined;
|
|
1172
1182
|
text?: string | undefined;
|
|
1173
1183
|
} | undefined;
|
|
1174
|
-
bodySite?: {
|
|
1175
|
-
coding?: {
|
|
1176
|
-
code?: string | undefined;
|
|
1177
|
-
system?: string | undefined;
|
|
1178
|
-
display?: string | undefined;
|
|
1179
|
-
}[] | undefined;
|
|
1180
|
-
text?: string | undefined;
|
|
1181
|
-
}[] | undefined;
|
|
1182
1184
|
recorder?: {
|
|
1183
1185
|
reference: string;
|
|
1184
1186
|
type?: string | undefined;
|
|
@@ -1189,16 +1191,22 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
1189
1191
|
type?: string | undefined;
|
|
1190
1192
|
display?: string | undefined;
|
|
1191
1193
|
} | undefined;
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
type?: string | undefined;
|
|
1194
|
+
statusReason?: {
|
|
1195
|
+
coding?: {
|
|
1196
|
+
code?: string | undefined;
|
|
1197
|
+
system?: string | undefined;
|
|
1197
1198
|
display?: string | undefined;
|
|
1198
|
-
} | undefined;
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1199
|
+
}[] | undefined;
|
|
1200
|
+
text?: string | undefined;
|
|
1201
|
+
} | undefined;
|
|
1202
|
+
outcome?: {
|
|
1203
|
+
coding?: {
|
|
1204
|
+
code?: string | undefined;
|
|
1205
|
+
system?: string | undefined;
|
|
1206
|
+
display?: string | undefined;
|
|
1207
|
+
}[] | undefined;
|
|
1208
|
+
text?: string | undefined;
|
|
1209
|
+
} | undefined;
|
|
1202
1210
|
basedOn?: {
|
|
1203
1211
|
reference: string;
|
|
1204
1212
|
type?: string | undefined;
|
|
@@ -1224,30 +1232,20 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
1224
1232
|
display?: string | undefined;
|
|
1225
1233
|
} | undefined;
|
|
1226
1234
|
}[] | undefined;
|
|
1227
|
-
|
|
1228
|
-
reference: string;
|
|
1229
|
-
type?: string | undefined;
|
|
1230
|
-
display?: string | undefined;
|
|
1231
|
-
}[] | undefined;
|
|
1232
|
-
statusReason?: {
|
|
1235
|
+
reasonCode?: {
|
|
1233
1236
|
coding?: {
|
|
1234
1237
|
code?: string | undefined;
|
|
1235
1238
|
system?: string | undefined;
|
|
1236
1239
|
display?: string | undefined;
|
|
1237
1240
|
}[] | undefined;
|
|
1238
1241
|
text?: string | undefined;
|
|
1239
|
-
} | undefined;
|
|
1240
|
-
|
|
1241
|
-
performedPeriod?: {
|
|
1242
|
-
start?: string | undefined;
|
|
1243
|
-
end?: string | undefined;
|
|
1244
|
-
} | undefined;
|
|
1245
|
-
location?: {
|
|
1242
|
+
}[] | undefined;
|
|
1243
|
+
reasonReference?: {
|
|
1246
1244
|
reference: string;
|
|
1247
1245
|
type?: string | undefined;
|
|
1248
1246
|
display?: string | undefined;
|
|
1249
|
-
} | undefined;
|
|
1250
|
-
|
|
1247
|
+
}[] | undefined;
|
|
1248
|
+
bodySite?: {
|
|
1251
1249
|
coding?: {
|
|
1252
1250
|
code?: string | undefined;
|
|
1253
1251
|
system?: string | undefined;
|
|
@@ -1255,18 +1253,20 @@ export declare const ProcedureBaseSchema: z.ZodObject<{
|
|
|
1255
1253
|
}[] | undefined;
|
|
1256
1254
|
text?: string | undefined;
|
|
1257
1255
|
}[] | undefined;
|
|
1258
|
-
|
|
1256
|
+
location?: {
|
|
1257
|
+
reference: string;
|
|
1258
|
+
type?: string | undefined;
|
|
1259
|
+
display?: string | undefined;
|
|
1260
|
+
} | undefined;
|
|
1261
|
+
partOf?: {
|
|
1259
1262
|
reference: string;
|
|
1260
1263
|
type?: string | undefined;
|
|
1261
1264
|
display?: string | undefined;
|
|
1262
1265
|
}[] | undefined;
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
display?: string | undefined;
|
|
1268
|
-
}[] | undefined;
|
|
1269
|
-
text?: string | undefined;
|
|
1266
|
+
performedDateTime?: string | undefined;
|
|
1267
|
+
performedPeriod?: {
|
|
1268
|
+
start?: string | undefined;
|
|
1269
|
+
end?: string | undefined;
|
|
1270
1270
|
} | undefined;
|
|
1271
1271
|
report?: {
|
|
1272
1272
|
reference: string;
|
|
@@ -1979,14 +1979,14 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
1979
1979
|
}[];
|
|
1980
1980
|
text?: string | undefined;
|
|
1981
1981
|
};
|
|
1982
|
-
status: "unknown" | "
|
|
1982
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
1983
1983
|
resourceType: "Procedure";
|
|
1984
|
-
|
|
1984
|
+
encounter: {
|
|
1985
1985
|
reference: string;
|
|
1986
1986
|
type?: string | undefined;
|
|
1987
1987
|
display?: string | undefined;
|
|
1988
1988
|
};
|
|
1989
|
-
|
|
1989
|
+
subject: {
|
|
1990
1990
|
reference: string;
|
|
1991
1991
|
type?: string | undefined;
|
|
1992
1992
|
display?: string | undefined;
|
|
@@ -1996,6 +1996,16 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
1996
1996
|
system: string;
|
|
1997
1997
|
use?: string | undefined;
|
|
1998
1998
|
}[] | undefined;
|
|
1999
|
+
note?: {
|
|
2000
|
+
text: string;
|
|
2001
|
+
authorReference?: {
|
|
2002
|
+
reference: string;
|
|
2003
|
+
type?: string | undefined;
|
|
2004
|
+
display?: string | undefined;
|
|
2005
|
+
} | undefined;
|
|
2006
|
+
authorString?: string | undefined;
|
|
2007
|
+
time?: string | undefined;
|
|
2008
|
+
}[] | undefined;
|
|
1999
2009
|
category?: {
|
|
2000
2010
|
coding?: {
|
|
2001
2011
|
code?: string | undefined;
|
|
@@ -2004,14 +2014,6 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2004
2014
|
}[] | undefined;
|
|
2005
2015
|
text?: string | undefined;
|
|
2006
2016
|
} | undefined;
|
|
2007
|
-
bodySite?: {
|
|
2008
|
-
coding?: {
|
|
2009
|
-
code?: string | undefined;
|
|
2010
|
-
system?: string | undefined;
|
|
2011
|
-
display?: string | undefined;
|
|
2012
|
-
}[] | undefined;
|
|
2013
|
-
text?: string | undefined;
|
|
2014
|
-
}[] | undefined;
|
|
2015
2017
|
recorder?: {
|
|
2016
2018
|
reference: string;
|
|
2017
2019
|
type?: string | undefined;
|
|
@@ -2022,16 +2024,22 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2022
2024
|
type?: string | undefined;
|
|
2023
2025
|
display?: string | undefined;
|
|
2024
2026
|
} | undefined;
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
type?: string | undefined;
|
|
2027
|
+
statusReason?: {
|
|
2028
|
+
coding?: {
|
|
2029
|
+
code?: string | undefined;
|
|
2030
|
+
system?: string | undefined;
|
|
2030
2031
|
display?: string | undefined;
|
|
2031
|
-
} | undefined;
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2032
|
+
}[] | undefined;
|
|
2033
|
+
text?: string | undefined;
|
|
2034
|
+
} | undefined;
|
|
2035
|
+
outcome?: {
|
|
2036
|
+
coding?: {
|
|
2037
|
+
code?: string | undefined;
|
|
2038
|
+
system?: string | undefined;
|
|
2039
|
+
display?: string | undefined;
|
|
2040
|
+
}[] | undefined;
|
|
2041
|
+
text?: string | undefined;
|
|
2042
|
+
} | undefined;
|
|
2035
2043
|
basedOn?: {
|
|
2036
2044
|
reference: string;
|
|
2037
2045
|
type?: string | undefined;
|
|
@@ -2057,30 +2065,48 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2057
2065
|
display?: string | undefined;
|
|
2058
2066
|
} | undefined;
|
|
2059
2067
|
}[] | undefined;
|
|
2060
|
-
|
|
2068
|
+
reasonCode?: {
|
|
2069
|
+
coding?: {
|
|
2070
|
+
code?: string | undefined;
|
|
2071
|
+
system?: string | undefined;
|
|
2072
|
+
display?: string | undefined;
|
|
2073
|
+
}[] | undefined;
|
|
2074
|
+
text?: string | undefined;
|
|
2075
|
+
}[] | undefined;
|
|
2076
|
+
reasonReference?: {
|
|
2061
2077
|
reference: string;
|
|
2062
2078
|
type?: string | undefined;
|
|
2063
2079
|
display?: string | undefined;
|
|
2064
2080
|
}[] | undefined;
|
|
2065
|
-
|
|
2081
|
+
bodySite?: {
|
|
2066
2082
|
coding?: {
|
|
2067
2083
|
code?: string | undefined;
|
|
2068
2084
|
system?: string | undefined;
|
|
2069
2085
|
display?: string | undefined;
|
|
2070
2086
|
}[] | undefined;
|
|
2071
2087
|
text?: string | undefined;
|
|
2088
|
+
}[] | undefined;
|
|
2089
|
+
location?: {
|
|
2090
|
+
reference: string;
|
|
2091
|
+
type?: string | undefined;
|
|
2092
|
+
display?: string | undefined;
|
|
2072
2093
|
} | undefined;
|
|
2094
|
+
partOf?: {
|
|
2095
|
+
reference: string;
|
|
2096
|
+
type?: string | undefined;
|
|
2097
|
+
display?: string | undefined;
|
|
2098
|
+
}[] | undefined;
|
|
2073
2099
|
performedDateTime?: string | undefined;
|
|
2074
2100
|
performedPeriod?: {
|
|
2075
2101
|
start?: string | undefined;
|
|
2076
2102
|
end?: string | undefined;
|
|
2077
2103
|
} | undefined;
|
|
2078
|
-
|
|
2104
|
+
report?: {
|
|
2079
2105
|
reference: string;
|
|
2080
2106
|
type?: string | undefined;
|
|
2081
2107
|
display?: string | undefined;
|
|
2082
|
-
} | undefined;
|
|
2083
|
-
|
|
2108
|
+
}[] | undefined;
|
|
2109
|
+
complication?: {
|
|
2084
2110
|
coding?: {
|
|
2085
2111
|
code?: string | undefined;
|
|
2086
2112
|
system?: string | undefined;
|
|
@@ -2088,38 +2114,12 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2088
2114
|
}[] | undefined;
|
|
2089
2115
|
text?: string | undefined;
|
|
2090
2116
|
}[] | undefined;
|
|
2091
|
-
|
|
2117
|
+
complicationDetail?: {
|
|
2092
2118
|
reference: string;
|
|
2093
2119
|
type?: string | undefined;
|
|
2094
2120
|
display?: string | undefined;
|
|
2095
2121
|
}[] | undefined;
|
|
2096
|
-
|
|
2097
|
-
coding?: {
|
|
2098
|
-
code?: string | undefined;
|
|
2099
|
-
system?: string | undefined;
|
|
2100
|
-
display?: string | undefined;
|
|
2101
|
-
}[] | undefined;
|
|
2102
|
-
text?: string | undefined;
|
|
2103
|
-
} | undefined;
|
|
2104
|
-
report?: {
|
|
2105
|
-
reference: string;
|
|
2106
|
-
type?: string | undefined;
|
|
2107
|
-
display?: string | undefined;
|
|
2108
|
-
}[] | undefined;
|
|
2109
|
-
complication?: {
|
|
2110
|
-
coding?: {
|
|
2111
|
-
code?: string | undefined;
|
|
2112
|
-
system?: string | undefined;
|
|
2113
|
-
display?: string | undefined;
|
|
2114
|
-
}[] | undefined;
|
|
2115
|
-
text?: string | undefined;
|
|
2116
|
-
}[] | undefined;
|
|
2117
|
-
complicationDetail?: {
|
|
2118
|
-
reference: string;
|
|
2119
|
-
type?: string | undefined;
|
|
2120
|
-
display?: string | undefined;
|
|
2121
|
-
}[] | undefined;
|
|
2122
|
-
followUp?: {
|
|
2122
|
+
followUp?: {
|
|
2123
2123
|
coding?: {
|
|
2124
2124
|
code?: string | undefined;
|
|
2125
2125
|
system?: string | undefined;
|
|
@@ -2164,14 +2164,14 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2164
2164
|
}[];
|
|
2165
2165
|
text?: string | undefined;
|
|
2166
2166
|
};
|
|
2167
|
-
status: "unknown" | "
|
|
2167
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
2168
2168
|
resourceType: "Procedure";
|
|
2169
|
-
|
|
2169
|
+
encounter: {
|
|
2170
2170
|
reference: string;
|
|
2171
2171
|
type?: string | undefined;
|
|
2172
2172
|
display?: string | undefined;
|
|
2173
2173
|
};
|
|
2174
|
-
|
|
2174
|
+
subject: {
|
|
2175
2175
|
reference: string;
|
|
2176
2176
|
type?: string | undefined;
|
|
2177
2177
|
display?: string | undefined;
|
|
@@ -2181,6 +2181,16 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2181
2181
|
system: string;
|
|
2182
2182
|
use?: string | undefined;
|
|
2183
2183
|
}[] | undefined;
|
|
2184
|
+
note?: {
|
|
2185
|
+
text: string;
|
|
2186
|
+
authorReference?: {
|
|
2187
|
+
reference: string;
|
|
2188
|
+
type?: string | undefined;
|
|
2189
|
+
display?: string | undefined;
|
|
2190
|
+
} | undefined;
|
|
2191
|
+
authorString?: string | undefined;
|
|
2192
|
+
time?: string | undefined;
|
|
2193
|
+
}[] | undefined;
|
|
2184
2194
|
category?: {
|
|
2185
2195
|
coding?: {
|
|
2186
2196
|
code?: string | undefined;
|
|
@@ -2189,14 +2199,6 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2189
2199
|
}[] | undefined;
|
|
2190
2200
|
text?: string | undefined;
|
|
2191
2201
|
} | undefined;
|
|
2192
|
-
bodySite?: {
|
|
2193
|
-
coding?: {
|
|
2194
|
-
code?: string | undefined;
|
|
2195
|
-
system?: string | undefined;
|
|
2196
|
-
display?: string | undefined;
|
|
2197
|
-
}[] | undefined;
|
|
2198
|
-
text?: string | undefined;
|
|
2199
|
-
}[] | undefined;
|
|
2200
2202
|
recorder?: {
|
|
2201
2203
|
reference: string;
|
|
2202
2204
|
type?: string | undefined;
|
|
@@ -2207,16 +2209,22 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2207
2209
|
type?: string | undefined;
|
|
2208
2210
|
display?: string | undefined;
|
|
2209
2211
|
} | undefined;
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
type?: string | undefined;
|
|
2212
|
+
statusReason?: {
|
|
2213
|
+
coding?: {
|
|
2214
|
+
code?: string | undefined;
|
|
2215
|
+
system?: string | undefined;
|
|
2215
2216
|
display?: string | undefined;
|
|
2216
|
-
} | undefined;
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2217
|
+
}[] | undefined;
|
|
2218
|
+
text?: string | undefined;
|
|
2219
|
+
} | undefined;
|
|
2220
|
+
outcome?: {
|
|
2221
|
+
coding?: {
|
|
2222
|
+
code?: string | undefined;
|
|
2223
|
+
system?: string | undefined;
|
|
2224
|
+
display?: string | undefined;
|
|
2225
|
+
}[] | undefined;
|
|
2226
|
+
text?: string | undefined;
|
|
2227
|
+
} | undefined;
|
|
2220
2228
|
basedOn?: {
|
|
2221
2229
|
reference: string;
|
|
2222
2230
|
type?: string | undefined;
|
|
@@ -2242,30 +2250,20 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2242
2250
|
display?: string | undefined;
|
|
2243
2251
|
} | undefined;
|
|
2244
2252
|
}[] | undefined;
|
|
2245
|
-
|
|
2246
|
-
reference: string;
|
|
2247
|
-
type?: string | undefined;
|
|
2248
|
-
display?: string | undefined;
|
|
2249
|
-
}[] | undefined;
|
|
2250
|
-
statusReason?: {
|
|
2253
|
+
reasonCode?: {
|
|
2251
2254
|
coding?: {
|
|
2252
2255
|
code?: string | undefined;
|
|
2253
2256
|
system?: string | undefined;
|
|
2254
2257
|
display?: string | undefined;
|
|
2255
2258
|
}[] | undefined;
|
|
2256
2259
|
text?: string | undefined;
|
|
2257
|
-
} | undefined;
|
|
2258
|
-
|
|
2259
|
-
performedPeriod?: {
|
|
2260
|
-
start?: string | undefined;
|
|
2261
|
-
end?: string | undefined;
|
|
2262
|
-
} | undefined;
|
|
2263
|
-
location?: {
|
|
2260
|
+
}[] | undefined;
|
|
2261
|
+
reasonReference?: {
|
|
2264
2262
|
reference: string;
|
|
2265
2263
|
type?: string | undefined;
|
|
2266
2264
|
display?: string | undefined;
|
|
2267
|
-
} | undefined;
|
|
2268
|
-
|
|
2265
|
+
}[] | undefined;
|
|
2266
|
+
bodySite?: {
|
|
2269
2267
|
coding?: {
|
|
2270
2268
|
code?: string | undefined;
|
|
2271
2269
|
system?: string | undefined;
|
|
@@ -2273,18 +2271,20 @@ export declare const ProcedureCreateSchema: z.ZodObject<{
|
|
|
2273
2271
|
}[] | undefined;
|
|
2274
2272
|
text?: string | undefined;
|
|
2275
2273
|
}[] | undefined;
|
|
2276
|
-
|
|
2274
|
+
location?: {
|
|
2275
|
+
reference: string;
|
|
2276
|
+
type?: string | undefined;
|
|
2277
|
+
display?: string | undefined;
|
|
2278
|
+
} | undefined;
|
|
2279
|
+
partOf?: {
|
|
2277
2280
|
reference: string;
|
|
2278
2281
|
type?: string | undefined;
|
|
2279
2282
|
display?: string | undefined;
|
|
2280
2283
|
}[] | undefined;
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
display?: string | undefined;
|
|
2286
|
-
}[] | undefined;
|
|
2287
|
-
text?: string | undefined;
|
|
2284
|
+
performedDateTime?: string | undefined;
|
|
2285
|
+
performedPeriod?: {
|
|
2286
|
+
start?: string | undefined;
|
|
2287
|
+
end?: string | undefined;
|
|
2288
2288
|
} | undefined;
|
|
2289
2289
|
report?: {
|
|
2290
2290
|
reference: string;
|
|
@@ -3012,15 +3012,15 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3012
3012
|
}[];
|
|
3013
3013
|
text?: string | undefined;
|
|
3014
3014
|
};
|
|
3015
|
-
status: "unknown" | "
|
|
3015
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
3016
3016
|
resourceType: "Procedure";
|
|
3017
3017
|
id: string;
|
|
3018
|
-
|
|
3018
|
+
encounter: {
|
|
3019
3019
|
reference: string;
|
|
3020
3020
|
type?: string | undefined;
|
|
3021
3021
|
display?: string | undefined;
|
|
3022
3022
|
};
|
|
3023
|
-
|
|
3023
|
+
subject: {
|
|
3024
3024
|
reference: string;
|
|
3025
3025
|
type?: string | undefined;
|
|
3026
3026
|
display?: string | undefined;
|
|
@@ -3035,6 +3035,16 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3035
3035
|
profile?: string[] | undefined;
|
|
3036
3036
|
versionId?: string | undefined;
|
|
3037
3037
|
} | undefined;
|
|
3038
|
+
note?: {
|
|
3039
|
+
text: string;
|
|
3040
|
+
authorReference?: {
|
|
3041
|
+
reference: string;
|
|
3042
|
+
type?: string | undefined;
|
|
3043
|
+
display?: string | undefined;
|
|
3044
|
+
} | undefined;
|
|
3045
|
+
authorString?: string | undefined;
|
|
3046
|
+
time?: string | undefined;
|
|
3047
|
+
}[] | undefined;
|
|
3038
3048
|
category?: {
|
|
3039
3049
|
coding?: {
|
|
3040
3050
|
code?: string | undefined;
|
|
@@ -3043,14 +3053,6 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3043
3053
|
}[] | undefined;
|
|
3044
3054
|
text?: string | undefined;
|
|
3045
3055
|
} | undefined;
|
|
3046
|
-
bodySite?: {
|
|
3047
|
-
coding?: {
|
|
3048
|
-
code?: string | undefined;
|
|
3049
|
-
system?: string | undefined;
|
|
3050
|
-
display?: string | undefined;
|
|
3051
|
-
}[] | undefined;
|
|
3052
|
-
text?: string | undefined;
|
|
3053
|
-
}[] | undefined;
|
|
3054
3056
|
recorder?: {
|
|
3055
3057
|
reference: string;
|
|
3056
3058
|
type?: string | undefined;
|
|
@@ -3061,16 +3063,22 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3061
3063
|
type?: string | undefined;
|
|
3062
3064
|
display?: string | undefined;
|
|
3063
3065
|
} | undefined;
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
type?: string | undefined;
|
|
3066
|
+
statusReason?: {
|
|
3067
|
+
coding?: {
|
|
3068
|
+
code?: string | undefined;
|
|
3069
|
+
system?: string | undefined;
|
|
3069
3070
|
display?: string | undefined;
|
|
3070
|
-
} | undefined;
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3071
|
+
}[] | undefined;
|
|
3072
|
+
text?: string | undefined;
|
|
3073
|
+
} | undefined;
|
|
3074
|
+
outcome?: {
|
|
3075
|
+
coding?: {
|
|
3076
|
+
code?: string | undefined;
|
|
3077
|
+
system?: string | undefined;
|
|
3078
|
+
display?: string | undefined;
|
|
3079
|
+
}[] | undefined;
|
|
3080
|
+
text?: string | undefined;
|
|
3081
|
+
} | undefined;
|
|
3074
3082
|
basedOn?: {
|
|
3075
3083
|
reference: string;
|
|
3076
3084
|
type?: string | undefined;
|
|
@@ -3096,30 +3104,20 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3096
3104
|
display?: string | undefined;
|
|
3097
3105
|
} | undefined;
|
|
3098
3106
|
}[] | undefined;
|
|
3099
|
-
|
|
3100
|
-
reference: string;
|
|
3101
|
-
type?: string | undefined;
|
|
3102
|
-
display?: string | undefined;
|
|
3103
|
-
}[] | undefined;
|
|
3104
|
-
statusReason?: {
|
|
3107
|
+
reasonCode?: {
|
|
3105
3108
|
coding?: {
|
|
3106
3109
|
code?: string | undefined;
|
|
3107
3110
|
system?: string | undefined;
|
|
3108
3111
|
display?: string | undefined;
|
|
3109
3112
|
}[] | undefined;
|
|
3110
3113
|
text?: string | undefined;
|
|
3111
|
-
} | undefined;
|
|
3112
|
-
|
|
3113
|
-
performedPeriod?: {
|
|
3114
|
-
start?: string | undefined;
|
|
3115
|
-
end?: string | undefined;
|
|
3116
|
-
} | undefined;
|
|
3117
|
-
location?: {
|
|
3114
|
+
}[] | undefined;
|
|
3115
|
+
reasonReference?: {
|
|
3118
3116
|
reference: string;
|
|
3119
3117
|
type?: string | undefined;
|
|
3120
3118
|
display?: string | undefined;
|
|
3121
|
-
} | undefined;
|
|
3122
|
-
|
|
3119
|
+
}[] | undefined;
|
|
3120
|
+
bodySite?: {
|
|
3123
3121
|
coding?: {
|
|
3124
3122
|
code?: string | undefined;
|
|
3125
3123
|
system?: string | undefined;
|
|
@@ -3127,18 +3125,20 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3127
3125
|
}[] | undefined;
|
|
3128
3126
|
text?: string | undefined;
|
|
3129
3127
|
}[] | undefined;
|
|
3130
|
-
|
|
3128
|
+
location?: {
|
|
3129
|
+
reference: string;
|
|
3130
|
+
type?: string | undefined;
|
|
3131
|
+
display?: string | undefined;
|
|
3132
|
+
} | undefined;
|
|
3133
|
+
partOf?: {
|
|
3131
3134
|
reference: string;
|
|
3132
3135
|
type?: string | undefined;
|
|
3133
3136
|
display?: string | undefined;
|
|
3134
3137
|
}[] | undefined;
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
display?: string | undefined;
|
|
3140
|
-
}[] | undefined;
|
|
3141
|
-
text?: string | undefined;
|
|
3138
|
+
performedDateTime?: string | undefined;
|
|
3139
|
+
performedPeriod?: {
|
|
3140
|
+
start?: string | undefined;
|
|
3141
|
+
end?: string | undefined;
|
|
3142
3142
|
} | undefined;
|
|
3143
3143
|
report?: {
|
|
3144
3144
|
reference: string;
|
|
@@ -3203,15 +3203,15 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3203
3203
|
}[];
|
|
3204
3204
|
text?: string | undefined;
|
|
3205
3205
|
};
|
|
3206
|
-
status: "unknown" | "
|
|
3206
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
3207
3207
|
resourceType: "Procedure";
|
|
3208
3208
|
id: string;
|
|
3209
|
-
|
|
3209
|
+
encounter: {
|
|
3210
3210
|
reference: string;
|
|
3211
3211
|
type?: string | undefined;
|
|
3212
3212
|
display?: string | undefined;
|
|
3213
3213
|
};
|
|
3214
|
-
|
|
3214
|
+
subject: {
|
|
3215
3215
|
reference: string;
|
|
3216
3216
|
type?: string | undefined;
|
|
3217
3217
|
display?: string | undefined;
|
|
@@ -3226,6 +3226,16 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3226
3226
|
profile?: string[] | undefined;
|
|
3227
3227
|
versionId?: string | undefined;
|
|
3228
3228
|
} | undefined;
|
|
3229
|
+
note?: {
|
|
3230
|
+
text: string;
|
|
3231
|
+
authorReference?: {
|
|
3232
|
+
reference: string;
|
|
3233
|
+
type?: string | undefined;
|
|
3234
|
+
display?: string | undefined;
|
|
3235
|
+
} | undefined;
|
|
3236
|
+
authorString?: string | undefined;
|
|
3237
|
+
time?: string | undefined;
|
|
3238
|
+
}[] | undefined;
|
|
3229
3239
|
category?: {
|
|
3230
3240
|
coding?: {
|
|
3231
3241
|
code?: string | undefined;
|
|
@@ -3234,14 +3244,6 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3234
3244
|
}[] | undefined;
|
|
3235
3245
|
text?: string | undefined;
|
|
3236
3246
|
} | undefined;
|
|
3237
|
-
bodySite?: {
|
|
3238
|
-
coding?: {
|
|
3239
|
-
code?: string | undefined;
|
|
3240
|
-
system?: string | undefined;
|
|
3241
|
-
display?: string | undefined;
|
|
3242
|
-
}[] | undefined;
|
|
3243
|
-
text?: string | undefined;
|
|
3244
|
-
}[] | undefined;
|
|
3245
3247
|
recorder?: {
|
|
3246
3248
|
reference: string;
|
|
3247
3249
|
type?: string | undefined;
|
|
@@ -3252,16 +3254,22 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3252
3254
|
type?: string | undefined;
|
|
3253
3255
|
display?: string | undefined;
|
|
3254
3256
|
} | undefined;
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
type?: string | undefined;
|
|
3257
|
+
statusReason?: {
|
|
3258
|
+
coding?: {
|
|
3259
|
+
code?: string | undefined;
|
|
3260
|
+
system?: string | undefined;
|
|
3260
3261
|
display?: string | undefined;
|
|
3261
|
-
} | undefined;
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3262
|
+
}[] | undefined;
|
|
3263
|
+
text?: string | undefined;
|
|
3264
|
+
} | undefined;
|
|
3265
|
+
outcome?: {
|
|
3266
|
+
coding?: {
|
|
3267
|
+
code?: string | undefined;
|
|
3268
|
+
system?: string | undefined;
|
|
3269
|
+
display?: string | undefined;
|
|
3270
|
+
}[] | undefined;
|
|
3271
|
+
text?: string | undefined;
|
|
3272
|
+
} | undefined;
|
|
3265
3273
|
basedOn?: {
|
|
3266
3274
|
reference: string;
|
|
3267
3275
|
type?: string | undefined;
|
|
@@ -3287,49 +3295,41 @@ export declare const ProcedureSchema: z.ZodObject<{
|
|
|
3287
3295
|
display?: string | undefined;
|
|
3288
3296
|
} | undefined;
|
|
3289
3297
|
}[] | undefined;
|
|
3290
|
-
|
|
3298
|
+
reasonCode?: {
|
|
3299
|
+
coding?: {
|
|
3300
|
+
code?: string | undefined;
|
|
3301
|
+
system?: string | undefined;
|
|
3302
|
+
display?: string | undefined;
|
|
3303
|
+
}[] | undefined;
|
|
3304
|
+
text?: string | undefined;
|
|
3305
|
+
}[] | undefined;
|
|
3306
|
+
reasonReference?: {
|
|
3291
3307
|
reference: string;
|
|
3292
3308
|
type?: string | undefined;
|
|
3293
3309
|
display?: string | undefined;
|
|
3294
3310
|
}[] | undefined;
|
|
3295
|
-
|
|
3311
|
+
bodySite?: {
|
|
3296
3312
|
coding?: {
|
|
3297
3313
|
code?: string | undefined;
|
|
3298
3314
|
system?: string | undefined;
|
|
3299
3315
|
display?: string | undefined;
|
|
3300
3316
|
}[] | undefined;
|
|
3301
3317
|
text?: string | undefined;
|
|
3318
|
+
}[] | undefined;
|
|
3319
|
+
location?: {
|
|
3320
|
+
reference: string;
|
|
3321
|
+
type?: string | undefined;
|
|
3322
|
+
display?: string | undefined;
|
|
3302
3323
|
} | undefined;
|
|
3303
|
-
|
|
3304
|
-
performedPeriod?: {
|
|
3305
|
-
start?: string | undefined;
|
|
3306
|
-
end?: string | undefined;
|
|
3307
|
-
} | undefined;
|
|
3308
|
-
location?: {
|
|
3309
|
-
reference: string;
|
|
3310
|
-
type?: string | undefined;
|
|
3311
|
-
display?: string | undefined;
|
|
3312
|
-
} | undefined;
|
|
3313
|
-
reasonCode?: {
|
|
3314
|
-
coding?: {
|
|
3315
|
-
code?: string | undefined;
|
|
3316
|
-
system?: string | undefined;
|
|
3317
|
-
display?: string | undefined;
|
|
3318
|
-
}[] | undefined;
|
|
3319
|
-
text?: string | undefined;
|
|
3320
|
-
}[] | undefined;
|
|
3321
|
-
reasonReference?: {
|
|
3324
|
+
partOf?: {
|
|
3322
3325
|
reference: string;
|
|
3323
3326
|
type?: string | undefined;
|
|
3324
3327
|
display?: string | undefined;
|
|
3325
3328
|
}[] | undefined;
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
display?: string | undefined;
|
|
3331
|
-
}[] | undefined;
|
|
3332
|
-
text?: string | undefined;
|
|
3329
|
+
performedDateTime?: string | undefined;
|
|
3330
|
+
performedPeriod?: {
|
|
3331
|
+
start?: string | undefined;
|
|
3332
|
+
end?: string | undefined;
|
|
3333
3333
|
} | undefined;
|
|
3334
3334
|
report?: {
|
|
3335
3335
|
reference: string;
|
|
@@ -4080,15 +4080,15 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4080
4080
|
}[];
|
|
4081
4081
|
text?: string | undefined;
|
|
4082
4082
|
};
|
|
4083
|
-
status: "unknown" | "
|
|
4083
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
4084
4084
|
resourceType: "Procedure";
|
|
4085
4085
|
id: string;
|
|
4086
|
-
|
|
4086
|
+
encounter: {
|
|
4087
4087
|
reference: string;
|
|
4088
4088
|
type?: string | undefined;
|
|
4089
4089
|
display?: string | undefined;
|
|
4090
4090
|
};
|
|
4091
|
-
|
|
4091
|
+
subject: {
|
|
4092
4092
|
reference: string;
|
|
4093
4093
|
type?: string | undefined;
|
|
4094
4094
|
display?: string | undefined;
|
|
@@ -4103,6 +4103,16 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4103
4103
|
profile?: string[] | undefined;
|
|
4104
4104
|
versionId?: string | undefined;
|
|
4105
4105
|
} | undefined;
|
|
4106
|
+
note?: {
|
|
4107
|
+
text: string;
|
|
4108
|
+
authorReference?: {
|
|
4109
|
+
reference: string;
|
|
4110
|
+
type?: string | undefined;
|
|
4111
|
+
display?: string | undefined;
|
|
4112
|
+
} | undefined;
|
|
4113
|
+
authorString?: string | undefined;
|
|
4114
|
+
time?: string | undefined;
|
|
4115
|
+
}[] | undefined;
|
|
4106
4116
|
category?: {
|
|
4107
4117
|
coding?: {
|
|
4108
4118
|
code?: string | undefined;
|
|
@@ -4111,14 +4121,6 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4111
4121
|
}[] | undefined;
|
|
4112
4122
|
text?: string | undefined;
|
|
4113
4123
|
} | undefined;
|
|
4114
|
-
bodySite?: {
|
|
4115
|
-
coding?: {
|
|
4116
|
-
code?: string | undefined;
|
|
4117
|
-
system?: string | undefined;
|
|
4118
|
-
display?: string | undefined;
|
|
4119
|
-
}[] | undefined;
|
|
4120
|
-
text?: string | undefined;
|
|
4121
|
-
}[] | undefined;
|
|
4122
4124
|
recorder?: {
|
|
4123
4125
|
reference: string;
|
|
4124
4126
|
type?: string | undefined;
|
|
@@ -4129,16 +4131,22 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4129
4131
|
type?: string | undefined;
|
|
4130
4132
|
display?: string | undefined;
|
|
4131
4133
|
} | undefined;
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
type?: string | undefined;
|
|
4134
|
+
statusReason?: {
|
|
4135
|
+
coding?: {
|
|
4136
|
+
code?: string | undefined;
|
|
4137
|
+
system?: string | undefined;
|
|
4137
4138
|
display?: string | undefined;
|
|
4138
|
-
} | undefined;
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4139
|
+
}[] | undefined;
|
|
4140
|
+
text?: string | undefined;
|
|
4141
|
+
} | undefined;
|
|
4142
|
+
outcome?: {
|
|
4143
|
+
coding?: {
|
|
4144
|
+
code?: string | undefined;
|
|
4145
|
+
system?: string | undefined;
|
|
4146
|
+
display?: string | undefined;
|
|
4147
|
+
}[] | undefined;
|
|
4148
|
+
text?: string | undefined;
|
|
4149
|
+
} | undefined;
|
|
4142
4150
|
basedOn?: {
|
|
4143
4151
|
reference: string;
|
|
4144
4152
|
type?: string | undefined;
|
|
@@ -4164,30 +4172,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4164
4172
|
display?: string | undefined;
|
|
4165
4173
|
} | undefined;
|
|
4166
4174
|
}[] | undefined;
|
|
4167
|
-
|
|
4168
|
-
reference: string;
|
|
4169
|
-
type?: string | undefined;
|
|
4170
|
-
display?: string | undefined;
|
|
4171
|
-
}[] | undefined;
|
|
4172
|
-
statusReason?: {
|
|
4175
|
+
reasonCode?: {
|
|
4173
4176
|
coding?: {
|
|
4174
4177
|
code?: string | undefined;
|
|
4175
4178
|
system?: string | undefined;
|
|
4176
4179
|
display?: string | undefined;
|
|
4177
4180
|
}[] | undefined;
|
|
4178
4181
|
text?: string | undefined;
|
|
4179
|
-
} | undefined;
|
|
4180
|
-
|
|
4181
|
-
performedPeriod?: {
|
|
4182
|
-
start?: string | undefined;
|
|
4183
|
-
end?: string | undefined;
|
|
4184
|
-
} | undefined;
|
|
4185
|
-
location?: {
|
|
4182
|
+
}[] | undefined;
|
|
4183
|
+
reasonReference?: {
|
|
4186
4184
|
reference: string;
|
|
4187
4185
|
type?: string | undefined;
|
|
4188
4186
|
display?: string | undefined;
|
|
4189
|
-
} | undefined;
|
|
4190
|
-
|
|
4187
|
+
}[] | undefined;
|
|
4188
|
+
bodySite?: {
|
|
4191
4189
|
coding?: {
|
|
4192
4190
|
code?: string | undefined;
|
|
4193
4191
|
system?: string | undefined;
|
|
@@ -4195,18 +4193,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4195
4193
|
}[] | undefined;
|
|
4196
4194
|
text?: string | undefined;
|
|
4197
4195
|
}[] | undefined;
|
|
4198
|
-
|
|
4196
|
+
location?: {
|
|
4197
|
+
reference: string;
|
|
4198
|
+
type?: string | undefined;
|
|
4199
|
+
display?: string | undefined;
|
|
4200
|
+
} | undefined;
|
|
4201
|
+
partOf?: {
|
|
4199
4202
|
reference: string;
|
|
4200
4203
|
type?: string | undefined;
|
|
4201
4204
|
display?: string | undefined;
|
|
4202
4205
|
}[] | undefined;
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
display?: string | undefined;
|
|
4208
|
-
}[] | undefined;
|
|
4209
|
-
text?: string | undefined;
|
|
4206
|
+
performedDateTime?: string | undefined;
|
|
4207
|
+
performedPeriod?: {
|
|
4208
|
+
start?: string | undefined;
|
|
4209
|
+
end?: string | undefined;
|
|
4210
4210
|
} | undefined;
|
|
4211
4211
|
report?: {
|
|
4212
4212
|
reference: string;
|
|
@@ -4271,15 +4271,15 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4271
4271
|
}[];
|
|
4272
4272
|
text?: string | undefined;
|
|
4273
4273
|
};
|
|
4274
|
-
status: "unknown" | "
|
|
4274
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
4275
4275
|
resourceType: "Procedure";
|
|
4276
4276
|
id: string;
|
|
4277
|
-
|
|
4277
|
+
encounter: {
|
|
4278
4278
|
reference: string;
|
|
4279
4279
|
type?: string | undefined;
|
|
4280
4280
|
display?: string | undefined;
|
|
4281
4281
|
};
|
|
4282
|
-
|
|
4282
|
+
subject: {
|
|
4283
4283
|
reference: string;
|
|
4284
4284
|
type?: string | undefined;
|
|
4285
4285
|
display?: string | undefined;
|
|
@@ -4294,6 +4294,16 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4294
4294
|
profile?: string[] | undefined;
|
|
4295
4295
|
versionId?: string | undefined;
|
|
4296
4296
|
} | undefined;
|
|
4297
|
+
note?: {
|
|
4298
|
+
text: string;
|
|
4299
|
+
authorReference?: {
|
|
4300
|
+
reference: string;
|
|
4301
|
+
type?: string | undefined;
|
|
4302
|
+
display?: string | undefined;
|
|
4303
|
+
} | undefined;
|
|
4304
|
+
authorString?: string | undefined;
|
|
4305
|
+
time?: string | undefined;
|
|
4306
|
+
}[] | undefined;
|
|
4297
4307
|
category?: {
|
|
4298
4308
|
coding?: {
|
|
4299
4309
|
code?: string | undefined;
|
|
@@ -4302,14 +4312,6 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4302
4312
|
}[] | undefined;
|
|
4303
4313
|
text?: string | undefined;
|
|
4304
4314
|
} | undefined;
|
|
4305
|
-
bodySite?: {
|
|
4306
|
-
coding?: {
|
|
4307
|
-
code?: string | undefined;
|
|
4308
|
-
system?: string | undefined;
|
|
4309
|
-
display?: string | undefined;
|
|
4310
|
-
}[] | undefined;
|
|
4311
|
-
text?: string | undefined;
|
|
4312
|
-
}[] | undefined;
|
|
4313
4315
|
recorder?: {
|
|
4314
4316
|
reference: string;
|
|
4315
4317
|
type?: string | undefined;
|
|
@@ -4320,16 +4322,22 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4320
4322
|
type?: string | undefined;
|
|
4321
4323
|
display?: string | undefined;
|
|
4322
4324
|
} | undefined;
|
|
4323
|
-
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
type?: string | undefined;
|
|
4325
|
+
statusReason?: {
|
|
4326
|
+
coding?: {
|
|
4327
|
+
code?: string | undefined;
|
|
4328
|
+
system?: string | undefined;
|
|
4328
4329
|
display?: string | undefined;
|
|
4329
|
-
} | undefined;
|
|
4330
|
-
|
|
4331
|
-
|
|
4332
|
-
|
|
4330
|
+
}[] | undefined;
|
|
4331
|
+
text?: string | undefined;
|
|
4332
|
+
} | undefined;
|
|
4333
|
+
outcome?: {
|
|
4334
|
+
coding?: {
|
|
4335
|
+
code?: string | undefined;
|
|
4336
|
+
system?: string | undefined;
|
|
4337
|
+
display?: string | undefined;
|
|
4338
|
+
}[] | undefined;
|
|
4339
|
+
text?: string | undefined;
|
|
4340
|
+
} | undefined;
|
|
4333
4341
|
basedOn?: {
|
|
4334
4342
|
reference: string;
|
|
4335
4343
|
type?: string | undefined;
|
|
@@ -4355,30 +4363,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4355
4363
|
display?: string | undefined;
|
|
4356
4364
|
} | undefined;
|
|
4357
4365
|
}[] | undefined;
|
|
4358
|
-
|
|
4359
|
-
reference: string;
|
|
4360
|
-
type?: string | undefined;
|
|
4361
|
-
display?: string | undefined;
|
|
4362
|
-
}[] | undefined;
|
|
4363
|
-
statusReason?: {
|
|
4366
|
+
reasonCode?: {
|
|
4364
4367
|
coding?: {
|
|
4365
4368
|
code?: string | undefined;
|
|
4366
4369
|
system?: string | undefined;
|
|
4367
4370
|
display?: string | undefined;
|
|
4368
4371
|
}[] | undefined;
|
|
4369
4372
|
text?: string | undefined;
|
|
4370
|
-
} | undefined;
|
|
4371
|
-
|
|
4372
|
-
performedPeriod?: {
|
|
4373
|
-
start?: string | undefined;
|
|
4374
|
-
end?: string | undefined;
|
|
4375
|
-
} | undefined;
|
|
4376
|
-
location?: {
|
|
4373
|
+
}[] | undefined;
|
|
4374
|
+
reasonReference?: {
|
|
4377
4375
|
reference: string;
|
|
4378
4376
|
type?: string | undefined;
|
|
4379
4377
|
display?: string | undefined;
|
|
4380
|
-
} | undefined;
|
|
4381
|
-
|
|
4378
|
+
}[] | undefined;
|
|
4379
|
+
bodySite?: {
|
|
4382
4380
|
coding?: {
|
|
4383
4381
|
code?: string | undefined;
|
|
4384
4382
|
system?: string | undefined;
|
|
@@ -4386,18 +4384,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4386
4384
|
}[] | undefined;
|
|
4387
4385
|
text?: string | undefined;
|
|
4388
4386
|
}[] | undefined;
|
|
4389
|
-
|
|
4387
|
+
location?: {
|
|
4388
|
+
reference: string;
|
|
4389
|
+
type?: string | undefined;
|
|
4390
|
+
display?: string | undefined;
|
|
4391
|
+
} | undefined;
|
|
4392
|
+
partOf?: {
|
|
4390
4393
|
reference: string;
|
|
4391
4394
|
type?: string | undefined;
|
|
4392
4395
|
display?: string | undefined;
|
|
4393
4396
|
}[] | undefined;
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
display?: string | undefined;
|
|
4399
|
-
}[] | undefined;
|
|
4400
|
-
text?: string | undefined;
|
|
4397
|
+
performedDateTime?: string | undefined;
|
|
4398
|
+
performedPeriod?: {
|
|
4399
|
+
start?: string | undefined;
|
|
4400
|
+
end?: string | undefined;
|
|
4401
4401
|
} | undefined;
|
|
4402
4402
|
report?: {
|
|
4403
4403
|
reference: string;
|
|
@@ -4471,15 +4471,15 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4471
4471
|
}[];
|
|
4472
4472
|
text?: string | undefined;
|
|
4473
4473
|
};
|
|
4474
|
-
status: "unknown" | "
|
|
4474
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
4475
4475
|
resourceType: "Procedure";
|
|
4476
4476
|
id: string;
|
|
4477
|
-
|
|
4477
|
+
encounter: {
|
|
4478
4478
|
reference: string;
|
|
4479
4479
|
type?: string | undefined;
|
|
4480
4480
|
display?: string | undefined;
|
|
4481
4481
|
};
|
|
4482
|
-
|
|
4482
|
+
subject: {
|
|
4483
4483
|
reference: string;
|
|
4484
4484
|
type?: string | undefined;
|
|
4485
4485
|
display?: string | undefined;
|
|
@@ -4494,6 +4494,16 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4494
4494
|
profile?: string[] | undefined;
|
|
4495
4495
|
versionId?: string | undefined;
|
|
4496
4496
|
} | undefined;
|
|
4497
|
+
note?: {
|
|
4498
|
+
text: string;
|
|
4499
|
+
authorReference?: {
|
|
4500
|
+
reference: string;
|
|
4501
|
+
type?: string | undefined;
|
|
4502
|
+
display?: string | undefined;
|
|
4503
|
+
} | undefined;
|
|
4504
|
+
authorString?: string | undefined;
|
|
4505
|
+
time?: string | undefined;
|
|
4506
|
+
}[] | undefined;
|
|
4497
4507
|
category?: {
|
|
4498
4508
|
coding?: {
|
|
4499
4509
|
code?: string | undefined;
|
|
@@ -4502,14 +4512,6 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4502
4512
|
}[] | undefined;
|
|
4503
4513
|
text?: string | undefined;
|
|
4504
4514
|
} | undefined;
|
|
4505
|
-
bodySite?: {
|
|
4506
|
-
coding?: {
|
|
4507
|
-
code?: string | undefined;
|
|
4508
|
-
system?: string | undefined;
|
|
4509
|
-
display?: string | undefined;
|
|
4510
|
-
}[] | undefined;
|
|
4511
|
-
text?: string | undefined;
|
|
4512
|
-
}[] | undefined;
|
|
4513
4515
|
recorder?: {
|
|
4514
4516
|
reference: string;
|
|
4515
4517
|
type?: string | undefined;
|
|
@@ -4520,16 +4522,22 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4520
4522
|
type?: string | undefined;
|
|
4521
4523
|
display?: string | undefined;
|
|
4522
4524
|
} | undefined;
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
type?: string | undefined;
|
|
4525
|
+
statusReason?: {
|
|
4526
|
+
coding?: {
|
|
4527
|
+
code?: string | undefined;
|
|
4528
|
+
system?: string | undefined;
|
|
4528
4529
|
display?: string | undefined;
|
|
4529
|
-
} | undefined;
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4530
|
+
}[] | undefined;
|
|
4531
|
+
text?: string | undefined;
|
|
4532
|
+
} | undefined;
|
|
4533
|
+
outcome?: {
|
|
4534
|
+
coding?: {
|
|
4535
|
+
code?: string | undefined;
|
|
4536
|
+
system?: string | undefined;
|
|
4537
|
+
display?: string | undefined;
|
|
4538
|
+
}[] | undefined;
|
|
4539
|
+
text?: string | undefined;
|
|
4540
|
+
} | undefined;
|
|
4533
4541
|
basedOn?: {
|
|
4534
4542
|
reference: string;
|
|
4535
4543
|
type?: string | undefined;
|
|
@@ -4555,49 +4563,41 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4555
4563
|
display?: string | undefined;
|
|
4556
4564
|
} | undefined;
|
|
4557
4565
|
}[] | undefined;
|
|
4558
|
-
|
|
4566
|
+
reasonCode?: {
|
|
4567
|
+
coding?: {
|
|
4568
|
+
code?: string | undefined;
|
|
4569
|
+
system?: string | undefined;
|
|
4570
|
+
display?: string | undefined;
|
|
4571
|
+
}[] | undefined;
|
|
4572
|
+
text?: string | undefined;
|
|
4573
|
+
}[] | undefined;
|
|
4574
|
+
reasonReference?: {
|
|
4559
4575
|
reference: string;
|
|
4560
4576
|
type?: string | undefined;
|
|
4561
4577
|
display?: string | undefined;
|
|
4562
4578
|
}[] | undefined;
|
|
4563
|
-
|
|
4579
|
+
bodySite?: {
|
|
4564
4580
|
coding?: {
|
|
4565
4581
|
code?: string | undefined;
|
|
4566
4582
|
system?: string | undefined;
|
|
4567
4583
|
display?: string | undefined;
|
|
4568
4584
|
}[] | undefined;
|
|
4569
4585
|
text?: string | undefined;
|
|
4570
|
-
} | undefined;
|
|
4571
|
-
performedDateTime?: string | undefined;
|
|
4572
|
-
performedPeriod?: {
|
|
4573
|
-
start?: string | undefined;
|
|
4574
|
-
end?: string | undefined;
|
|
4575
|
-
} | undefined;
|
|
4586
|
+
}[] | undefined;
|
|
4576
4587
|
location?: {
|
|
4577
4588
|
reference: string;
|
|
4578
4589
|
type?: string | undefined;
|
|
4579
4590
|
display?: string | undefined;
|
|
4580
4591
|
} | undefined;
|
|
4581
|
-
|
|
4582
|
-
coding?: {
|
|
4583
|
-
code?: string | undefined;
|
|
4584
|
-
system?: string | undefined;
|
|
4585
|
-
display?: string | undefined;
|
|
4586
|
-
}[] | undefined;
|
|
4587
|
-
text?: string | undefined;
|
|
4588
|
-
}[] | undefined;
|
|
4589
|
-
reasonReference?: {
|
|
4592
|
+
partOf?: {
|
|
4590
4593
|
reference: string;
|
|
4591
4594
|
type?: string | undefined;
|
|
4592
4595
|
display?: string | undefined;
|
|
4593
4596
|
}[] | undefined;
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
display?: string | undefined;
|
|
4599
|
-
}[] | undefined;
|
|
4600
|
-
text?: string | undefined;
|
|
4597
|
+
performedDateTime?: string | undefined;
|
|
4598
|
+
performedPeriod?: {
|
|
4599
|
+
start?: string | undefined;
|
|
4600
|
+
end?: string | undefined;
|
|
4601
4601
|
} | undefined;
|
|
4602
4602
|
report?: {
|
|
4603
4603
|
reference: string;
|
|
@@ -4668,15 +4668,15 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4668
4668
|
}[];
|
|
4669
4669
|
text?: string | undefined;
|
|
4670
4670
|
};
|
|
4671
|
-
status: "unknown" | "
|
|
4671
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
4672
4672
|
resourceType: "Procedure";
|
|
4673
4673
|
id: string;
|
|
4674
|
-
|
|
4674
|
+
encounter: {
|
|
4675
4675
|
reference: string;
|
|
4676
4676
|
type?: string | undefined;
|
|
4677
4677
|
display?: string | undefined;
|
|
4678
4678
|
};
|
|
4679
|
-
|
|
4679
|
+
subject: {
|
|
4680
4680
|
reference: string;
|
|
4681
4681
|
type?: string | undefined;
|
|
4682
4682
|
display?: string | undefined;
|
|
@@ -4691,6 +4691,16 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4691
4691
|
profile?: string[] | undefined;
|
|
4692
4692
|
versionId?: string | undefined;
|
|
4693
4693
|
} | undefined;
|
|
4694
|
+
note?: {
|
|
4695
|
+
text: string;
|
|
4696
|
+
authorReference?: {
|
|
4697
|
+
reference: string;
|
|
4698
|
+
type?: string | undefined;
|
|
4699
|
+
display?: string | undefined;
|
|
4700
|
+
} | undefined;
|
|
4701
|
+
authorString?: string | undefined;
|
|
4702
|
+
time?: string | undefined;
|
|
4703
|
+
}[] | undefined;
|
|
4694
4704
|
category?: {
|
|
4695
4705
|
coding?: {
|
|
4696
4706
|
code?: string | undefined;
|
|
@@ -4699,14 +4709,6 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4699
4709
|
}[] | undefined;
|
|
4700
4710
|
text?: string | undefined;
|
|
4701
4711
|
} | undefined;
|
|
4702
|
-
bodySite?: {
|
|
4703
|
-
coding?: {
|
|
4704
|
-
code?: string | undefined;
|
|
4705
|
-
system?: string | undefined;
|
|
4706
|
-
display?: string | undefined;
|
|
4707
|
-
}[] | undefined;
|
|
4708
|
-
text?: string | undefined;
|
|
4709
|
-
}[] | undefined;
|
|
4710
4712
|
recorder?: {
|
|
4711
4713
|
reference: string;
|
|
4712
4714
|
type?: string | undefined;
|
|
@@ -4717,16 +4719,22 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4717
4719
|
type?: string | undefined;
|
|
4718
4720
|
display?: string | undefined;
|
|
4719
4721
|
} | undefined;
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
type?: string | undefined;
|
|
4722
|
+
statusReason?: {
|
|
4723
|
+
coding?: {
|
|
4724
|
+
code?: string | undefined;
|
|
4725
|
+
system?: string | undefined;
|
|
4725
4726
|
display?: string | undefined;
|
|
4726
|
-
} | undefined;
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4727
|
+
}[] | undefined;
|
|
4728
|
+
text?: string | undefined;
|
|
4729
|
+
} | undefined;
|
|
4730
|
+
outcome?: {
|
|
4731
|
+
coding?: {
|
|
4732
|
+
code?: string | undefined;
|
|
4733
|
+
system?: string | undefined;
|
|
4734
|
+
display?: string | undefined;
|
|
4735
|
+
}[] | undefined;
|
|
4736
|
+
text?: string | undefined;
|
|
4737
|
+
} | undefined;
|
|
4730
4738
|
basedOn?: {
|
|
4731
4739
|
reference: string;
|
|
4732
4740
|
type?: string | undefined;
|
|
@@ -4752,30 +4760,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4752
4760
|
display?: string | undefined;
|
|
4753
4761
|
} | undefined;
|
|
4754
4762
|
}[] | undefined;
|
|
4755
|
-
|
|
4756
|
-
reference: string;
|
|
4757
|
-
type?: string | undefined;
|
|
4758
|
-
display?: string | undefined;
|
|
4759
|
-
}[] | undefined;
|
|
4760
|
-
statusReason?: {
|
|
4763
|
+
reasonCode?: {
|
|
4761
4764
|
coding?: {
|
|
4762
4765
|
code?: string | undefined;
|
|
4763
4766
|
system?: string | undefined;
|
|
4764
4767
|
display?: string | undefined;
|
|
4765
4768
|
}[] | undefined;
|
|
4766
4769
|
text?: string | undefined;
|
|
4767
|
-
} | undefined;
|
|
4768
|
-
|
|
4769
|
-
performedPeriod?: {
|
|
4770
|
-
start?: string | undefined;
|
|
4771
|
-
end?: string | undefined;
|
|
4772
|
-
} | undefined;
|
|
4773
|
-
location?: {
|
|
4770
|
+
}[] | undefined;
|
|
4771
|
+
reasonReference?: {
|
|
4774
4772
|
reference: string;
|
|
4775
4773
|
type?: string | undefined;
|
|
4776
4774
|
display?: string | undefined;
|
|
4777
|
-
} | undefined;
|
|
4778
|
-
|
|
4775
|
+
}[] | undefined;
|
|
4776
|
+
bodySite?: {
|
|
4779
4777
|
coding?: {
|
|
4780
4778
|
code?: string | undefined;
|
|
4781
4779
|
system?: string | undefined;
|
|
@@ -4783,18 +4781,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4783
4781
|
}[] | undefined;
|
|
4784
4782
|
text?: string | undefined;
|
|
4785
4783
|
}[] | undefined;
|
|
4786
|
-
|
|
4784
|
+
location?: {
|
|
4785
|
+
reference: string;
|
|
4786
|
+
type?: string | undefined;
|
|
4787
|
+
display?: string | undefined;
|
|
4788
|
+
} | undefined;
|
|
4789
|
+
partOf?: {
|
|
4787
4790
|
reference: string;
|
|
4788
4791
|
type?: string | undefined;
|
|
4789
4792
|
display?: string | undefined;
|
|
4790
4793
|
}[] | undefined;
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
display?: string | undefined;
|
|
4796
|
-
}[] | undefined;
|
|
4797
|
-
text?: string | undefined;
|
|
4794
|
+
performedDateTime?: string | undefined;
|
|
4795
|
+
performedPeriod?: {
|
|
4796
|
+
start?: string | undefined;
|
|
4797
|
+
end?: string | undefined;
|
|
4798
4798
|
} | undefined;
|
|
4799
4799
|
report?: {
|
|
4800
4800
|
reference: string;
|
|
@@ -4874,15 +4874,15 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4874
4874
|
}[];
|
|
4875
4875
|
text?: string | undefined;
|
|
4876
4876
|
};
|
|
4877
|
-
status: "unknown" | "
|
|
4877
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
4878
4878
|
resourceType: "Procedure";
|
|
4879
4879
|
id: string;
|
|
4880
|
-
|
|
4880
|
+
encounter: {
|
|
4881
4881
|
reference: string;
|
|
4882
4882
|
type?: string | undefined;
|
|
4883
4883
|
display?: string | undefined;
|
|
4884
4884
|
};
|
|
4885
|
-
|
|
4885
|
+
subject: {
|
|
4886
4886
|
reference: string;
|
|
4887
4887
|
type?: string | undefined;
|
|
4888
4888
|
display?: string | undefined;
|
|
@@ -4897,6 +4897,16 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4897
4897
|
profile?: string[] | undefined;
|
|
4898
4898
|
versionId?: string | undefined;
|
|
4899
4899
|
} | undefined;
|
|
4900
|
+
note?: {
|
|
4901
|
+
text: string;
|
|
4902
|
+
authorReference?: {
|
|
4903
|
+
reference: string;
|
|
4904
|
+
type?: string | undefined;
|
|
4905
|
+
display?: string | undefined;
|
|
4906
|
+
} | undefined;
|
|
4907
|
+
authorString?: string | undefined;
|
|
4908
|
+
time?: string | undefined;
|
|
4909
|
+
}[] | undefined;
|
|
4900
4910
|
category?: {
|
|
4901
4911
|
coding?: {
|
|
4902
4912
|
code?: string | undefined;
|
|
@@ -4905,14 +4915,6 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4905
4915
|
}[] | undefined;
|
|
4906
4916
|
text?: string | undefined;
|
|
4907
4917
|
} | undefined;
|
|
4908
|
-
bodySite?: {
|
|
4909
|
-
coding?: {
|
|
4910
|
-
code?: string | undefined;
|
|
4911
|
-
system?: string | undefined;
|
|
4912
|
-
display?: string | undefined;
|
|
4913
|
-
}[] | undefined;
|
|
4914
|
-
text?: string | undefined;
|
|
4915
|
-
}[] | undefined;
|
|
4916
4918
|
recorder?: {
|
|
4917
4919
|
reference: string;
|
|
4918
4920
|
type?: string | undefined;
|
|
@@ -4923,16 +4925,22 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4923
4925
|
type?: string | undefined;
|
|
4924
4926
|
display?: string | undefined;
|
|
4925
4927
|
} | undefined;
|
|
4926
|
-
|
|
4927
|
-
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
type?: string | undefined;
|
|
4928
|
+
statusReason?: {
|
|
4929
|
+
coding?: {
|
|
4930
|
+
code?: string | undefined;
|
|
4931
|
+
system?: string | undefined;
|
|
4931
4932
|
display?: string | undefined;
|
|
4932
|
-
} | undefined;
|
|
4933
|
-
|
|
4934
|
-
|
|
4935
|
-
|
|
4933
|
+
}[] | undefined;
|
|
4934
|
+
text?: string | undefined;
|
|
4935
|
+
} | undefined;
|
|
4936
|
+
outcome?: {
|
|
4937
|
+
coding?: {
|
|
4938
|
+
code?: string | undefined;
|
|
4939
|
+
system?: string | undefined;
|
|
4940
|
+
display?: string | undefined;
|
|
4941
|
+
}[] | undefined;
|
|
4942
|
+
text?: string | undefined;
|
|
4943
|
+
} | undefined;
|
|
4936
4944
|
basedOn?: {
|
|
4937
4945
|
reference: string;
|
|
4938
4946
|
type?: string | undefined;
|
|
@@ -4958,30 +4966,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4958
4966
|
display?: string | undefined;
|
|
4959
4967
|
} | undefined;
|
|
4960
4968
|
}[] | undefined;
|
|
4961
|
-
|
|
4962
|
-
reference: string;
|
|
4963
|
-
type?: string | undefined;
|
|
4964
|
-
display?: string | undefined;
|
|
4965
|
-
}[] | undefined;
|
|
4966
|
-
statusReason?: {
|
|
4969
|
+
reasonCode?: {
|
|
4967
4970
|
coding?: {
|
|
4968
4971
|
code?: string | undefined;
|
|
4969
4972
|
system?: string | undefined;
|
|
4970
4973
|
display?: string | undefined;
|
|
4971
4974
|
}[] | undefined;
|
|
4972
4975
|
text?: string | undefined;
|
|
4973
|
-
} | undefined;
|
|
4974
|
-
|
|
4975
|
-
performedPeriod?: {
|
|
4976
|
-
start?: string | undefined;
|
|
4977
|
-
end?: string | undefined;
|
|
4978
|
-
} | undefined;
|
|
4979
|
-
location?: {
|
|
4976
|
+
}[] | undefined;
|
|
4977
|
+
reasonReference?: {
|
|
4980
4978
|
reference: string;
|
|
4981
4979
|
type?: string | undefined;
|
|
4982
4980
|
display?: string | undefined;
|
|
4983
|
-
} | undefined;
|
|
4984
|
-
|
|
4981
|
+
}[] | undefined;
|
|
4982
|
+
bodySite?: {
|
|
4985
4983
|
coding?: {
|
|
4986
4984
|
code?: string | undefined;
|
|
4987
4985
|
system?: string | undefined;
|
|
@@ -4989,18 +4987,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
4989
4987
|
}[] | undefined;
|
|
4990
4988
|
text?: string | undefined;
|
|
4991
4989
|
}[] | undefined;
|
|
4992
|
-
|
|
4990
|
+
location?: {
|
|
4991
|
+
reference: string;
|
|
4992
|
+
type?: string | undefined;
|
|
4993
|
+
display?: string | undefined;
|
|
4994
|
+
} | undefined;
|
|
4995
|
+
partOf?: {
|
|
4993
4996
|
reference: string;
|
|
4994
4997
|
type?: string | undefined;
|
|
4995
4998
|
display?: string | undefined;
|
|
4996
4999
|
}[] | undefined;
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
display?: string | undefined;
|
|
5002
|
-
}[] | undefined;
|
|
5003
|
-
text?: string | undefined;
|
|
5000
|
+
performedDateTime?: string | undefined;
|
|
5001
|
+
performedPeriod?: {
|
|
5002
|
+
start?: string | undefined;
|
|
5003
|
+
end?: string | undefined;
|
|
5004
5004
|
} | undefined;
|
|
5005
5005
|
report?: {
|
|
5006
5006
|
reference: string;
|
|
@@ -5080,15 +5080,15 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
5080
5080
|
}[];
|
|
5081
5081
|
text?: string | undefined;
|
|
5082
5082
|
};
|
|
5083
|
-
status: "unknown" | "
|
|
5083
|
+
status: "unknown" | "preparation" | "in-progress" | "not-done" | "on-hold" | "stopped" | "completed" | "entered-in-error";
|
|
5084
5084
|
resourceType: "Procedure";
|
|
5085
5085
|
id: string;
|
|
5086
|
-
|
|
5086
|
+
encounter: {
|
|
5087
5087
|
reference: string;
|
|
5088
5088
|
type?: string | undefined;
|
|
5089
5089
|
display?: string | undefined;
|
|
5090
5090
|
};
|
|
5091
|
-
|
|
5091
|
+
subject: {
|
|
5092
5092
|
reference: string;
|
|
5093
5093
|
type?: string | undefined;
|
|
5094
5094
|
display?: string | undefined;
|
|
@@ -5103,6 +5103,16 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
5103
5103
|
profile?: string[] | undefined;
|
|
5104
5104
|
versionId?: string | undefined;
|
|
5105
5105
|
} | undefined;
|
|
5106
|
+
note?: {
|
|
5107
|
+
text: string;
|
|
5108
|
+
authorReference?: {
|
|
5109
|
+
reference: string;
|
|
5110
|
+
type?: string | undefined;
|
|
5111
|
+
display?: string | undefined;
|
|
5112
|
+
} | undefined;
|
|
5113
|
+
authorString?: string | undefined;
|
|
5114
|
+
time?: string | undefined;
|
|
5115
|
+
}[] | undefined;
|
|
5106
5116
|
category?: {
|
|
5107
5117
|
coding?: {
|
|
5108
5118
|
code?: string | undefined;
|
|
@@ -5111,14 +5121,6 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
5111
5121
|
}[] | undefined;
|
|
5112
5122
|
text?: string | undefined;
|
|
5113
5123
|
} | undefined;
|
|
5114
|
-
bodySite?: {
|
|
5115
|
-
coding?: {
|
|
5116
|
-
code?: string | undefined;
|
|
5117
|
-
system?: string | undefined;
|
|
5118
|
-
display?: string | undefined;
|
|
5119
|
-
}[] | undefined;
|
|
5120
|
-
text?: string | undefined;
|
|
5121
|
-
}[] | undefined;
|
|
5122
5124
|
recorder?: {
|
|
5123
5125
|
reference: string;
|
|
5124
5126
|
type?: string | undefined;
|
|
@@ -5129,16 +5131,22 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
5129
5131
|
type?: string | undefined;
|
|
5130
5132
|
display?: string | undefined;
|
|
5131
5133
|
} | undefined;
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
type?: string | undefined;
|
|
5134
|
+
statusReason?: {
|
|
5135
|
+
coding?: {
|
|
5136
|
+
code?: string | undefined;
|
|
5137
|
+
system?: string | undefined;
|
|
5137
5138
|
display?: string | undefined;
|
|
5138
|
-
} | undefined;
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
|
|
5139
|
+
}[] | undefined;
|
|
5140
|
+
text?: string | undefined;
|
|
5141
|
+
} | undefined;
|
|
5142
|
+
outcome?: {
|
|
5143
|
+
coding?: {
|
|
5144
|
+
code?: string | undefined;
|
|
5145
|
+
system?: string | undefined;
|
|
5146
|
+
display?: string | undefined;
|
|
5147
|
+
}[] | undefined;
|
|
5148
|
+
text?: string | undefined;
|
|
5149
|
+
} | undefined;
|
|
5142
5150
|
basedOn?: {
|
|
5143
5151
|
reference: string;
|
|
5144
5152
|
type?: string | undefined;
|
|
@@ -5164,30 +5172,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
5164
5172
|
display?: string | undefined;
|
|
5165
5173
|
} | undefined;
|
|
5166
5174
|
}[] | undefined;
|
|
5167
|
-
|
|
5168
|
-
reference: string;
|
|
5169
|
-
type?: string | undefined;
|
|
5170
|
-
display?: string | undefined;
|
|
5171
|
-
}[] | undefined;
|
|
5172
|
-
statusReason?: {
|
|
5175
|
+
reasonCode?: {
|
|
5173
5176
|
coding?: {
|
|
5174
5177
|
code?: string | undefined;
|
|
5175
5178
|
system?: string | undefined;
|
|
5176
5179
|
display?: string | undefined;
|
|
5177
5180
|
}[] | undefined;
|
|
5178
5181
|
text?: string | undefined;
|
|
5179
|
-
} | undefined;
|
|
5180
|
-
|
|
5181
|
-
performedPeriod?: {
|
|
5182
|
-
start?: string | undefined;
|
|
5183
|
-
end?: string | undefined;
|
|
5184
|
-
} | undefined;
|
|
5185
|
-
location?: {
|
|
5182
|
+
}[] | undefined;
|
|
5183
|
+
reasonReference?: {
|
|
5186
5184
|
reference: string;
|
|
5187
5185
|
type?: string | undefined;
|
|
5188
5186
|
display?: string | undefined;
|
|
5189
|
-
} | undefined;
|
|
5190
|
-
|
|
5187
|
+
}[] | undefined;
|
|
5188
|
+
bodySite?: {
|
|
5191
5189
|
coding?: {
|
|
5192
5190
|
code?: string | undefined;
|
|
5193
5191
|
system?: string | undefined;
|
|
@@ -5195,18 +5193,20 @@ export declare const ProcedureBundleSchema: z.ZodObject<{
|
|
|
5195
5193
|
}[] | undefined;
|
|
5196
5194
|
text?: string | undefined;
|
|
5197
5195
|
}[] | undefined;
|
|
5198
|
-
|
|
5196
|
+
location?: {
|
|
5197
|
+
reference: string;
|
|
5198
|
+
type?: string | undefined;
|
|
5199
|
+
display?: string | undefined;
|
|
5200
|
+
} | undefined;
|
|
5201
|
+
partOf?: {
|
|
5199
5202
|
reference: string;
|
|
5200
5203
|
type?: string | undefined;
|
|
5201
5204
|
display?: string | undefined;
|
|
5202
5205
|
}[] | undefined;
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
display?: string | undefined;
|
|
5208
|
-
}[] | undefined;
|
|
5209
|
-
text?: string | undefined;
|
|
5206
|
+
performedDateTime?: string | undefined;
|
|
5207
|
+
performedPeriod?: {
|
|
5208
|
+
start?: string | undefined;
|
|
5209
|
+
end?: string | undefined;
|
|
5210
5210
|
} | undefined;
|
|
5211
5211
|
report?: {
|
|
5212
5212
|
reference: string;
|