@medplum/definitions 2.0.29 → 2.0.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.
|
@@ -164,7 +164,8 @@
|
|
|
164
164
|
"BulkDataExport": "#/definitions/BulkDataExport",
|
|
165
165
|
"SmartAppLaunch": "#/definitions/SmartAppLaunch",
|
|
166
166
|
"DomainConfiguration": "#/definitions/DomainConfiguration",
|
|
167
|
-
"AsyncJob": "#/definitions/AsyncJob"
|
|
167
|
+
"AsyncJob": "#/definitions/AsyncJob",
|
|
168
|
+
"Agent": "#/definitions/Agent"
|
|
168
169
|
}
|
|
169
170
|
},
|
|
170
171
|
"oneOf": [
|
|
@@ -647,6 +648,9 @@
|
|
|
647
648
|
},
|
|
648
649
|
{
|
|
649
650
|
"$ref": "#/definitions/AsyncJob"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"$ref": "#/definitions/Agent"
|
|
650
654
|
}
|
|
651
655
|
],
|
|
652
656
|
"definitions": {
|
|
@@ -1131,6 +1135,9 @@
|
|
|
1131
1135
|
},
|
|
1132
1136
|
{
|
|
1133
1137
|
"$ref": "#/definitions/AsyncJob"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"$ref": "#/definitions/Agent"
|
|
1134
1141
|
}
|
|
1135
1142
|
]
|
|
1136
1143
|
},
|
|
@@ -61908,6 +61915,10 @@
|
|
|
61908
61915
|
"$ref": "#/definitions/string"
|
|
61909
61916
|
},
|
|
61910
61917
|
"type": "array"
|
|
61918
|
+
},
|
|
61919
|
+
"writeCriteria": {
|
|
61920
|
+
"description": "Invariants that must be satisfied for the resource to be written.",
|
|
61921
|
+
"$ref": "#/definitions/AccessPolicy_Resource_WriteCriteria"
|
|
61911
61922
|
}
|
|
61912
61923
|
},
|
|
61913
61924
|
"additionalProperties": false,
|
|
@@ -62420,6 +62431,132 @@
|
|
|
62420
62431
|
"requestTime",
|
|
62421
62432
|
"request"
|
|
62422
62433
|
]
|
|
62434
|
+
},
|
|
62435
|
+
"Agent": {
|
|
62436
|
+
"description": "Configuration details for an instance of the Medplum agent application.",
|
|
62437
|
+
"properties": {
|
|
62438
|
+
"resourceType": {
|
|
62439
|
+
"description": "This is a Agent resource",
|
|
62440
|
+
"const": "Agent"
|
|
62441
|
+
},
|
|
62442
|
+
"id": {
|
|
62443
|
+
"description": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
|
|
62444
|
+
"$ref": "#/definitions/id"
|
|
62445
|
+
},
|
|
62446
|
+
"meta": {
|
|
62447
|
+
"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.",
|
|
62448
|
+
"$ref": "#/definitions/Meta"
|
|
62449
|
+
},
|
|
62450
|
+
"implicitRules": {
|
|
62451
|
+
"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.",
|
|
62452
|
+
"$ref": "#/definitions/uri"
|
|
62453
|
+
},
|
|
62454
|
+
"language": {
|
|
62455
|
+
"description": "The base language in which the resource is written.",
|
|
62456
|
+
"$ref": "#/definitions/code"
|
|
62457
|
+
},
|
|
62458
|
+
"name": {
|
|
62459
|
+
"description": "The human readable friendly name of the agent.",
|
|
62460
|
+
"$ref": "#/definitions/string"
|
|
62461
|
+
},
|
|
62462
|
+
"status": {
|
|
62463
|
+
"description": "The status of the agent.",
|
|
62464
|
+
"enum": [
|
|
62465
|
+
"active",
|
|
62466
|
+
"off",
|
|
62467
|
+
"error"
|
|
62468
|
+
]
|
|
62469
|
+
},
|
|
62470
|
+
"device": {
|
|
62471
|
+
"description": "Optional device resource representing the device running the agent.",
|
|
62472
|
+
"$ref": "#/definitions/Reference"
|
|
62473
|
+
},
|
|
62474
|
+
"setting": {
|
|
62475
|
+
"description": "The settings for the agent.",
|
|
62476
|
+
"items": {
|
|
62477
|
+
"$ref": "#/definitions/Agent_Setting"
|
|
62478
|
+
},
|
|
62479
|
+
"type": "array"
|
|
62480
|
+
},
|
|
62481
|
+
"channel": {
|
|
62482
|
+
"description": "Details where to send notifications when resources are received that meet the criteria.",
|
|
62483
|
+
"items": {
|
|
62484
|
+
"$ref": "#/definitions/Agent_Channel"
|
|
62485
|
+
},
|
|
62486
|
+
"type": "array"
|
|
62487
|
+
}
|
|
62488
|
+
},
|
|
62489
|
+
"additionalProperties": false,
|
|
62490
|
+
"required": [
|
|
62491
|
+
"resourceType",
|
|
62492
|
+
"name",
|
|
62493
|
+
"status",
|
|
62494
|
+
"channel"
|
|
62495
|
+
]
|
|
62496
|
+
},
|
|
62497
|
+
"Agent_Channel": {
|
|
62498
|
+
"description": "Details where to send notifications when resources are received that meet the criteria.",
|
|
62499
|
+
"properties": {
|
|
62500
|
+
"endpoint": {
|
|
62501
|
+
"description": "The channel endpoint definition including protocol and network binding details.",
|
|
62502
|
+
"$ref": "#/definitions/Reference"
|
|
62503
|
+
},
|
|
62504
|
+
"targetReference": {
|
|
62505
|
+
"description": "The target resource where channel messages will be delivered.",
|
|
62506
|
+
"$ref": "#/definitions/Reference"
|
|
62507
|
+
},
|
|
62508
|
+
"targetUrl": {
|
|
62509
|
+
"description": "The target resource where channel messages will be delivered.",
|
|
62510
|
+
"$ref": "#/definitions/url"
|
|
62511
|
+
}
|
|
62512
|
+
},
|
|
62513
|
+
"additionalProperties": false,
|
|
62514
|
+
"required": [
|
|
62515
|
+
"endpoint"
|
|
62516
|
+
]
|
|
62517
|
+
},
|
|
62518
|
+
"Agent_Setting": {
|
|
62519
|
+
"description": "The settings for the agent.",
|
|
62520
|
+
"properties": {
|
|
62521
|
+
"name": {
|
|
62522
|
+
"description": "The setting name.",
|
|
62523
|
+
"$ref": "#/definitions/string"
|
|
62524
|
+
},
|
|
62525
|
+
"valueString": {
|
|
62526
|
+
"description": "The setting value.",
|
|
62527
|
+
"$ref": "#/definitions/string"
|
|
62528
|
+
},
|
|
62529
|
+
"valueBoolean": {
|
|
62530
|
+
"description": "The setting value.",
|
|
62531
|
+
"$ref": "#/definitions/boolean"
|
|
62532
|
+
},
|
|
62533
|
+
"valueDecimal": {
|
|
62534
|
+
"description": "The setting value.",
|
|
62535
|
+
"$ref": "#/definitions/decimal"
|
|
62536
|
+
},
|
|
62537
|
+
"valueInteger": {
|
|
62538
|
+
"description": "The setting value.",
|
|
62539
|
+
"$ref": "#/definitions/integer"
|
|
62540
|
+
}
|
|
62541
|
+
},
|
|
62542
|
+
"additionalProperties": false,
|
|
62543
|
+
"required": [
|
|
62544
|
+
"name"
|
|
62545
|
+
]
|
|
62546
|
+
},
|
|
62547
|
+
"AccessPolicy_Resource_WriteCriteria": {
|
|
62548
|
+
"description": "Invariants that must be satisfied for the resource to be written.",
|
|
62549
|
+
"properties": {
|
|
62550
|
+
"pre": {
|
|
62551
|
+
"description": "Invariant to check against the state of the resource before modification.",
|
|
62552
|
+
"$ref": "#/definitions/string"
|
|
62553
|
+
},
|
|
62554
|
+
"post": {
|
|
62555
|
+
"description": "Invariant to check against the state of the resource with modifications tentatively applied.",
|
|
62556
|
+
"$ref": "#/definitions/string"
|
|
62557
|
+
}
|
|
62558
|
+
},
|
|
62559
|
+
"additionalProperties": false
|
|
62423
62560
|
}
|
|
62424
62561
|
}
|
|
62425
62562
|
}
|
|
@@ -2642,6 +2642,51 @@
|
|
|
2642
2642
|
"max" : "*"
|
|
2643
2643
|
}
|
|
2644
2644
|
},
|
|
2645
|
+
{
|
|
2646
|
+
"id" : "AccessPolicy.resource.writeCriteria",
|
|
2647
|
+
"path" : "AccessPolicy.resource.writeCriteria",
|
|
2648
|
+
"definition" : "Invariants that must be satisfied for the resource to be written.",
|
|
2649
|
+
"min" : 0,
|
|
2650
|
+
"max" : "1",
|
|
2651
|
+
"type" : [{
|
|
2652
|
+
"code" : "BackboneElement"
|
|
2653
|
+
}],
|
|
2654
|
+
"base" : {
|
|
2655
|
+
"path" : "AccessPolicy.resource.writeCriteria",
|
|
2656
|
+
"min" : 0,
|
|
2657
|
+
"max" : "1"
|
|
2658
|
+
}
|
|
2659
|
+
},
|
|
2660
|
+
{
|
|
2661
|
+
"id" : "AccessPolicy.resource.writeCriteria.pre",
|
|
2662
|
+
"path" : "AccessPolicy.resource.writeCriteria.pre",
|
|
2663
|
+
"definition" : "Invariant to check against the state of the resource before modification.",
|
|
2664
|
+
"min" : 0,
|
|
2665
|
+
"max" : "1",
|
|
2666
|
+
"type" : [{
|
|
2667
|
+
"code" : "string"
|
|
2668
|
+
}],
|
|
2669
|
+
"base" : {
|
|
2670
|
+
"path" : "AccessPolicy.resource.writeCriteria.pre",
|
|
2671
|
+
"min" : 0,
|
|
2672
|
+
"max" : "1"
|
|
2673
|
+
}
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
"id" : "AccessPolicy.resource.writeCriteria.post",
|
|
2677
|
+
"path" : "AccessPolicy.resource.writeCriteria.post",
|
|
2678
|
+
"definition" : "Invariant to check against the state of the resource with modifications tentatively applied.",
|
|
2679
|
+
"min" : 0,
|
|
2680
|
+
"max" : "1",
|
|
2681
|
+
"type" : [{
|
|
2682
|
+
"code" : "string"
|
|
2683
|
+
}],
|
|
2684
|
+
"base" : {
|
|
2685
|
+
"path" : "AccessPolicy.resource.writeCriteria.post",
|
|
2686
|
+
"min" : 0,
|
|
2687
|
+
"max" : "1"
|
|
2688
|
+
}
|
|
2689
|
+
},
|
|
2645
2690
|
{
|
|
2646
2691
|
"id" : "AccessPolicy.ipAccessRule",
|
|
2647
2692
|
"path" : "AccessPolicy.ipAccessRule",
|
|
@@ -3849,5 +3894,254 @@
|
|
|
3849
3894
|
]
|
|
3850
3895
|
}
|
|
3851
3896
|
}
|
|
3897
|
+
},
|
|
3898
|
+
{
|
|
3899
|
+
"fullUrl" : "https://medplum.com/fhir/StructureDefinition/Agent",
|
|
3900
|
+
"resource" : {
|
|
3901
|
+
"resourceType" : "StructureDefinition",
|
|
3902
|
+
"id" : "Agent",
|
|
3903
|
+
"name" : "Agent",
|
|
3904
|
+
"url" : "https://medplum.com/fhir/StructureDefinition/Agent",
|
|
3905
|
+
"status" : "active",
|
|
3906
|
+
"kind" : "resource",
|
|
3907
|
+
"abstract" : false,
|
|
3908
|
+
"type" : "Agent",
|
|
3909
|
+
"baseDefinition" : "http://hl7.org/fhir/StructureDefinition/DomainResource",
|
|
3910
|
+
"description" : "Configuration details for an instance of the Medplum agent application.",
|
|
3911
|
+
"snapshot" : {
|
|
3912
|
+
"element" : [
|
|
3913
|
+
{
|
|
3914
|
+
"id" : "Agent",
|
|
3915
|
+
"path" : "Agent",
|
|
3916
|
+
"short" : "Configuration details for an instance of the Medplum agent application.",
|
|
3917
|
+
"definition" : "Configuration details for an instance of the Medplum agent application.",
|
|
3918
|
+
"min" : 0,
|
|
3919
|
+
"max" : "*",
|
|
3920
|
+
"base": {
|
|
3921
|
+
"path" : "Agent",
|
|
3922
|
+
"min" : 0,
|
|
3923
|
+
"max" : "*"
|
|
3924
|
+
}
|
|
3925
|
+
},
|
|
3926
|
+
{
|
|
3927
|
+
"id" : "Agent.id",
|
|
3928
|
+
"path" : "Agent.id",
|
|
3929
|
+
"short" : "Logical id of this artifact",
|
|
3930
|
+
"definition" : "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
|
|
3931
|
+
"min" : 0,
|
|
3932
|
+
"max" : "1",
|
|
3933
|
+
"base" : {
|
|
3934
|
+
"path" : "Resource.id",
|
|
3935
|
+
"min" : 0,
|
|
3936
|
+
"max" : "1"
|
|
3937
|
+
},
|
|
3938
|
+
"type" : [{
|
|
3939
|
+
"code" : "string"
|
|
3940
|
+
}]
|
|
3941
|
+
},
|
|
3942
|
+
{
|
|
3943
|
+
"id" : "Agent.meta",
|
|
3944
|
+
"path" : "Agent.meta",
|
|
3945
|
+
"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.",
|
|
3946
|
+
"min" : 0,
|
|
3947
|
+
"max" : "1",
|
|
3948
|
+
"base" : {
|
|
3949
|
+
"path" : "Resource.meta",
|
|
3950
|
+
"min" : 0,
|
|
3951
|
+
"max" : "1"
|
|
3952
|
+
},
|
|
3953
|
+
"type" : [{
|
|
3954
|
+
"code" : "Meta"
|
|
3955
|
+
}]
|
|
3956
|
+
},
|
|
3957
|
+
{
|
|
3958
|
+
"id" : "Agent.implicitRules",
|
|
3959
|
+
"path" : "Agent.implicitRules",
|
|
3960
|
+
"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.",
|
|
3961
|
+
"min" : 0,
|
|
3962
|
+
"max" : "1",
|
|
3963
|
+
"base" : {
|
|
3964
|
+
"path" : "Resource.implicitRules",
|
|
3965
|
+
"min" : 0,
|
|
3966
|
+
"max" : "1"
|
|
3967
|
+
},
|
|
3968
|
+
"type" : [{
|
|
3969
|
+
"code" : "uri"
|
|
3970
|
+
}]
|
|
3971
|
+
},
|
|
3972
|
+
{
|
|
3973
|
+
"id" : "Agent.language",
|
|
3974
|
+
"path" : "Agent.language",
|
|
3975
|
+
"definition" : "The base language in which the resource is written.",
|
|
3976
|
+
"min" : 0,
|
|
3977
|
+
"max" : "1",
|
|
3978
|
+
"base" : {
|
|
3979
|
+
"path" : "Resource.language",
|
|
3980
|
+
"min" : 0,
|
|
3981
|
+
"max" : "1"
|
|
3982
|
+
},
|
|
3983
|
+
"type" : [{
|
|
3984
|
+
"code" : "code"
|
|
3985
|
+
}]
|
|
3986
|
+
},
|
|
3987
|
+
{
|
|
3988
|
+
"id" : "Agent.name",
|
|
3989
|
+
"path" : "Agent.name",
|
|
3990
|
+
"short" : "The human readable friendly name of the agent.",
|
|
3991
|
+
"definition" : "The human readable friendly name of the agent.",
|
|
3992
|
+
"min" : 1,
|
|
3993
|
+
"max" : "1",
|
|
3994
|
+
"base" : {
|
|
3995
|
+
"path" : "Agent.name",
|
|
3996
|
+
"min" : 1,
|
|
3997
|
+
"max" : "1"
|
|
3998
|
+
},
|
|
3999
|
+
"type" : [{
|
|
4000
|
+
"code" : "string"
|
|
4001
|
+
}]
|
|
4002
|
+
},
|
|
4003
|
+
{
|
|
4004
|
+
"id" : "Agent.status",
|
|
4005
|
+
"path" : "Agent.status",
|
|
4006
|
+
"short" : "active | off | error",
|
|
4007
|
+
"definition" : "The status of the agent.",
|
|
4008
|
+
"min" : 1,
|
|
4009
|
+
"max" : "1",
|
|
4010
|
+
"base" : {
|
|
4011
|
+
"path" : "Agent.status",
|
|
4012
|
+
"min" : 1,
|
|
4013
|
+
"max" : "1"
|
|
4014
|
+
},
|
|
4015
|
+
"type" : [{
|
|
4016
|
+
"code" : "code"
|
|
4017
|
+
}],
|
|
4018
|
+
"binding" : {
|
|
4019
|
+
"strength" : "required",
|
|
4020
|
+
"valueSet" : "https://medplum.com/fhir/ValueSet/agent-status|4.0.1"
|
|
4021
|
+
}
|
|
4022
|
+
},
|
|
4023
|
+
{
|
|
4024
|
+
"id" : "Agent.device",
|
|
4025
|
+
"path" : "Agent.device",
|
|
4026
|
+
"definition" : "Optional device resource representing the device running the agent.",
|
|
4027
|
+
"min" : 0,
|
|
4028
|
+
"max" : "1",
|
|
4029
|
+
"type" : [{
|
|
4030
|
+
"code" : "Reference",
|
|
4031
|
+
"targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Device"]
|
|
4032
|
+
}],
|
|
4033
|
+
"base" : {
|
|
4034
|
+
"path" : "Agent.device",
|
|
4035
|
+
"min" : 0,
|
|
4036
|
+
"max" : "1"
|
|
4037
|
+
}
|
|
4038
|
+
},
|
|
4039
|
+
{
|
|
4040
|
+
"id" : "Agent.setting",
|
|
4041
|
+
"path" : "Agent.setting",
|
|
4042
|
+
"definition" : "The settings for the agent.",
|
|
4043
|
+
"min" : 0,
|
|
4044
|
+
"max" : "*",
|
|
4045
|
+
"type" : [{
|
|
4046
|
+
"code" : "BackboneElement"
|
|
4047
|
+
}],
|
|
4048
|
+
"base" : {
|
|
4049
|
+
"path" : "Agent.setting",
|
|
4050
|
+
"min" : 0,
|
|
4051
|
+
"max" : "*"
|
|
4052
|
+
}
|
|
4053
|
+
},
|
|
4054
|
+
{
|
|
4055
|
+
"id" : "Agent.setting.name",
|
|
4056
|
+
"path" : "Agent.setting.name",
|
|
4057
|
+
"definition" : "The setting name.",
|
|
4058
|
+
"min" : 1,
|
|
4059
|
+
"max" : "1",
|
|
4060
|
+
"type" : [{
|
|
4061
|
+
"code" : "string"
|
|
4062
|
+
}],
|
|
4063
|
+
"base" : {
|
|
4064
|
+
"path" : "Agent.setting.name",
|
|
4065
|
+
"min" : 1,
|
|
4066
|
+
"max" : "1"
|
|
4067
|
+
}
|
|
4068
|
+
},
|
|
4069
|
+
{
|
|
4070
|
+
"id" : "Agent.setting.value[x]",
|
|
4071
|
+
"path" : "Agent.setting.value[x]",
|
|
4072
|
+
"definition" : "The setting value.",
|
|
4073
|
+
"min" : 1,
|
|
4074
|
+
"max" : "1",
|
|
4075
|
+
"type" : [{
|
|
4076
|
+
"code" : "string"
|
|
4077
|
+
},
|
|
4078
|
+
{
|
|
4079
|
+
"code" : "boolean"
|
|
4080
|
+
},
|
|
4081
|
+
{
|
|
4082
|
+
"code" : "decimal"
|
|
4083
|
+
},
|
|
4084
|
+
{
|
|
4085
|
+
"code" : "integer"
|
|
4086
|
+
}],
|
|
4087
|
+
"base" : {
|
|
4088
|
+
"path" : "Agent.setting.value[x]",
|
|
4089
|
+
"min" : 1,
|
|
4090
|
+
"max" : "1"
|
|
4091
|
+
}
|
|
4092
|
+
},
|
|
4093
|
+
{
|
|
4094
|
+
"id" : "Agent.channel",
|
|
4095
|
+
"path" : "Agent.channel",
|
|
4096
|
+
"short" : "The channel on which to report matches to the criteria",
|
|
4097
|
+
"definition" : "Details where to send notifications when resources are received that meet the criteria.",
|
|
4098
|
+
"min" : 1,
|
|
4099
|
+
"max" : "*",
|
|
4100
|
+
"base" : {
|
|
4101
|
+
"path" : "Agent.channel",
|
|
4102
|
+
"min" : 1,
|
|
4103
|
+
"max" : "*"
|
|
4104
|
+
},
|
|
4105
|
+
"type" : [{
|
|
4106
|
+
"code" : "BackboneElement"
|
|
4107
|
+
}]
|
|
4108
|
+
},
|
|
4109
|
+
{
|
|
4110
|
+
"id" : "Agent.channel.endpoint",
|
|
4111
|
+
"path" : "Agent.channel.endpoint",
|
|
4112
|
+
"definition" : "The channel endpoint definition including protocol and network binding details.",
|
|
4113
|
+
"min" : 1,
|
|
4114
|
+
"max" : "1",
|
|
4115
|
+
"type" : [{
|
|
4116
|
+
"code" : "Reference",
|
|
4117
|
+
"targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Endpoint"]
|
|
4118
|
+
}],
|
|
4119
|
+
"base" : {
|
|
4120
|
+
"path" : "Agent.channel.endpoint",
|
|
4121
|
+
"min" : 1,
|
|
4122
|
+
"max" : "1"
|
|
4123
|
+
}
|
|
4124
|
+
},
|
|
4125
|
+
{
|
|
4126
|
+
"id" : "Agent.channel.target[x]",
|
|
4127
|
+
"path" : "Agent.channel.target[x]",
|
|
4128
|
+
"definition" : "The target resource where channel messages will be delivered.",
|
|
4129
|
+
"min" : 1,
|
|
4130
|
+
"max" : "1",
|
|
4131
|
+
"type" : [{
|
|
4132
|
+
"code" : "Reference",
|
|
4133
|
+
"targetProfile" : ["https://medplum.com/fhir/StructureDefinition/Bot"]
|
|
4134
|
+
}, {
|
|
4135
|
+
"code" : "url"
|
|
4136
|
+
}],
|
|
4137
|
+
"base" : {
|
|
4138
|
+
"path" : "Agent.channel.target[x]",
|
|
4139
|
+
"min" : 1,
|
|
4140
|
+
"max" : "1"
|
|
4141
|
+
}
|
|
4142
|
+
}
|
|
4143
|
+
]
|
|
4144
|
+
}
|
|
4145
|
+
}
|
|
3852
4146
|
}]
|
|
3853
4147
|
}
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"id": "Project-owner",
|
|
28
28
|
"url": "https://medplum.com/fhir/SearchParameter/Project-owner",
|
|
29
29
|
"version": "4.0.1",
|
|
30
|
-
"name": "
|
|
30
|
+
"name": "owner",
|
|
31
31
|
"status": "draft",
|
|
32
32
|
"publisher": "Medplum",
|
|
33
33
|
"description": "The user who owns the project",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"id": "Project-google-client-id",
|
|
46
46
|
"url": "https://medplum.com/fhir/SearchParameter/Project-google-client-id",
|
|
47
47
|
"version": "4.0.1",
|
|
48
|
-
"name": "
|
|
48
|
+
"name": "google-client-id",
|
|
49
49
|
"status": "draft",
|
|
50
50
|
"publisher": "Medplum",
|
|
51
51
|
"description": "The Google Client ID of the project",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"id": "Project-recaptcha-site-key",
|
|
63
63
|
"url": "https://medplum.com/fhir/SearchParameter/Project-recaptcha-site-key",
|
|
64
64
|
"version": "4.0.1",
|
|
65
|
-
"name": "
|
|
65
|
+
"name": "recaptcha-site-key",
|
|
66
66
|
"status": "draft",
|
|
67
67
|
"publisher": "Medplum",
|
|
68
68
|
"description": "The reCAPTCHA site key of the project",
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"id": "Login-user",
|
|
272
272
|
"url": "https://medplum.com/fhir/SearchParameter/Login-user",
|
|
273
273
|
"version": "4.0.1",
|
|
274
|
-
"name": "
|
|
274
|
+
"name": "user",
|
|
275
275
|
"status": "draft",
|
|
276
276
|
"publisher": "Medplum",
|
|
277
277
|
"description": "The user of the login",
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
"id": "Bot-identifier",
|
|
324
324
|
"url": "https://medplum.com/fhir/SearchParameter/Bot-identifier",
|
|
325
325
|
"version": "4.0.1",
|
|
326
|
-
"name": "
|
|
326
|
+
"name": "identifier",
|
|
327
327
|
"status": "draft",
|
|
328
328
|
"publisher": "Medplum",
|
|
329
329
|
"description": "The identifier of the bot",
|
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
"id": "BulkDataExport-status",
|
|
409
409
|
"url": "https://medplum.com/fhir/SearchParameter/BulkDataExport-status",
|
|
410
410
|
"version": "4.0.1",
|
|
411
|
-
"name": "
|
|
411
|
+
"name": "status",
|
|
412
412
|
"status": "draft",
|
|
413
413
|
"publisher": "Medplum",
|
|
414
414
|
"description": "The name of the access policy",
|
|
@@ -419,7 +419,7 @@
|
|
|
419
419
|
}
|
|
420
420
|
},
|
|
421
421
|
{
|
|
422
|
-
"fullUrl": "
|
|
422
|
+
"fullUrl": "https://medplum.com/fhir/SearchParameter/ObservationDefinition-code",
|
|
423
423
|
"resource": {
|
|
424
424
|
"resourceType": "SearchParameter",
|
|
425
425
|
"id": "OperationDefinition-code",
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
}
|
|
437
437
|
},
|
|
438
438
|
{
|
|
439
|
-
"fullUrl": "
|
|
439
|
+
"fullUrl": "https://medplum.com/fhir/SearchParameter/ObservationDefinition-publisher",
|
|
440
440
|
"resource": {
|
|
441
441
|
"resourceType": "SearchParameter",
|
|
442
442
|
"id": "OperationDefinition-publisher",
|
|
@@ -454,13 +454,13 @@
|
|
|
454
454
|
}
|
|
455
455
|
},
|
|
456
456
|
{
|
|
457
|
-
"fullUrl": "
|
|
457
|
+
"fullUrl": "https://medplum.com/fhir/SearchParameter/DomainConfiguration-domain",
|
|
458
458
|
"resource": {
|
|
459
459
|
"resourceType": "SearchParameter",
|
|
460
460
|
"id": "DomainConfiguration-domain",
|
|
461
461
|
"url": "https://medplum.com/fhir/SearchParameter/DomainConfiguration-domain",
|
|
462
462
|
"version": "4.0.1",
|
|
463
|
-
"name": "
|
|
463
|
+
"name": "domain",
|
|
464
464
|
"status": "draft",
|
|
465
465
|
"publisher": "Medplum",
|
|
466
466
|
"description": "The publisher of the observation definition.",
|
|
@@ -471,13 +471,13 @@
|
|
|
471
471
|
}
|
|
472
472
|
},
|
|
473
473
|
{
|
|
474
|
-
"fullUrl": "
|
|
474
|
+
"fullUrl": "https://medplum.com/fhir/SearchParameter/PasswordChangeRequest-user",
|
|
475
475
|
"resource": {
|
|
476
476
|
"resourceType": "SearchParameter",
|
|
477
477
|
"id": "PasswordChangeRequest-user",
|
|
478
478
|
"url": "https://medplum.com/fhir/SearchParameter/PasswordChangeRequest-user",
|
|
479
479
|
"version": "4.0.1",
|
|
480
|
-
"name": "
|
|
480
|
+
"name": "user",
|
|
481
481
|
"status": "draft",
|
|
482
482
|
"publisher": "Medplum",
|
|
483
483
|
"description": "The user for the password change request.",
|
|
@@ -489,11 +489,11 @@
|
|
|
489
489
|
}
|
|
490
490
|
},
|
|
491
491
|
{
|
|
492
|
-
"fullUrl": "
|
|
492
|
+
"fullUrl": "https://medplum.com/fhir/SearchParameter/Task-due-date",
|
|
493
493
|
"resource": {
|
|
494
494
|
"resourceType": "SearchParameter",
|
|
495
495
|
"id": "Task-due-date",
|
|
496
|
-
"url": "
|
|
496
|
+
"url": "https://medplum.com/fhir/SearchParameter/Task-due-date",
|
|
497
497
|
"version": "4.0.1",
|
|
498
498
|
"name": "due-date",
|
|
499
499
|
"status": "draft",
|
|
@@ -505,6 +505,40 @@
|
|
|
505
505
|
"expression": "Task.restriction.period",
|
|
506
506
|
"comparator": ["eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap"]
|
|
507
507
|
}
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"fullUrl": "https://medplum.com/fhir/SearchParameter/Agent-name",
|
|
511
|
+
"resource": {
|
|
512
|
+
"resourceType": "SearchParameter",
|
|
513
|
+
"id": "Agent-name",
|
|
514
|
+
"url": "https://medplum.com/fhir/SearchParameter/Agent-name",
|
|
515
|
+
"version": "4.0.1",
|
|
516
|
+
"name": "name",
|
|
517
|
+
"status": "draft",
|
|
518
|
+
"publisher": "Medplum",
|
|
519
|
+
"description": "Search for Agent by name",
|
|
520
|
+
"code": "name",
|
|
521
|
+
"base": ["Agent"],
|
|
522
|
+
"type": "string",
|
|
523
|
+
"expression": "Agent.name"
|
|
524
|
+
}
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"fullUrl": "https://medplum.com/fhir/SearchParameter/Agent-status",
|
|
528
|
+
"resource": {
|
|
529
|
+
"resourceType": "SearchParameter",
|
|
530
|
+
"id": "Agent-status",
|
|
531
|
+
"url": "https://medplum.com/fhir/SearchParameter/Agent-status",
|
|
532
|
+
"version": "4.0.1",
|
|
533
|
+
"name": "status",
|
|
534
|
+
"status": "draft",
|
|
535
|
+
"publisher": "Medplum",
|
|
536
|
+
"description": "Search for Agent by status",
|
|
537
|
+
"code": "status",
|
|
538
|
+
"base": ["Agent"],
|
|
539
|
+
"type": "token",
|
|
540
|
+
"expression": "Agent.status"
|
|
541
|
+
}
|
|
508
542
|
}
|
|
509
543
|
]
|
|
510
544
|
}
|
|
@@ -2,6 +2,118 @@
|
|
|
2
2
|
"resourceType": "Bundle",
|
|
3
3
|
"type": "collection",
|
|
4
4
|
"entry": [
|
|
5
|
+
{
|
|
6
|
+
"fullUrl": "https://medplum.com/fhir/CodeSystem/resource-types",
|
|
7
|
+
"resource": {
|
|
8
|
+
"resourceType": "CodeSystem",
|
|
9
|
+
"id": "resource-types",
|
|
10
|
+
"url": "https://medplum.com/fhir/CodeSystem/resource-types",
|
|
11
|
+
"status": "active",
|
|
12
|
+
"valueSet": "https://medplum.com/fhir/ValueSet/resource-types",
|
|
13
|
+
"content": "complete",
|
|
14
|
+
"concept": [
|
|
15
|
+
{
|
|
16
|
+
"code": "AccessPolicy",
|
|
17
|
+
"display": "AccessPolicy",
|
|
18
|
+
"definition": "Access Policy for user or user group that defines how entities can or cannot access resources."
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"code": "Agent",
|
|
22
|
+
"display": "Agent",
|
|
23
|
+
"definition": "Configuration details for an instance of the Medplum agent application."
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"code": "AsyncJob",
|
|
27
|
+
"display": "AsyncJob",
|
|
28
|
+
"definition": "Contains details of long running asynchronous/background jobs."
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"code": "Bot",
|
|
32
|
+
"display": "Bot",
|
|
33
|
+
"definition": "Bot account for automated actions."
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"code": "BulkDataExport",
|
|
37
|
+
"display": "BulkDataExport",
|
|
38
|
+
"definition": "User specific configuration for the Medplum application."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"code": "ClientApplication",
|
|
42
|
+
"display": "ClientApplication",
|
|
43
|
+
"definition": "Medplum client application for automated access."
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"code": "DomainConfiguration",
|
|
47
|
+
"display": "DomainConfiguration",
|
|
48
|
+
"definition": "Domain specific configuration for the Medplum application."
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"code": "IdentityProvider",
|
|
52
|
+
"display": "IdentityProvider",
|
|
53
|
+
"definition": "External Identity Provider (IdP) configuration details."
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"code": "JsonWebKey",
|
|
57
|
+
"display": "JsonWebKey",
|
|
58
|
+
"definition": "A JSON object that represents a cryptographic key. The members of the object represent properties of the key, including its value."
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"code": "Login",
|
|
62
|
+
"display": "Login",
|
|
63
|
+
"definition": "Login event and session details."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"code": "PasswordChangeRequest",
|
|
67
|
+
"display": "PasswordChangeRequest",
|
|
68
|
+
"definition": "Password change request for the 'forgot password' flow."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"code": "Project",
|
|
72
|
+
"display": "Project",
|
|
73
|
+
"definition": "Encapsulation of resources for a specific project or organization."
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"code": "ProjectMembership",
|
|
77
|
+
"display": "ProjectMembership",
|
|
78
|
+
"definition": "Medplum project membership. A project membership grants a user access to a project."
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"code": "SmartAppLaunch",
|
|
82
|
+
"display": "SmartAppLaunch",
|
|
83
|
+
"definition": "This resource contains context details for a SMART App Launch."
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"code": "User",
|
|
87
|
+
"display": "User",
|
|
88
|
+
"definition": "Representation of a human user of the system."
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"code": "UserConfiguration",
|
|
92
|
+
"display": "UserConfiguration",
|
|
93
|
+
"definition": "User specific configuration for the Medplum application."
|
|
94
|
+
}
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"fullUrl": "https://medplum.com/fhir/ValueSet/resource-types",
|
|
100
|
+
"resource": {
|
|
101
|
+
"resourceType": "ValueSet",
|
|
102
|
+
"id": "resource-types",
|
|
103
|
+
"url": "https://medplum.com/fhir/ValueSet/resource-types",
|
|
104
|
+
"status": "active",
|
|
105
|
+
"compose": {
|
|
106
|
+
"include": [
|
|
107
|
+
{
|
|
108
|
+
"system": "http://hl7.org/fhir/resource-types"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"system": "https://medplum.com/fhir/CodeSystem/resource-types"
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
},
|
|
5
117
|
{
|
|
6
118
|
"fullUrl": "https://medplum.com/fhir/CodeSystem/project-feature",
|
|
7
119
|
"resource": {
|
|
@@ -368,6 +480,94 @@
|
|
|
368
480
|
]
|
|
369
481
|
}
|
|
370
482
|
}
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"fullUrl": "https://medplum.com/fhir/CodeSystem/agent-status",
|
|
486
|
+
"resource": {
|
|
487
|
+
"resourceType": "CodeSystem",
|
|
488
|
+
"id": "agent-status",
|
|
489
|
+
"url": "https://medplum.com/fhir/CodeSystem/agent-status",
|
|
490
|
+
"status": "active",
|
|
491
|
+
"valueSet": "https://medplum.com/fhir/ValueSet/agent-status",
|
|
492
|
+
"content": "complete",
|
|
493
|
+
"concept": [
|
|
494
|
+
{
|
|
495
|
+
"code": "active",
|
|
496
|
+
"display": "Active",
|
|
497
|
+
"definition": "Active"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"code": "off",
|
|
501
|
+
"display": "Off",
|
|
502
|
+
"definition": "Off"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"code": "error",
|
|
506
|
+
"display": "Error",
|
|
507
|
+
"definition": "Error"
|
|
508
|
+
}
|
|
509
|
+
]
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"fullUrl": "https://medplum.com/fhir/ValueSet/agent-status",
|
|
514
|
+
"resource": {
|
|
515
|
+
"resourceType": "ValueSet",
|
|
516
|
+
"id": "agent-status",
|
|
517
|
+
"url": "https://medplum.com/fhir/ValueSet/agent-status",
|
|
518
|
+
"status": "active",
|
|
519
|
+
"compose": {
|
|
520
|
+
"include": [
|
|
521
|
+
{
|
|
522
|
+
"system": "https://medplum.com/fhir/CodeSystem/agent-status"
|
|
523
|
+
}
|
|
524
|
+
]
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"fullUrl": "https://medplum.com/fhir/CodeSystem/agent-channel-protocol",
|
|
530
|
+
"resource": {
|
|
531
|
+
"resourceType": "CodeSystem",
|
|
532
|
+
"id": "agent-channel-protocol",
|
|
533
|
+
"url": "https://medplum.com/fhir/CodeSystem/agent-channel-protocol",
|
|
534
|
+
"status": "active",
|
|
535
|
+
"valueSet": "https://medplum.com/fhir/ValueSet/agent-channel-protocol",
|
|
536
|
+
"content": "complete",
|
|
537
|
+
"concept": [
|
|
538
|
+
{
|
|
539
|
+
"code": "astm",
|
|
540
|
+
"display": "ASTM",
|
|
541
|
+
"definition": "ASTM"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"code": "dicom",
|
|
545
|
+
"display": "DICOM",
|
|
546
|
+
"definition": "DICOM"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"code": "hl7-mllp",
|
|
550
|
+
"display": "HL7 MLLP",
|
|
551
|
+
"definition": "HL7 MLLP"
|
|
552
|
+
}
|
|
553
|
+
]
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"fullUrl": "https://medplum.com/fhir/ValueSet/agent-channel-protocol",
|
|
558
|
+
"resource": {
|
|
559
|
+
"resourceType": "ValueSet",
|
|
560
|
+
"id": "agent-channel-protocol",
|
|
561
|
+
"url": "https://medplum.com/fhir/ValueSet/agent-channel-protocol",
|
|
562
|
+
"status": "active",
|
|
563
|
+
"compose": {
|
|
564
|
+
"include": [
|
|
565
|
+
{
|
|
566
|
+
"system": "https://medplum.com/fhir/CodeSystem/agent-channel-protocol"
|
|
567
|
+
}
|
|
568
|
+
]
|
|
569
|
+
}
|
|
570
|
+
}
|
|
371
571
|
}
|
|
372
572
|
]
|
|
373
573
|
}
|