@medplum/definitions 5.1.36 → 5.1.38

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.
@@ -203,7 +203,11 @@
203
203
  "ProjectDefaultAccessPolicies": "#/definitions/ProjectDefaultAccessPolicies",
204
204
  "DicomStudy": "#/definitions/DicomStudy",
205
205
  "DicomSeries": "#/definitions/DicomSeries",
206
- "DicomInstance": "#/definitions/DicomInstance"
206
+ "DicomInstance": "#/definitions/DicomInstance",
207
+ "Enterprise": "#/definitions/Enterprise",
208
+ "EnterpriseProject": "#/definitions/EnterpriseProject",
209
+ "Cron": "#/definitions/Cron",
210
+ "CronParameter": "#/definitions/CronParameter"
207
211
  }
208
212
  },
209
213
  "oneOf": [
@@ -803,6 +807,18 @@
803
807
  },
804
808
  {
805
809
  "$ref": "#/definitions/DicomInstance"
810
+ },
811
+ {
812
+ "$ref": "#/definitions/Enterprise"
813
+ },
814
+ {
815
+ "$ref": "#/definitions/EnterpriseProject"
816
+ },
817
+ {
818
+ "$ref": "#/definitions/Cron"
819
+ },
820
+ {
821
+ "$ref": "#/definitions/CronParameter"
806
822
  }
807
823
  ],
808
824
  "definitions": {
@@ -1404,6 +1420,18 @@
1404
1420
  },
1405
1421
  {
1406
1422
  "$ref": "#/definitions/DicomInstance"
1423
+ },
1424
+ {
1425
+ "$ref": "#/definitions/Enterprise"
1426
+ },
1427
+ {
1428
+ "$ref": "#/definitions/EnterpriseProject"
1429
+ },
1430
+ {
1431
+ "$ref": "#/definitions/Cron"
1432
+ },
1433
+ {
1434
+ "$ref": "#/definitions/CronParameter"
1407
1435
  }
1408
1436
  ]
1409
1437
  },
@@ -63688,6 +63716,10 @@
63688
63716
  "description": "Whether this request has been used, and is therefore no longer valid.",
63689
63717
  "$ref": "#/definitions/boolean"
63690
63718
  },
63719
+ "expiresAt": {
63720
+ "description": "The time at which this request expires, and is therefore no longer valid.",
63721
+ "$ref": "#/definitions/instant"
63722
+ },
63691
63723
  "redirectUri": {
63692
63724
  "description": "Redirect URI used when redirecting a client back to the client application.",
63693
63725
  "$ref": "#/definitions/uri"
@@ -65665,6 +65697,252 @@
65665
65697
  "metadata",
65666
65698
  "raw"
65667
65699
  ]
65700
+ },
65701
+ "Enterprise": {
65702
+ "description": "A group of Medplum projects managed as a single enterprise.",
65703
+ "properties": {
65704
+ "resourceType": {
65705
+ "description": "This is a Enterprise resource",
65706
+ "const": "Enterprise"
65707
+ },
65708
+ "id": {
65709
+ "description": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
65710
+ "$ref": "#/definitions/string"
65711
+ },
65712
+ "meta": {
65713
+ "description": "The metadata about the resource. This is content that is maintained by the infrastructure.",
65714
+ "$ref": "#/definitions/Meta"
65715
+ },
65716
+ "implicitRules": {
65717
+ "description": "A reference to a set of rules that were followed when the resource was constructed.",
65718
+ "$ref": "#/definitions/uri"
65719
+ },
65720
+ "language": {
65721
+ "description": "The base language in which the resource is written.",
65722
+ "$ref": "#/definitions/code"
65723
+ },
65724
+ "text": {
65725
+ "description": "A human-readable narrative that contains a summary of the resource.",
65726
+ "$ref": "#/definitions/Narrative"
65727
+ },
65728
+ "contained": {
65729
+ "description": "Resources that do not have an independent existence apart from the resource that contains them.",
65730
+ "items": {
65731
+ "$ref": "#/definitions/Resource"
65732
+ },
65733
+ "type": "array"
65734
+ },
65735
+ "extension": {
65736
+ "description": "Additional content defined by implementations.",
65737
+ "items": {
65738
+ "$ref": "#/definitions/Extension"
65739
+ },
65740
+ "type": "array"
65741
+ },
65742
+ "modifierExtension": {
65743
+ "description": "Extensions that cannot be ignored.",
65744
+ "items": {
65745
+ "$ref": "#/definitions/Extension"
65746
+ },
65747
+ "type": "array"
65748
+ },
65749
+ "identifier": {
65750
+ "description": "Identifiers for the enterprise.",
65751
+ "items": {
65752
+ "$ref": "#/definitions/Identifier"
65753
+ },
65754
+ "type": "array"
65755
+ },
65756
+ "name": {
65757
+ "description": "The name of the enterprise.",
65758
+ "$ref": "#/definitions/string"
65759
+ },
65760
+ "status": {
65761
+ "description": "Whether the enterprise is active or inactive.",
65762
+ "enum": [
65763
+ "active",
65764
+ "inactive"
65765
+ ]
65766
+ },
65767
+ "organization": {
65768
+ "description": "The organization represented by the enterprise.",
65769
+ "$ref": "#/definitions/Reference"
65770
+ },
65771
+ "code": {
65772
+ "description": "Codes used to classify the enterprise.",
65773
+ "items": {
65774
+ "$ref": "#/definitions/CodeableConcept"
65775
+ },
65776
+ "type": "array"
65777
+ },
65778
+ "project": {
65779
+ "description": "Projects belonging to the enterprise and their deployment environments.",
65780
+ "items": {
65781
+ "$ref": "#/definitions/EnterpriseProject"
65782
+ },
65783
+ "type": "array"
65784
+ }
65785
+ },
65786
+ "additionalProperties": false,
65787
+ "required": [
65788
+ "resourceType",
65789
+ "name",
65790
+ "status"
65791
+ ]
65792
+ },
65793
+ "EnterpriseProject": {
65794
+ "description": "Projects belonging to the enterprise and their deployment environments.",
65795
+ "properties": {
65796
+ "project": {
65797
+ "description": "A project belonging to the enterprise.",
65798
+ "$ref": "#/definitions/Reference"
65799
+ },
65800
+ "code": {
65801
+ "description": "Whether the project is a production or non-production environment.",
65802
+ "enum": [
65803
+ "production",
65804
+ "non-production"
65805
+ ]
65806
+ }
65807
+ },
65808
+ "additionalProperties": false,
65809
+ "required": [
65810
+ "project",
65811
+ "code"
65812
+ ]
65813
+ },
65814
+ "Cron": {
65815
+ "description": "A scheduled job that executes a Bot on a recurring schedule.",
65816
+ "properties": {
65817
+ "resourceType": {
65818
+ "description": "This is a Cron resource",
65819
+ "const": "Cron"
65820
+ },
65821
+ "id": {
65822
+ "description": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
65823
+ "$ref": "#/definitions/string"
65824
+ },
65825
+ "meta": {
65826
+ "description": "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.",
65827
+ "$ref": "#/definitions/Meta"
65828
+ },
65829
+ "implicitRules": {
65830
+ "description": "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.",
65831
+ "$ref": "#/definitions/uri"
65832
+ },
65833
+ "language": {
65834
+ "description": "The base language in which the resource is written.",
65835
+ "$ref": "#/definitions/code"
65836
+ },
65837
+ "text": {
65838
+ "description": "A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it \"clinically safe\" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.",
65839
+ "$ref": "#/definitions/Narrative"
65840
+ },
65841
+ "contained": {
65842
+ "description": "These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.",
65843
+ "items": {
65844
+ "$ref": "#/definitions/Resource"
65845
+ },
65846
+ "type": "array"
65847
+ },
65848
+ "extension": {
65849
+ "description": "May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
65850
+ "items": {
65851
+ "$ref": "#/definitions/Extension"
65852
+ },
65853
+ "type": "array"
65854
+ },
65855
+ "modifierExtension": {
65856
+ "description": "May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element\u0027s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
65857
+ "items": {
65858
+ "$ref": "#/definitions/Extension"
65859
+ },
65860
+ "type": "array"
65861
+ },
65862
+ "identifier": {
65863
+ "description": "An identifier for this cron job.",
65864
+ "items": {
65865
+ "$ref": "#/definitions/Identifier"
65866
+ },
65867
+ "type": "array"
65868
+ },
65869
+ "active": {
65870
+ "description": "Whether the scheduled job runs. Setting this to false unregisters the job while leaving the schedule itself intact, so the job can be turned back on without redefining it.",
65871
+ "$ref": "#/definitions/boolean"
65872
+ },
65873
+ "onBehalfOf": {
65874
+ "description": "The project membership whose identity and access policy the scheduled job assumes when it runs.",
65875
+ "$ref": "#/definitions/Reference"
65876
+ },
65877
+ "parameter": {
65878
+ "description": "Input passed to the target each time the scheduled job runs, with the same structure as Parameters.parameter. The target is always invoked with the whole Cron resource, so these parameters arrive alongside the schedule that produced them.",
65879
+ "items": {
65880
+ "$ref": "#/definitions/CronParameter"
65881
+ },
65882
+ "type": "array"
65883
+ },
65884
+ "cronString": {
65885
+ "description": "A schedule for the job to be executed, as a cron expression. An expression that is not a valid five-field cron expression is rejected on write.",
65886
+ "$ref": "#/definitions/string"
65887
+ },
65888
+ "endTime": {
65889
+ "description": "The point in time after which the job no longer runs. A job whose end time has already passed is never scheduled, and a running one is removed once the time passes. When absent, the job runs until it is disabled or deleted.",
65890
+ "$ref": "#/definitions/dateTime"
65891
+ },
65892
+ "targetReference": {
65893
+ "description": "The target invoked each time the scheduled job runs.",
65894
+ "$ref": "#/definitions/Reference"
65895
+ }
65896
+ },
65897
+ "additionalProperties": false,
65898
+ "required": [
65899
+ "resourceType",
65900
+ "active",
65901
+ "onBehalfOf",
65902
+ "cronString",
65903
+ "targetReference"
65904
+ ]
65905
+ },
65906
+ "CronParameter": {
65907
+ "description": "Input passed to the target each time the scheduled job runs, with the same structure as Parameters.parameter. The target is always invoked with the whole Cron resource, so these parameters arrive alongside the schedule that produced them.",
65908
+ "properties": {
65909
+ "name": {
65910
+ "description": "The name of the parameter (reference to the operation definition).",
65911
+ "$ref": "#/definitions/string"
65912
+ },
65913
+ "valueBoolean": {
65914
+ "description": "If the parameter is a data type.",
65915
+ "$ref": "#/definitions/boolean"
65916
+ },
65917
+ "valueDateTime": {
65918
+ "description": "If the parameter is a data type.",
65919
+ "$ref": "#/definitions/dateTime"
65920
+ },
65921
+ "valueDecimal": {
65922
+ "description": "If the parameter is a data type.",
65923
+ "$ref": "#/definitions/decimal"
65924
+ },
65925
+ "valueInteger": {
65926
+ "description": "If the parameter is a data type.",
65927
+ "$ref": "#/definitions/integer"
65928
+ },
65929
+ "valueString": {
65930
+ "description": "If the parameter is a data type.",
65931
+ "$ref": "#/definitions/string"
65932
+ },
65933
+ "valueReference": {
65934
+ "description": "If the parameter is a data type.",
65935
+ "$ref": "#/definitions/Reference"
65936
+ },
65937
+ "resource": {
65938
+ "description": "If the parameter is a whole resource.",
65939
+ "$ref": "#/definitions/Resource"
65940
+ }
65941
+ },
65942
+ "additionalProperties": false,
65943
+ "required": [
65944
+ "name"
65945
+ ]
65668
65946
  }
65669
65947
  }
65670
65948
  }
@@ -6,6 +6,292 @@
6
6
  },
7
7
  "type" : "collection",
8
8
  "entry" : [{
9
+ "fullUrl": "https://medplum.com/fhir/StructureDefinition/Enterprise",
10
+ "resource": {
11
+ "resourceType": "StructureDefinition",
12
+ "id": "Enterprise",
13
+ "name": "Enterprise",
14
+ "url": "https://medplum.com/fhir/StructureDefinition/Enterprise",
15
+ "status": "active",
16
+ "description": "A group of Medplum projects managed as a single enterprise.",
17
+ "kind": "resource",
18
+ "abstract": false,
19
+ "type": "Enterprise",
20
+ "baseDefinition": "http://hl7.org/fhir/StructureDefinition/DomainResource",
21
+ "snapshot": {
22
+ "element": [
23
+ {
24
+ "id": "Enterprise",
25
+ "path": "Enterprise",
26
+ "short": "A group of Medplum projects managed as a single enterprise.",
27
+ "definition": "A group of Medplum projects managed as a single enterprise.",
28
+ "min": 0,
29
+ "max": "*",
30
+ "base": {
31
+ "path": "Enterprise",
32
+ "min": 0,
33
+ "max": "*"
34
+ }
35
+ },
36
+ {
37
+ "id": "Enterprise.id",
38
+ "path": "Enterprise.id",
39
+ "short": "Logical id of this artifact",
40
+ "definition": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
41
+ "min": 0,
42
+ "max": "1",
43
+ "base": {
44
+ "path": "Resource.id",
45
+ "min": 0,
46
+ "max": "1"
47
+ },
48
+ "type": [{
49
+ "code": "string"
50
+ }]
51
+ },
52
+ {
53
+ "id": "Enterprise.meta",
54
+ "path": "Enterprise.meta",
55
+ "definition": "The metadata about the resource. This is content that is maintained by the infrastructure.",
56
+ "min": 0,
57
+ "max": "1",
58
+ "base": {
59
+ "path": "Resource.meta",
60
+ "min": 0,
61
+ "max": "1"
62
+ },
63
+ "type": [{
64
+ "code": "Meta"
65
+ }]
66
+ },
67
+ {
68
+ "id": "Enterprise.implicitRules",
69
+ "path": "Enterprise.implicitRules",
70
+ "definition": "A reference to a set of rules that were followed when the resource was constructed.",
71
+ "min": 0,
72
+ "max": "1",
73
+ "base": {
74
+ "path": "Resource.implicitRules",
75
+ "min": 0,
76
+ "max": "1"
77
+ },
78
+ "type": [{
79
+ "code": "uri"
80
+ }]
81
+ },
82
+ {
83
+ "id": "Enterprise.language",
84
+ "path": "Enterprise.language",
85
+ "definition": "The base language in which the resource is written.",
86
+ "min": 0,
87
+ "max": "1",
88
+ "base": {
89
+ "path": "Resource.language",
90
+ "min": 0,
91
+ "max": "1"
92
+ },
93
+ "type": [{
94
+ "code": "code"
95
+ }]
96
+ },
97
+ {
98
+ "id": "Enterprise.text",
99
+ "path": "Enterprise.text",
100
+ "short": "Text summary of the resource, for human interpretation",
101
+ "definition": "A human-readable narrative that contains a summary of the resource.",
102
+ "min": 0,
103
+ "max": "1",
104
+ "base": {
105
+ "path": "DomainResource.text",
106
+ "min": 0,
107
+ "max": "1"
108
+ },
109
+ "type": [{
110
+ "code": "Narrative"
111
+ }]
112
+ },
113
+ {
114
+ "id": "Enterprise.contained",
115
+ "path": "Enterprise.contained",
116
+ "short": "Contained, inline Resources",
117
+ "definition": "Resources that do not have an independent existence apart from the resource that contains them.",
118
+ "min": 0,
119
+ "max": "*",
120
+ "base": {
121
+ "path": "DomainResource.contained",
122
+ "min": 0,
123
+ "max": "*"
124
+ },
125
+ "type": [{
126
+ "code": "Resource"
127
+ }]
128
+ },
129
+ {
130
+ "id": "Enterprise.extension",
131
+ "path": "Enterprise.extension",
132
+ "short": "Additional content defined by implementations",
133
+ "definition": "Additional content defined by implementations.",
134
+ "min": 0,
135
+ "max": "*",
136
+ "base": {
137
+ "path": "DomainResource.extension",
138
+ "min": 0,
139
+ "max": "*"
140
+ },
141
+ "type": [{
142
+ "code": "Extension"
143
+ }]
144
+ },
145
+ {
146
+ "id": "Enterprise.modifierExtension",
147
+ "path": "Enterprise.modifierExtension",
148
+ "short": "Extensions that cannot be ignored",
149
+ "definition": "Extensions that cannot be ignored.",
150
+ "min": 0,
151
+ "max": "*",
152
+ "base": {
153
+ "path": "DomainResource.modifierExtension",
154
+ "min": 0,
155
+ "max": "*"
156
+ },
157
+ "type": [{
158
+ "code": "Extension"
159
+ }]
160
+ },
161
+ {
162
+ "id": "Enterprise.identifier",
163
+ "path": "Enterprise.identifier",
164
+ "definition": "Identifiers for the enterprise.",
165
+ "min": 0,
166
+ "max": "*",
167
+ "type": [{
168
+ "code": "Identifier"
169
+ }],
170
+ "base": {
171
+ "path": "Enterprise.identifier",
172
+ "min": 0,
173
+ "max": "*"
174
+ }
175
+ },
176
+ {
177
+ "id": "Enterprise.name",
178
+ "path": "Enterprise.name",
179
+ "definition": "The name of the enterprise.",
180
+ "min": 1,
181
+ "max": "1",
182
+ "type": [{
183
+ "code": "string"
184
+ }],
185
+ "base": {
186
+ "path": "Enterprise.name",
187
+ "min": 1,
188
+ "max": "1"
189
+ }
190
+ },
191
+ {
192
+ "id": "Enterprise.status",
193
+ "path": "Enterprise.status",
194
+ "definition": "Whether the enterprise is active or inactive.",
195
+ "min": 1,
196
+ "max": "1",
197
+ "type": [{
198
+ "code": "code"
199
+ }],
200
+ "base": {
201
+ "path": "Enterprise.status",
202
+ "min": 1,
203
+ "max": "1"
204
+ },
205
+ "binding": {
206
+ "strength": "required",
207
+ "valueSet": "https://medplum.com/fhir/ValueSet/enterprise-status"
208
+ }
209
+ },
210
+ {
211
+ "id": "Enterprise.organization",
212
+ "path": "Enterprise.organization",
213
+ "definition": "The organization represented by the enterprise.",
214
+ "min": 0,
215
+ "max": "1",
216
+ "type": [{
217
+ "code": "Reference",
218
+ "targetProfile": ["http://hl7.org/fhir/StructureDefinition/Organization"]
219
+ }],
220
+ "base": {
221
+ "path": "Enterprise.organization",
222
+ "min": 0,
223
+ "max": "1"
224
+ }
225
+ },
226
+ {
227
+ "id": "Enterprise.code",
228
+ "path": "Enterprise.code",
229
+ "definition": "Codes used to classify the enterprise.",
230
+ "min": 0,
231
+ "max": "*",
232
+ "type": [{
233
+ "code": "CodeableConcept"
234
+ }],
235
+ "base": {
236
+ "path": "Enterprise.code",
237
+ "min": 0,
238
+ "max": "*"
239
+ }
240
+ },
241
+ {
242
+ "id": "Enterprise.project",
243
+ "path": "Enterprise.project",
244
+ "definition": "Projects belonging to the enterprise and their deployment environments.",
245
+ "min": 0,
246
+ "max": "*",
247
+ "type": [{
248
+ "code": "BackboneElement"
249
+ }],
250
+ "base": {
251
+ "path": "Enterprise.project",
252
+ "min": 0,
253
+ "max": "*"
254
+ }
255
+ },
256
+ {
257
+ "id": "Enterprise.project.project",
258
+ "path": "Enterprise.project.project",
259
+ "definition": "A project belonging to the enterprise.",
260
+ "min": 1,
261
+ "max": "1",
262
+ "type": [{
263
+ "code": "Reference",
264
+ "targetProfile": ["https://medplum.com/fhir/StructureDefinition/Project"]
265
+ }],
266
+ "base": {
267
+ "path": "Enterprise.project.project",
268
+ "min": 1,
269
+ "max": "1"
270
+ }
271
+ },
272
+ {
273
+ "id": "Enterprise.project.code",
274
+ "path": "Enterprise.project.code",
275
+ "definition": "Whether the project is a production or non-production environment.",
276
+ "min": 1,
277
+ "max": "1",
278
+ "type": [{
279
+ "code": "code"
280
+ }],
281
+ "base": {
282
+ "path": "Enterprise.project.code",
283
+ "min": 1,
284
+ "max": "1"
285
+ },
286
+ "binding": {
287
+ "strength": "required",
288
+ "valueSet": "https://medplum.com/fhir/ValueSet/enterprise-project-code"
289
+ }
290
+ }
291
+ ]
292
+ }
293
+ }
294
+ }, {
9
295
  "fullUrl" : "https://medplum.com/fhir/StructureDefinition/Project",
10
296
  "resource" : {
11
297
  "resourceType" : "StructureDefinition",
@@ -3340,6 +3626,21 @@
3340
3626
  "max" : "1"
3341
3627
  }
3342
3628
  },
3629
+ {
3630
+ "id" : "UserSecurityRequest.expiresAt",
3631
+ "path" : "UserSecurityRequest.expiresAt",
3632
+ "definition" : "The time at which this request expires, and is therefore no longer valid.",
3633
+ "min" : 0,
3634
+ "max" : "1",
3635
+ "type" : [{
3636
+ "code" : "instant"
3637
+ }],
3638
+ "base" : {
3639
+ "path" : "UserSecurityRequest.expiresAt",
3640
+ "min" : 0,
3641
+ "max" : "1"
3642
+ }
3643
+ },
3343
3644
  {
3344
3645
  "id" : "UserSecurityRequest.redirectUri",
3345
3646
  "path" : "UserSecurityRequest.redirectUri",
@@ -10630,5 +10931,360 @@
10630
10931
  ]
10631
10932
  }
10632
10933
  }
10934
+ },
10935
+ {
10936
+ "fullUrl" : "https://medplum.com/fhir/StructureDefinition/Cron",
10937
+ "resource" : {
10938
+ "resourceType" : "StructureDefinition",
10939
+ "id" : "Cron",
10940
+ "name" : "Cron",
10941
+ "url" : "https://medplum.com/fhir/StructureDefinition/Cron",
10942
+ "status" : "active",
10943
+ "kind" : "resource",
10944
+ "abstract" : false,
10945
+ "type" : "Cron",
10946
+ "baseDefinition" : "http://hl7.org/fhir/StructureDefinition/DomainResource",
10947
+ "description" : "A scheduled job that executes a Bot on a recurring schedule.",
10948
+ "snapshot" : {
10949
+ "element" : [
10950
+ {
10951
+ "id" : "Cron",
10952
+ "path" : "Cron",
10953
+ "short" : "A scheduled job that executes a Bot on a recurring schedule.",
10954
+ "definition" : "A scheduled job that executes a Bot on a recurring schedule.",
10955
+ "min" : 0,
10956
+ "max" : "*",
10957
+ "base" : {
10958
+ "path" : "Cron",
10959
+ "min" : 0,
10960
+ "max" : "*"
10961
+ }
10962
+ },
10963
+ {
10964
+ "id" : "Cron.id",
10965
+ "path" : "Cron.id",
10966
+ "short" : "Logical id of this artifact",
10967
+ "definition" : "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
10968
+ "min" : 0,
10969
+ "max" : "1",
10970
+ "base" : {
10971
+ "path" : "Resource.id",
10972
+ "min" : 0,
10973
+ "max" : "1"
10974
+ },
10975
+ "type" : [{
10976
+ "code" : "string"
10977
+ }]
10978
+ },
10979
+ {
10980
+ "id" : "Cron.meta",
10981
+ "path" : "Cron.meta",
10982
+ "definition" : "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.",
10983
+ "min" : 0,
10984
+ "max" : "1",
10985
+ "base" : {
10986
+ "path" : "Resource.meta",
10987
+ "min" : 0,
10988
+ "max" : "1"
10989
+ },
10990
+ "type" : [{
10991
+ "code" : "Meta"
10992
+ }]
10993
+ },
10994
+ {
10995
+ "id" : "Cron.implicitRules",
10996
+ "path" : "Cron.implicitRules",
10997
+ "definition" : "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.",
10998
+ "min" : 0,
10999
+ "max" : "1",
11000
+ "base" : {
11001
+ "path" : "Resource.implicitRules",
11002
+ "min" : 0,
11003
+ "max" : "1"
11004
+ },
11005
+ "type" : [{
11006
+ "code" : "uri"
11007
+ }]
11008
+ },
11009
+ {
11010
+ "id" : "Cron.language",
11011
+ "path" : "Cron.language",
11012
+ "definition" : "The base language in which the resource is written.",
11013
+ "min" : 0,
11014
+ "max" : "1",
11015
+ "type" : [{
11016
+ "code" : "code"
11017
+ }],
11018
+ "base" : {
11019
+ "path" : "Resource.language",
11020
+ "min" : 0,
11021
+ "max" : "1"
11022
+ }
11023
+ },
11024
+ {
11025
+ "id" : "Cron.text",
11026
+ "path" : "Cron.text",
11027
+ "short" : "Text summary of the resource, for human interpretation",
11028
+ "definition" : "A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it \"clinically safe\" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.",
11029
+ "min" : 0,
11030
+ "max" : "1",
11031
+ "base" : {
11032
+ "path" : "DomainResource.text",
11033
+ "min" : 0,
11034
+ "max" : "1"
11035
+ },
11036
+ "type" : [{
11037
+ "code" : "Narrative"
11038
+ }]
11039
+ },
11040
+ {
11041
+ "id" : "Cron.contained",
11042
+ "path" : "Cron.contained",
11043
+ "short" : "Contained, inline Resources",
11044
+ "definition" : "These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.",
11045
+ "min" : 0,
11046
+ "max" : "*",
11047
+ "base" : {
11048
+ "path" : "DomainResource.contained",
11049
+ "min" : 0,
11050
+ "max" : "*"
11051
+ },
11052
+ "type" : [{
11053
+ "code" : "Resource"
11054
+ }]
11055
+ },
11056
+ {
11057
+ "id" : "Cron.extension",
11058
+ "path" : "Cron.extension",
11059
+ "short" : "Additional content defined by implementations",
11060
+ "definition" : "May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
11061
+ "min" : 0,
11062
+ "max" : "*",
11063
+ "base" : {
11064
+ "path" : "DomainResource.extension",
11065
+ "min" : 0,
11066
+ "max" : "*"
11067
+ },
11068
+ "type" : [{
11069
+ "code" : "Extension"
11070
+ }]
11071
+ },
11072
+ {
11073
+ "id" : "Cron.modifierExtension",
11074
+ "path" : "Cron.modifierExtension",
11075
+ "short" : "Extensions that cannot be ignored",
11076
+ "definition" : "May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
11077
+ "min" : 0,
11078
+ "max" : "*",
11079
+ "base" : {
11080
+ "path" : "DomainResource.modifierExtension",
11081
+ "min" : 0,
11082
+ "max" : "*"
11083
+ },
11084
+ "type" : [{
11085
+ "code" : "Extension"
11086
+ }]
11087
+ },
11088
+ {
11089
+ "id" : "Cron.identifier",
11090
+ "path" : "Cron.identifier",
11091
+ "short" : "An identifier for this cron job",
11092
+ "definition" : "An identifier for this cron job.",
11093
+ "min" : 0,
11094
+ "max" : "*",
11095
+ "base" : {
11096
+ "path" : "Cron.identifier",
11097
+ "min" : 0,
11098
+ "max" : "*"
11099
+ },
11100
+ "type" : [{
11101
+ "code" : "Identifier"
11102
+ }]
11103
+ },
11104
+ {
11105
+ "id" : "Cron.active",
11106
+ "path" : "Cron.active",
11107
+ "short" : "Whether the job is registered with the scheduler",
11108
+ "definition" : "Whether the scheduled job runs. Setting this to false unregisters the job while leaving the schedule itself intact, so the job can be turned back on without redefining it.",
11109
+ "min" : 1,
11110
+ "max" : "1",
11111
+ "base" : {
11112
+ "path" : "Cron.active",
11113
+ "min" : 1,
11114
+ "max" : "1"
11115
+ },
11116
+ "type" : [{
11117
+ "code" : "boolean"
11118
+ }]
11119
+ },
11120
+ {
11121
+ "id" : "Cron.onBehalfOf",
11122
+ "path" : "Cron.onBehalfOf",
11123
+ "short" : "The membership on whose behalf the job runs",
11124
+ "definition" : "The project membership whose identity and access policy the scheduled job assumes when it runs.",
11125
+ "min" : 1,
11126
+ "max" : "1",
11127
+ "base" : {
11128
+ "path" : "Cron.onBehalfOf",
11129
+ "min" : 1,
11130
+ "max" : "1"
11131
+ },
11132
+ "type" : [{
11133
+ "code" : "Reference",
11134
+ "targetProfile" : ["https://medplum.com/fhir/StructureDefinition/ProjectMembership"]
11135
+ }],
11136
+ "constraint" : [{
11137
+ "key" : "cron-1",
11138
+ "severity" : "error",
11139
+ "human" : "A cron job resolves its identity by reading onBehalfOf, so a logical reference is not enough.",
11140
+ "expression" : "reference.exists()"
11141
+ }]
11142
+ },
11143
+ {
11144
+ "id" : "Cron.parameter",
11145
+ "path" : "Cron.parameter",
11146
+ "short" : "Input passed to the target",
11147
+ "definition" : "Input passed to the target each time the scheduled job runs, with the same structure as Parameters.parameter. The target is always invoked with the whole Cron resource, so these parameters arrive alongside the schedule that produced them.",
11148
+ "min" : 0,
11149
+ "max" : "*",
11150
+ "base" : {
11151
+ "path" : "Cron.parameter",
11152
+ "min" : 0,
11153
+ "max" : "*"
11154
+ },
11155
+ "type" : [{
11156
+ "code" : "BackboneElement"
11157
+ }],
11158
+ "constraint" : [{
11159
+ "key" : "cron-3",
11160
+ "severity" : "error",
11161
+ "human" : "A parameter must have one and only one of (value, resource)",
11162
+ "expression" : "value.exists() xor resource.exists()"
11163
+ }]
11164
+ },
11165
+ {
11166
+ "id" : "Cron.parameter.name",
11167
+ "path" : "Cron.parameter.name",
11168
+ "short" : "Name from the definition",
11169
+ "definition" : "The name of the parameter (reference to the operation definition).",
11170
+ "min" : 1,
11171
+ "max" : "1",
11172
+ "base" : {
11173
+ "path" : "Cron.parameter.name",
11174
+ "min" : 1,
11175
+ "max" : "1"
11176
+ },
11177
+ "type" : [{
11178
+ "code" : "string"
11179
+ }]
11180
+ },
11181
+ {
11182
+ "id" : "Cron.parameter.value[x]",
11183
+ "path" : "Cron.parameter.value[x]",
11184
+ "short" : "If parameter is a data type",
11185
+ "definition" : "If the parameter is a data type.",
11186
+ "min" : 0,
11187
+ "max" : "1",
11188
+ "base" : {
11189
+ "path" : "Cron.parameter.value[x]",
11190
+ "min" : 0,
11191
+ "max" : "1"
11192
+ },
11193
+ "type" : [
11194
+ {
11195
+ "code" : "boolean"
11196
+ },
11197
+ {
11198
+ "code" : "dateTime"
11199
+ },
11200
+ {
11201
+ "code" : "decimal"
11202
+ },
11203
+ {
11204
+ "code" : "integer"
11205
+ },
11206
+ {
11207
+ "code" : "string"
11208
+ },
11209
+ {
11210
+ "code" : "Reference"
11211
+ }
11212
+ ]
11213
+ },
11214
+ {
11215
+ "id" : "Cron.parameter.resource",
11216
+ "path" : "Cron.parameter.resource",
11217
+ "short" : "If parameter is a whole resource",
11218
+ "definition" : "If the parameter is a whole resource.",
11219
+ "comment" : "When resolving references in resources, the operation definition may specify how references may be resolved between parameters. If a reference cannot be resolved between the parameters, the application should fall back to it's general resource resolution methods.",
11220
+ "min" : 0,
11221
+ "max" : "1",
11222
+ "base" : {
11223
+ "path" : "Cron.parameter.resource",
11224
+ "min" : 0,
11225
+ "max" : "1"
11226
+ },
11227
+ "type" : [{
11228
+ "code" : "Resource"
11229
+ }]
11230
+ },
11231
+ {
11232
+ "id" : "Cron.cronString",
11233
+ "path" : "Cron.cronString",
11234
+ "short" : "The schedule on which the job runs",
11235
+ "definition" : "A schedule for the job to be executed, as a cron expression. An expression that is not a valid five-field cron expression is rejected on write.",
11236
+ "min" : 1,
11237
+ "max" : "1",
11238
+ "base" : {
11239
+ "path" : "Cron.cronString",
11240
+ "min" : 1,
11241
+ "max" : "1"
11242
+ },
11243
+ "type" : [{
11244
+ "code" : "string"
11245
+ }]
11246
+ },
11247
+ {
11248
+ "id" : "Cron.endTime",
11249
+ "path" : "Cron.endTime",
11250
+ "short" : "The point after which the job stops running",
11251
+ "definition" : "The point in time after which the job no longer runs. A job whose end time has already passed is never scheduled, and a running one is removed once the time passes. When absent, the job runs until it is disabled or deleted.",
11252
+ "min" : 0,
11253
+ "max" : "1",
11254
+ "base" : {
11255
+ "path" : "Cron.endTime",
11256
+ "min" : 0,
11257
+ "max" : "1"
11258
+ },
11259
+ "type" : [{
11260
+ "code" : "dateTime"
11261
+ }]
11262
+ },
11263
+ {
11264
+ "id" : "Cron.targetReference",
11265
+ "path" : "Cron.targetReference",
11266
+ "short" : "The target invoked by the scheduled job",
11267
+ "definition" : "The target invoked each time the scheduled job runs.",
11268
+ "min" : 1,
11269
+ "max" : "1",
11270
+ "base" : {
11271
+ "path" : "Cron.targetReference",
11272
+ "min" : 1,
11273
+ "max" : "1"
11274
+ },
11275
+ "type" : [{
11276
+ "code" : "Reference",
11277
+ "targetProfile" : ["https://medplum.com/fhir/StructureDefinition/Bot"]
11278
+ }],
11279
+ "constraint" : [{
11280
+ "key" : "cron-2",
11281
+ "severity" : "error",
11282
+ "human" : "A cron job resolves its target by reading targetReference, so a logical reference is not enough.",
11283
+ "expression" : "reference.exists()"
11284
+ }]
11285
+ }
11286
+ ]
11287
+ }
11288
+ }
10633
11289
  }]
10634
11290
  }
@@ -3,6 +3,127 @@
3
3
  "id": "medplumSearchParams",
4
4
  "type": "collection",
5
5
  "entry": [
6
+ {
7
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Enterprise-identifier",
8
+ "resource": {
9
+ "resourceType": "SearchParameter",
10
+ "id": "Enterprise-identifier",
11
+ "url": "https://medplum.com/fhir/SearchParameter/Enterprise-identifier",
12
+ "version": "4.0.1",
13
+ "name": "identifier",
14
+ "status": "draft",
15
+ "publisher": "Medplum",
16
+ "description": "An identifier for the enterprise",
17
+ "code": "identifier",
18
+ "base": ["Enterprise"],
19
+ "type": "token",
20
+ "expression": "Enterprise.identifier"
21
+ }
22
+ },
23
+ {
24
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Enterprise-name",
25
+ "resource": {
26
+ "resourceType": "SearchParameter",
27
+ "id": "Enterprise-name",
28
+ "url": "https://medplum.com/fhir/SearchParameter/Enterprise-name",
29
+ "version": "4.0.1",
30
+ "name": "name",
31
+ "status": "draft",
32
+ "publisher": "Medplum",
33
+ "description": "The name of the enterprise",
34
+ "code": "name",
35
+ "base": ["Enterprise"],
36
+ "type": "string",
37
+ "expression": "Enterprise.name"
38
+ }
39
+ },
40
+ {
41
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Enterprise-status",
42
+ "resource": {
43
+ "resourceType": "SearchParameter",
44
+ "id": "Enterprise-status",
45
+ "url": "https://medplum.com/fhir/SearchParameter/Enterprise-status",
46
+ "version": "4.0.1",
47
+ "name": "status",
48
+ "status": "draft",
49
+ "publisher": "Medplum",
50
+ "description": "The status of the enterprise",
51
+ "code": "status",
52
+ "base": ["Enterprise"],
53
+ "type": "token",
54
+ "expression": "Enterprise.status"
55
+ }
56
+ },
57
+ {
58
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Enterprise-organization",
59
+ "resource": {
60
+ "resourceType": "SearchParameter",
61
+ "id": "Enterprise-organization",
62
+ "url": "https://medplum.com/fhir/SearchParameter/Enterprise-organization",
63
+ "version": "4.0.1",
64
+ "name": "organization",
65
+ "status": "draft",
66
+ "publisher": "Medplum",
67
+ "description": "The organization represented by the enterprise",
68
+ "code": "organization",
69
+ "base": ["Enterprise"],
70
+ "type": "reference",
71
+ "expression": "Enterprise.organization",
72
+ "target": ["Organization"]
73
+ }
74
+ },
75
+ {
76
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Enterprise-code",
77
+ "resource": {
78
+ "resourceType": "SearchParameter",
79
+ "id": "Enterprise-code",
80
+ "url": "https://medplum.com/fhir/SearchParameter/Enterprise-code",
81
+ "version": "4.0.1",
82
+ "name": "code",
83
+ "status": "draft",
84
+ "publisher": "Medplum",
85
+ "description": "A code that classifies the enterprise",
86
+ "code": "code",
87
+ "base": ["Enterprise"],
88
+ "type": "token",
89
+ "expression": "Enterprise.code"
90
+ }
91
+ },
92
+ {
93
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Enterprise-project",
94
+ "resource": {
95
+ "resourceType": "SearchParameter",
96
+ "id": "Enterprise-project",
97
+ "url": "https://medplum.com/fhir/SearchParameter/Enterprise-project",
98
+ "version": "4.0.1",
99
+ "name": "project",
100
+ "status": "draft",
101
+ "publisher": "Medplum",
102
+ "description": "A project belonging to the enterprise",
103
+ "code": "project",
104
+ "base": ["Enterprise"],
105
+ "type": "reference",
106
+ "expression": "Enterprise.project.project",
107
+ "target": ["Project"]
108
+ }
109
+ },
110
+ {
111
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Enterprise-project-code",
112
+ "resource": {
113
+ "resourceType": "SearchParameter",
114
+ "id": "Enterprise-project-code",
115
+ "url": "https://medplum.com/fhir/SearchParameter/Enterprise-project-code",
116
+ "version": "4.0.1",
117
+ "name": "project-code",
118
+ "status": "draft",
119
+ "publisher": "Medplum",
120
+ "description": "The deployment environment of a project in the enterprise",
121
+ "code": "project-code",
122
+ "base": ["Enterprise"],
123
+ "type": "token",
124
+ "expression": "Enterprise.project.code"
125
+ }
126
+ },
6
127
  {
7
128
  "fullUrl": "https://medplum.com/fhir/SearchParameter/Project-identifier",
8
129
  "resource": {
@@ -2422,6 +2543,57 @@
2422
2543
  "target": ["Organization"],
2423
2544
  "expression": "PractitionerRole.extension.where(url='http://hl7.org/fhir/us/davinci-pdex-plan-net/StructureDefinition/network-reference').value"
2424
2545
  }
2546
+ },
2547
+ {
2548
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Cron-identifier",
2549
+ "resource": {
2550
+ "resourceType": "SearchParameter",
2551
+ "id": "Cron-identifier",
2552
+ "url": "https://medplum.com/fhir/SearchParameter/Cron-identifier",
2553
+ "version": "4.0.1",
2554
+ "name": "identifier",
2555
+ "status": "draft",
2556
+ "publisher": "Medplum",
2557
+ "description": "The identifier of the cron job",
2558
+ "code": "identifier",
2559
+ "base": ["Cron"],
2560
+ "type": "token",
2561
+ "expression": "Cron.identifier"
2562
+ }
2563
+ },
2564
+ {
2565
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Cron-on-behalf-of",
2566
+ "resource": {
2567
+ "resourceType": "SearchParameter",
2568
+ "id": "Cron-on-behalf-of",
2569
+ "url": "https://medplum.com/fhir/SearchParameter/Cron-on-behalf-of",
2570
+ "version": "4.0.1",
2571
+ "name": "on-behalf-of",
2572
+ "status": "draft",
2573
+ "publisher": "Medplum",
2574
+ "description": "The project membership on whose behalf the cron job runs",
2575
+ "code": "on-behalf-of",
2576
+ "base": ["Cron"],
2577
+ "type": "reference",
2578
+ "expression": "Cron.onBehalfOf"
2579
+ }
2580
+ },
2581
+ {
2582
+ "fullUrl": "https://medplum.com/fhir/SearchParameter/Cron-target",
2583
+ "resource": {
2584
+ "resourceType": "SearchParameter",
2585
+ "id": "Cron-target",
2586
+ "url": "https://medplum.com/fhir/SearchParameter/Cron-target",
2587
+ "version": "4.0.1",
2588
+ "name": "target",
2589
+ "status": "draft",
2590
+ "publisher": "Medplum",
2591
+ "description": "The Bot invoked by the cron job",
2592
+ "code": "target",
2593
+ "base": ["Cron"],
2594
+ "type": "reference",
2595
+ "expression": "Cron.targetReference"
2596
+ }
2425
2597
  }
2426
2598
  ]
2427
2599
  }
@@ -42,6 +42,11 @@
42
42
  "display": "ClientApplication",
43
43
  "definition": "Medplum client application for automated access."
44
44
  },
45
+ {
46
+ "code": "Cron",
47
+ "display": "Cron",
48
+ "definition": "A scheduled job that executes a Bot on a recurring schedule."
49
+ },
45
50
  {
46
51
  "code": "DicomInstance",
47
52
  "display": "DicomInstance",
@@ -62,6 +67,11 @@
62
67
  "display": "DomainConfiguration",
63
68
  "definition": "Domain specific configuration for the Medplum application."
64
69
  },
70
+ {
71
+ "code": "Enterprise",
72
+ "display": "Enterprise",
73
+ "definition": "A group of Medplum projects managed as a single enterprise."
74
+ },
65
75
  {
66
76
  "code": "IdentityProvider",
67
77
  "display": "IdentityProvider",
@@ -149,6 +159,80 @@
149
159
  }
150
160
  }
151
161
  },
162
+ {
163
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/enterprise-status",
164
+ "resource": {
165
+ "resourceType": "CodeSystem",
166
+ "id": "enterprise-status",
167
+ "url": "https://medplum.com/fhir/CodeSystem/enterprise-status",
168
+ "status": "active",
169
+ "valueSet": "https://medplum.com/fhir/ValueSet/enterprise-status",
170
+ "content": "complete",
171
+ "concept": [
172
+ {
173
+ "code": "active",
174
+ "display": "Active",
175
+ "definition": "The enterprise is active."
176
+ },
177
+ {
178
+ "code": "inactive",
179
+ "display": "Inactive",
180
+ "definition": "The enterprise is inactive."
181
+ }
182
+ ]
183
+ }
184
+ },
185
+ {
186
+ "fullUrl": "https://medplum.com/fhir/ValueSet/enterprise-status",
187
+ "resource": {
188
+ "resourceType": "ValueSet",
189
+ "id": "enterprise-status",
190
+ "url": "https://medplum.com/fhir/ValueSet/enterprise-status",
191
+ "status": "active",
192
+ "compose": {
193
+ "include": [{
194
+ "system": "https://medplum.com/fhir/CodeSystem/enterprise-status"
195
+ }]
196
+ }
197
+ }
198
+ },
199
+ {
200
+ "fullUrl": "https://medplum.com/fhir/CodeSystem/enterprise-project-code",
201
+ "resource": {
202
+ "resourceType": "CodeSystem",
203
+ "id": "enterprise-project-code",
204
+ "url": "https://medplum.com/fhir/CodeSystem/enterprise-project-code",
205
+ "status": "active",
206
+ "valueSet": "https://medplum.com/fhir/ValueSet/enterprise-project-code",
207
+ "content": "complete",
208
+ "concept": [
209
+ {
210
+ "code": "production",
211
+ "display": "Production",
212
+ "definition": "The project is a production environment."
213
+ },
214
+ {
215
+ "code": "non-production",
216
+ "display": "Non-Production",
217
+ "definition": "The project is not a production environment."
218
+ }
219
+ ]
220
+ }
221
+ },
222
+ {
223
+ "fullUrl": "https://medplum.com/fhir/ValueSet/enterprise-project-code",
224
+ "resource": {
225
+ "resourceType": "ValueSet",
226
+ "id": "enterprise-project-code",
227
+ "url": "https://medplum.com/fhir/ValueSet/enterprise-project-code",
228
+ "status": "active",
229
+ "compose": {
230
+ "include": [{
231
+ "system": "https://medplum.com/fhir/CodeSystem/enterprise-project-code"
232
+ }]
233
+ }
234
+ }
235
+ },
152
236
  {
153
237
  "fullUrl": "https://medplum.com/fhir/CodeSystem/project-feature",
154
238
  "resource": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/definitions",
3
- "version": "5.1.36",
3
+ "version": "5.1.38",
4
4
  "description": "Medplum Data Definitions",
5
5
  "keywords": [
6
6
  "medplum",
@@ -60,6 +60,6 @@
60
60
  "node": "^22.18.0 || >=24.2.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@medplum/fhirtypes": "5.1.36"
63
+ "@medplum/fhirtypes": "5.1.38"
64
64
  }
65
65
  }