@medplum/definitions 5.1.29 → 5.1.31
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.
|
@@ -62097,7 +62097,7 @@
|
|
|
62097
62097
|
"$ref": "#/definitions/string"
|
|
62098
62098
|
},
|
|
62099
62099
|
"email": {
|
|
62100
|
-
"description": "The email address that uniquely identifies the user.",
|
|
62100
|
+
"description": "The email address that uniquely identifies the user. Must be all lowercase.",
|
|
62101
62101
|
"$ref": "#/definitions/string"
|
|
62102
62102
|
},
|
|
62103
62103
|
"emailVerified": {
|
|
@@ -62924,6 +62924,18 @@
|
|
|
62924
62924
|
"IdentityProvider": {
|
|
62925
62925
|
"description": "External Identity Provider (IdP) configuration details.",
|
|
62926
62926
|
"properties": {
|
|
62927
|
+
"issuer": {
|
|
62928
|
+
"description": "Issuer URL for the external Identity Provider.",
|
|
62929
|
+
"$ref": "#/definitions/string"
|
|
62930
|
+
},
|
|
62931
|
+
"audience": {
|
|
62932
|
+
"description": "Expected audience for tokens issued by the external Identity Provider.",
|
|
62933
|
+
"$ref": "#/definitions/string"
|
|
62934
|
+
},
|
|
62935
|
+
"jwksUrl": {
|
|
62936
|
+
"description": "Remote URL for the external Identity Provider JWKS endpoint.",
|
|
62937
|
+
"$ref": "#/definitions/string"
|
|
62938
|
+
},
|
|
62927
62939
|
"authorizeUrl": {
|
|
62928
62940
|
"description": "Remote URL for the external Identity Provider authorize endpoint.",
|
|
62929
62941
|
"$ref": "#/definitions/string"
|
|
@@ -62988,14 +63000,7 @@
|
|
|
62988
63000
|
]
|
|
62989
63001
|
}
|
|
62990
63002
|
},
|
|
62991
|
-
"additionalProperties": false
|
|
62992
|
-
"required": [
|
|
62993
|
-
"authorizeUrl",
|
|
62994
|
-
"tokenUrl",
|
|
62995
|
-
"userInfoUrl",
|
|
62996
|
-
"clientId",
|
|
62997
|
-
"clientSecret"
|
|
62998
|
-
]
|
|
63003
|
+
"additionalProperties": false
|
|
62999
63004
|
},
|
|
63000
63005
|
"ProjectMembership_Access": {
|
|
63001
63006
|
"description": "Extended access configuration using parameterized access policies.",
|
|
@@ -1406,12 +1406,18 @@
|
|
|
1406
1406
|
{
|
|
1407
1407
|
"id" : "User.email",
|
|
1408
1408
|
"path" : "User.email",
|
|
1409
|
-
"definition" : "The email address that uniquely identifies the user.",
|
|
1409
|
+
"definition" : "The email address that uniquely identifies the user. Must be all lowercase.",
|
|
1410
1410
|
"min" : 0,
|
|
1411
1411
|
"max" : "1",
|
|
1412
1412
|
"type" : [{
|
|
1413
1413
|
"code" : "string"
|
|
1414
1414
|
}],
|
|
1415
|
+
"constraint" : [{
|
|
1416
|
+
"key" : "user-1",
|
|
1417
|
+
"severity" : "error",
|
|
1418
|
+
"human" : "Email must be all lowercase",
|
|
1419
|
+
"expression" : "$this = $this.lower()"
|
|
1420
|
+
}],
|
|
1415
1421
|
"base": {
|
|
1416
1422
|
"path" : "User.email",
|
|
1417
1423
|
"min" : 0,
|
|
@@ -5765,18 +5771,63 @@
|
|
|
5765
5771
|
"max" : "*"
|
|
5766
5772
|
}
|
|
5767
5773
|
},
|
|
5774
|
+
{
|
|
5775
|
+
"id" : "IdentityProvider.issuer",
|
|
5776
|
+
"path" : "IdentityProvider.issuer",
|
|
5777
|
+
"definition" : "Issuer URL for the external Identity Provider.",
|
|
5778
|
+
"min" : 0,
|
|
5779
|
+
"max" : "1",
|
|
5780
|
+
"type" : [{
|
|
5781
|
+
"code" : "string"
|
|
5782
|
+
}],
|
|
5783
|
+
"base" : {
|
|
5784
|
+
"path" : "IdentityProvider.issuer",
|
|
5785
|
+
"min" : 0,
|
|
5786
|
+
"max" : "1"
|
|
5787
|
+
}
|
|
5788
|
+
},
|
|
5789
|
+
{
|
|
5790
|
+
"id" : "IdentityProvider.audience",
|
|
5791
|
+
"path" : "IdentityProvider.audience",
|
|
5792
|
+
"definition" : "Expected audience for tokens issued by the external Identity Provider.",
|
|
5793
|
+
"min" : 0,
|
|
5794
|
+
"max" : "1",
|
|
5795
|
+
"type" : [{
|
|
5796
|
+
"code" : "string"
|
|
5797
|
+
}],
|
|
5798
|
+
"base" : {
|
|
5799
|
+
"path" : "IdentityProvider.audience",
|
|
5800
|
+
"min" : 0,
|
|
5801
|
+
"max" : "1"
|
|
5802
|
+
}
|
|
5803
|
+
},
|
|
5804
|
+
{
|
|
5805
|
+
"id" : "IdentityProvider.jwksUrl",
|
|
5806
|
+
"path" : "IdentityProvider.jwksUrl",
|
|
5807
|
+
"definition" : "Remote URL for the external Identity Provider JWKS endpoint.",
|
|
5808
|
+
"min" : 0,
|
|
5809
|
+
"max" : "1",
|
|
5810
|
+
"type" : [{
|
|
5811
|
+
"code" : "string"
|
|
5812
|
+
}],
|
|
5813
|
+
"base" : {
|
|
5814
|
+
"path" : "IdentityProvider.jwksUrl",
|
|
5815
|
+
"min" : 0,
|
|
5816
|
+
"max" : "1"
|
|
5817
|
+
}
|
|
5818
|
+
},
|
|
5768
5819
|
{
|
|
5769
5820
|
"id" : "IdentityProvider.authorizeUrl",
|
|
5770
5821
|
"path" : "IdentityProvider.authorizeUrl",
|
|
5771
5822
|
"definition" : "Remote URL for the external Identity Provider authorize endpoint.",
|
|
5772
|
-
"min" :
|
|
5823
|
+
"min" : 0,
|
|
5773
5824
|
"max" : "1",
|
|
5774
5825
|
"type" : [{
|
|
5775
5826
|
"code" : "string"
|
|
5776
5827
|
}],
|
|
5777
5828
|
"base" : {
|
|
5778
5829
|
"path" : "IdentityProvider.authorizeUrl",
|
|
5779
|
-
"min" :
|
|
5830
|
+
"min" : 0,
|
|
5780
5831
|
"max" : "1"
|
|
5781
5832
|
}
|
|
5782
5833
|
},
|
|
@@ -5784,14 +5835,14 @@
|
|
|
5784
5835
|
"id" : "IdentityProvider.tokenUrl",
|
|
5785
5836
|
"path" : "IdentityProvider.tokenUrl",
|
|
5786
5837
|
"definition" : "Remote URL for the external Identity Provider token endpoint.",
|
|
5787
|
-
"min" :
|
|
5838
|
+
"min" : 0,
|
|
5788
5839
|
"max" : "1",
|
|
5789
5840
|
"type" : [{
|
|
5790
5841
|
"code" : "string"
|
|
5791
5842
|
}],
|
|
5792
5843
|
"base" : {
|
|
5793
5844
|
"path" : "IdentityProvider.tokenUrl",
|
|
5794
|
-
"min" :
|
|
5845
|
+
"min" : 0,
|
|
5795
5846
|
"max" : "1"
|
|
5796
5847
|
}
|
|
5797
5848
|
},
|
|
@@ -5818,14 +5869,14 @@
|
|
|
5818
5869
|
"id" : "IdentityProvider.userInfoUrl",
|
|
5819
5870
|
"path" : "IdentityProvider.userInfoUrl",
|
|
5820
5871
|
"definition" : "Remote URL for the external Identity Provider userinfo endpoint.",
|
|
5821
|
-
"min" :
|
|
5872
|
+
"min" : 0,
|
|
5822
5873
|
"max" : "1",
|
|
5823
5874
|
"type" : [{
|
|
5824
5875
|
"code" : "string"
|
|
5825
5876
|
}],
|
|
5826
5877
|
"base" : {
|
|
5827
5878
|
"path" : "IdentityProvider.userInfoUrl",
|
|
5828
|
-
"min" :
|
|
5879
|
+
"min" : 0,
|
|
5829
5880
|
"max" : "1"
|
|
5830
5881
|
}
|
|
5831
5882
|
},
|
|
@@ -5869,14 +5920,14 @@
|
|
|
5869
5920
|
"id" : "IdentityProvider.clientId",
|
|
5870
5921
|
"path" : "IdentityProvider.clientId",
|
|
5871
5922
|
"definition" : "External Identity Provider client ID.",
|
|
5872
|
-
"min" :
|
|
5923
|
+
"min" : 0,
|
|
5873
5924
|
"max" : "1",
|
|
5874
5925
|
"type" : [{
|
|
5875
5926
|
"code" : "string"
|
|
5876
5927
|
}],
|
|
5877
5928
|
"base" : {
|
|
5878
5929
|
"path" : "IdentityProvider.clientId",
|
|
5879
|
-
"min" :
|
|
5930
|
+
"min" : 0,
|
|
5880
5931
|
"max" : "1"
|
|
5881
5932
|
}
|
|
5882
5933
|
},
|
|
@@ -5884,14 +5935,14 @@
|
|
|
5884
5935
|
"id" : "IdentityProvider.clientSecret",
|
|
5885
5936
|
"path" : "IdentityProvider.clientSecret",
|
|
5886
5937
|
"definition" : "External Identity Provider client secret.",
|
|
5887
|
-
"min" :
|
|
5938
|
+
"min" : 0,
|
|
5888
5939
|
"max" : "1",
|
|
5889
5940
|
"type" : [{
|
|
5890
5941
|
"code" : "string"
|
|
5891
5942
|
}],
|
|
5892
5943
|
"base" : {
|
|
5893
5944
|
"path" : "IdentityProvider.clientSecret",
|
|
5894
|
-
"min" :
|
|
5945
|
+
"min" : 0,
|
|
5895
5946
|
"max" : "1"
|
|
5896
5947
|
}
|
|
5897
5948
|
},
|
|
@@ -9187,6 +9238,289 @@
|
|
|
9187
9238
|
]
|
|
9188
9239
|
}
|
|
9189
9240
|
},
|
|
9241
|
+
{
|
|
9242
|
+
"fullUrl": "https://medplum.com/fhir/OperationDefinition/ConceptMap-translate",
|
|
9243
|
+
"resource": {
|
|
9244
|
+
"resourceType": "OperationDefinition",
|
|
9245
|
+
"url": "http://hl7.org/fhir/OperationDefinition/ConceptMap-translate",
|
|
9246
|
+
"version": "4.0.1 / 5.0.0",
|
|
9247
|
+
"name": "Translate",
|
|
9248
|
+
"title": "Concept Translation",
|
|
9249
|
+
"status": "draft",
|
|
9250
|
+
"kind": "operation",
|
|
9251
|
+
"experimental": false,
|
|
9252
|
+
"description": "Translate a code from one value set to another, based on the specified ConceptMap resource. If no ConceptMap resource is specified, then other additional knowledge available to the server may be used. \\r\\n\\r\\n One (and only one) of the in parameters (sourceCode, sourceCoding, sourceCodeableConcept, targetCode, targetCoding, or targetCodeableConcept) SHALL be provided, to identify the code that is to be translated. \\r\\n\\r\\n The operation returns a set of parameters including a 'result' for whether there is an acceptable match, and a list of possible matches. Note that the list of matches may include notes of codes for which mapping is specifically excluded (i.e. 'not-related-to'), so implementers have to check the target.relationship for each match. If a source* parameter is provided, the $translate operation will return all matches whereby the provided source concept is the source of a mapping relationship (in a specified ConceptMap or otherwise known to the server). If a target* parameter is provided, the $translate operation will return all matches whereby the provided target concept is the target of a mapping relationship (in a specified ConceptMap or otherwise known to the server). Note: The source value set is an optional parameter because in some cases, the client cannot know what the source value set is. However, without a source value set, the server may be unable to safely identify an applicable concept map, and would return an error. For this reason, a source value set SHOULD always be provided. Note that servers may be able to identify an appropriate concept map without a source value set if there is a full mapping for the entire code system in the concept map, or by manual intervention.",
|
|
9253
|
+
"code": "translate",
|
|
9254
|
+
"resource": [ "ConceptMap" ],
|
|
9255
|
+
"system": false,
|
|
9256
|
+
"type": true,
|
|
9257
|
+
"instance": true,
|
|
9258
|
+
"parameter": [
|
|
9259
|
+
{
|
|
9260
|
+
"name": "url",
|
|
9261
|
+
"use": "in",
|
|
9262
|
+
"min": 0,
|
|
9263
|
+
"max": "1",
|
|
9264
|
+
"documentation": "A canonical URL for a concept map. The server must know the concept map (e.g. it is defined explicitly in the server's concept maps, or it is defined implicitly by some code system known to the server.",
|
|
9265
|
+
"type": "uri"
|
|
9266
|
+
},
|
|
9267
|
+
{
|
|
9268
|
+
"name": "source",
|
|
9269
|
+
"use": "in",
|
|
9270
|
+
"min": 0,
|
|
9271
|
+
"max": "1",
|
|
9272
|
+
"documentation": "Identifies the value set used when the concept (system/code pair) was chosen. May be a logical id, or an absolute or relative location. The source value set is an optional parameter because in some cases, the client cannot know what the source value set is. However, without a source value set, the server may be unable to safely identify an applicable concept map, and would return an error. For this reason, a source value set SHOULD always be provided. Note that servers may be able to identify an appropriate concept map without a source value set if there is a full mapping for the entire code system in the concept map, or by manual intervention",
|
|
9273
|
+
"type": "uri"
|
|
9274
|
+
},
|
|
9275
|
+
{
|
|
9276
|
+
"name": "conceptMap",
|
|
9277
|
+
"use": "in",
|
|
9278
|
+
"min": 0,
|
|
9279
|
+
"max": "1",
|
|
9280
|
+
"documentation": "The concept map is provided directly as part of the request. Servers may choose not to accept concept maps in this fashion.",
|
|
9281
|
+
"type": "ConceptMap"
|
|
9282
|
+
},
|
|
9283
|
+
{
|
|
9284
|
+
"name": "code",
|
|
9285
|
+
"use": "in",
|
|
9286
|
+
"min": 0,
|
|
9287
|
+
"max": "1",
|
|
9288
|
+
"documentation": "The code that is to be translated. If a code is provided, a system must be provided",
|
|
9289
|
+
"type": "code"
|
|
9290
|
+
},
|
|
9291
|
+
{
|
|
9292
|
+
"name": "system",
|
|
9293
|
+
"use": "in",
|
|
9294
|
+
"min": 0,
|
|
9295
|
+
"max": "1",
|
|
9296
|
+
"documentation": "The system for the code that is to be translated",
|
|
9297
|
+
"type": "uri"
|
|
9298
|
+
},
|
|
9299
|
+
{
|
|
9300
|
+
"name": "coding",
|
|
9301
|
+
"use": "in",
|
|
9302
|
+
"min": 0,
|
|
9303
|
+
"max": "1",
|
|
9304
|
+
"documentation": "A coding to translate",
|
|
9305
|
+
"type": "Coding"
|
|
9306
|
+
},
|
|
9307
|
+
{
|
|
9308
|
+
"name": "codeableConcept",
|
|
9309
|
+
"use": "in",
|
|
9310
|
+
"min": 0,
|
|
9311
|
+
"max": "1",
|
|
9312
|
+
"documentation": "A full codeableConcept to validate. The server can translate any of the coding values (e.g. existing translations) as it chooses",
|
|
9313
|
+
"type": "CodeableConcept"
|
|
9314
|
+
},
|
|
9315
|
+
{
|
|
9316
|
+
"name": "targetsystem",
|
|
9317
|
+
"use": "in",
|
|
9318
|
+
"min": 0,
|
|
9319
|
+
"max": "1",
|
|
9320
|
+
"documentation": "Identifies a target code system in which a mapping is sought. This parameter is an alternative to the targetScope parameter - only one is required. Searching for any translation to a target code system irrespective of the context (e.g. target valueset) may lead to unsafe results, and it is at the discretion of the server to decide when to support this operation",
|
|
9321
|
+
"type": "uri"
|
|
9322
|
+
},
|
|
9323
|
+
{
|
|
9324
|
+
"name": "result",
|
|
9325
|
+
"use": "out",
|
|
9326
|
+
"min": 1,
|
|
9327
|
+
"max": "1",
|
|
9328
|
+
"documentation": "True if the concept could be translated successfully. The value can only be true if at least one returned match has a relationship other than 'not-related-to'.",
|
|
9329
|
+
"type": "boolean"
|
|
9330
|
+
},
|
|
9331
|
+
{
|
|
9332
|
+
"name": "message",
|
|
9333
|
+
"use": "out",
|
|
9334
|
+
"min": 0,
|
|
9335
|
+
"max": "1",
|
|
9336
|
+
"documentation": "Error details, for display to a human. If this is provided when result = true, the message carries hints and warnings (e.g. a note that the matches could be improved by providing additional detail)",
|
|
9337
|
+
"type": "string"
|
|
9338
|
+
},
|
|
9339
|
+
{
|
|
9340
|
+
"name": "match",
|
|
9341
|
+
"use": "out",
|
|
9342
|
+
"min": 0,
|
|
9343
|
+
"max": "*",
|
|
9344
|
+
"documentation": "A concept in the target value set with a relationship. Note that there may be multiple matches of equal or differing relationships, and the matches may include the 'not-related-to' relationship value which means that there is no translation",
|
|
9345
|
+
"part": [
|
|
9346
|
+
{
|
|
9347
|
+
"name": "equivalence",
|
|
9348
|
+
"use": "out",
|
|
9349
|
+
"min": 0,
|
|
9350
|
+
"max": "1",
|
|
9351
|
+
"documentation": "A code indicating the equivalence of the translation, using values from [ConceptMapEquivalence](valueset-concept-map-equivalence.html)",
|
|
9352
|
+
"type": "code"
|
|
9353
|
+
},
|
|
9354
|
+
{
|
|
9355
|
+
"name": "concept",
|
|
9356
|
+
"use": "out",
|
|
9357
|
+
"min": 0,
|
|
9358
|
+
"max": "1",
|
|
9359
|
+
"documentation": "The translation outcome. Note that this would never have userSelected = true, since the process of translations implies that the user is not selecting the code (and only the client could know differently)",
|
|
9360
|
+
"type": "Coding"
|
|
9361
|
+
},
|
|
9362
|
+
{
|
|
9363
|
+
"name": "property",
|
|
9364
|
+
"use": "out",
|
|
9365
|
+
"min": 0,
|
|
9366
|
+
"max": "*",
|
|
9367
|
+
"documentation": "A property of this mapping (may be used to supply for example, mapping priority, provenance, presentation hints, flag as experimental, and additional documentation)",
|
|
9368
|
+
"part": [
|
|
9369
|
+
{
|
|
9370
|
+
"name": "uri",
|
|
9371
|
+
"use": "out",
|
|
9372
|
+
"min": 1,
|
|
9373
|
+
"max": "1",
|
|
9374
|
+
"documentation": "The uri that identifies the property",
|
|
9375
|
+
"type": "uri"
|
|
9376
|
+
},
|
|
9377
|
+
{
|
|
9378
|
+
"extension": [
|
|
9379
|
+
{
|
|
9380
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9381
|
+
"valueUri": "Coding"
|
|
9382
|
+
},
|
|
9383
|
+
{
|
|
9384
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9385
|
+
"valueUri": "string"
|
|
9386
|
+
},
|
|
9387
|
+
{
|
|
9388
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9389
|
+
"valueUri": "integer"
|
|
9390
|
+
},
|
|
9391
|
+
{
|
|
9392
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9393
|
+
"valueUri": "boolean"
|
|
9394
|
+
},
|
|
9395
|
+
{
|
|
9396
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9397
|
+
"valueUri": "dateTime"
|
|
9398
|
+
},
|
|
9399
|
+
{
|
|
9400
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9401
|
+
"valueUri": "decimal"
|
|
9402
|
+
},
|
|
9403
|
+
{
|
|
9404
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9405
|
+
"valueUri": "code"
|
|
9406
|
+
}
|
|
9407
|
+
],
|
|
9408
|
+
"name": "value",
|
|
9409
|
+
"use": "out",
|
|
9410
|
+
"min": 1,
|
|
9411
|
+
"max": "1",
|
|
9412
|
+
"documentation": "The value of the property",
|
|
9413
|
+
"type": "Element"
|
|
9414
|
+
}
|
|
9415
|
+
]
|
|
9416
|
+
},
|
|
9417
|
+
{
|
|
9418
|
+
"name": "product",
|
|
9419
|
+
"use": "out",
|
|
9420
|
+
"min": 0,
|
|
9421
|
+
"max": "*",
|
|
9422
|
+
"documentation": "A data value to go in an attribute that is the product of this mapping",
|
|
9423
|
+
"part": [
|
|
9424
|
+
{
|
|
9425
|
+
"name": "attribute",
|
|
9426
|
+
"use": "out",
|
|
9427
|
+
"min": 1,
|
|
9428
|
+
"max": "1",
|
|
9429
|
+
"documentation": "The attribute for this product",
|
|
9430
|
+
"type": "uri"
|
|
9431
|
+
},
|
|
9432
|
+
{
|
|
9433
|
+
"extension": [
|
|
9434
|
+
{
|
|
9435
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9436
|
+
"valueUri": "code"
|
|
9437
|
+
},
|
|
9438
|
+
{
|
|
9439
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9440
|
+
"valueUri": "Coding"
|
|
9441
|
+
},
|
|
9442
|
+
{
|
|
9443
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9444
|
+
"valueUri": "string"
|
|
9445
|
+
},
|
|
9446
|
+
{
|
|
9447
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9448
|
+
"valueUri": "boolean"
|
|
9449
|
+
},
|
|
9450
|
+
{
|
|
9451
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9452
|
+
"valueUri": "Quantity"
|
|
9453
|
+
}
|
|
9454
|
+
],
|
|
9455
|
+
"name": "value",
|
|
9456
|
+
"use": "out",
|
|
9457
|
+
"min": 1,
|
|
9458
|
+
"max": "1",
|
|
9459
|
+
"documentation": "The value for this product",
|
|
9460
|
+
"type": "Element"
|
|
9461
|
+
}
|
|
9462
|
+
]
|
|
9463
|
+
},
|
|
9464
|
+
{
|
|
9465
|
+
"name": "dependsOn",
|
|
9466
|
+
"use": "out",
|
|
9467
|
+
"min": 0,
|
|
9468
|
+
"max": "*",
|
|
9469
|
+
"documentation": "An data value in an additional attribute that this mapping depends on",
|
|
9470
|
+
"part": [
|
|
9471
|
+
{
|
|
9472
|
+
"name": "attribute",
|
|
9473
|
+
"use": "out",
|
|
9474
|
+
"min": 1,
|
|
9475
|
+
"max": "1",
|
|
9476
|
+
"documentation": "The attribute for this product",
|
|
9477
|
+
"type": "uri"
|
|
9478
|
+
},
|
|
9479
|
+
{
|
|
9480
|
+
"extension": [
|
|
9481
|
+
{
|
|
9482
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9483
|
+
"valueUri": "code"
|
|
9484
|
+
},
|
|
9485
|
+
{
|
|
9486
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9487
|
+
"valueUri": "Coding"
|
|
9488
|
+
},
|
|
9489
|
+
{
|
|
9490
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9491
|
+
"valueUri": "string"
|
|
9492
|
+
},
|
|
9493
|
+
{
|
|
9494
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9495
|
+
"valueUri": "boolean"
|
|
9496
|
+
},
|
|
9497
|
+
{
|
|
9498
|
+
"url": "http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type",
|
|
9499
|
+
"valueUri": "Quantity"
|
|
9500
|
+
}
|
|
9501
|
+
],
|
|
9502
|
+
"name": "value",
|
|
9503
|
+
"use": "out",
|
|
9504
|
+
"min": 1,
|
|
9505
|
+
"max": "1",
|
|
9506
|
+
"documentation": "The value for this product",
|
|
9507
|
+
"type": "Element"
|
|
9508
|
+
}
|
|
9509
|
+
]
|
|
9510
|
+
},
|
|
9511
|
+
{
|
|
9512
|
+
"name": "originMap",
|
|
9513
|
+
"use": "out",
|
|
9514
|
+
"min": 0,
|
|
9515
|
+
"max": "1",
|
|
9516
|
+
"documentation": "The canonical reference to the concept map from which this mapping comes from",
|
|
9517
|
+
"type": "uri"
|
|
9518
|
+
}
|
|
9519
|
+
]
|
|
9520
|
+
}
|
|
9521
|
+
]
|
|
9522
|
+
}
|
|
9523
|
+
},
|
|
9190
9524
|
{
|
|
9191
9525
|
"fullUrl" : "https://medplum.com/fhir/StructureDefinition/DicomStudy",
|
|
9192
9526
|
"resource" : {
|
|
@@ -298,6 +298,23 @@
|
|
|
298
298
|
"expression": "ClientApplication.name"
|
|
299
299
|
}
|
|
300
300
|
},
|
|
301
|
+
{
|
|
302
|
+
"fullUrl": "https://medplum.com/fhir/SearchParameter/ClientApplication-identity-provider-issuer",
|
|
303
|
+
"resource": {
|
|
304
|
+
"resourceType": "SearchParameter",
|
|
305
|
+
"id": "ClientApplication-identity-provider-issuer",
|
|
306
|
+
"url": "https://medplum.com/fhir/SearchParameter/ClientApplication-identity-provider-issuer",
|
|
307
|
+
"version": "4.0.1",
|
|
308
|
+
"name": "identity-provider-issuer",
|
|
309
|
+
"status": "draft",
|
|
310
|
+
"publisher": "Medplum",
|
|
311
|
+
"description": "The issuer of the client application's identity provider",
|
|
312
|
+
"code": "identity-provider-issuer",
|
|
313
|
+
"base": ["ClientApplication"],
|
|
314
|
+
"type": "string",
|
|
315
|
+
"expression": "ClientApplication.identityProvider.issuer"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
301
318
|
{
|
|
302
319
|
"fullUrl": "https://medplum.com/fhir/SearchParameter/JsonWebKey-active",
|
|
303
320
|
"resource": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medplum/definitions",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.31",
|
|
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.
|
|
63
|
+
"@medplum/fhirtypes": "5.1.31"
|
|
64
64
|
}
|
|
65
65
|
}
|