@medplum/definitions 2.0.5 → 2.0.7
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.
|
@@ -160,7 +160,10 @@
|
|
|
160
160
|
"JsonWebKey": "#/definitions/JsonWebKey",
|
|
161
161
|
"Bot": "#/definitions/Bot",
|
|
162
162
|
"AccessPolicy": "#/definitions/AccessPolicy",
|
|
163
|
-
"UserConfiguration": "#/definitions/UserConfiguration"
|
|
163
|
+
"UserConfiguration": "#/definitions/UserConfiguration",
|
|
164
|
+
"BulkDataExport": "#/definitions/BulkDataExport",
|
|
165
|
+
"SmartAppLaunch": "#/definitions/SmartAppLaunch",
|
|
166
|
+
"DomainConfiguration": "#/definitions/DomainConfiguration"
|
|
164
167
|
}
|
|
165
168
|
},
|
|
166
169
|
"oneOf": [
|
|
@@ -628,6 +631,18 @@
|
|
|
628
631
|
},
|
|
629
632
|
{
|
|
630
633
|
"$ref": "#/definitions/UserConfiguration"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"$ref": "#/definitions/ProjectMembership"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"$ref": "#/definitions/BulkDataExport"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"$ref": "#/definitions/SmartAppLaunch"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"$ref": "#/definitions/DomainConfiguration"
|
|
631
646
|
}
|
|
632
647
|
],
|
|
633
648
|
"definitions": {
|
|
@@ -1097,6 +1112,18 @@
|
|
|
1097
1112
|
},
|
|
1098
1113
|
{
|
|
1099
1114
|
"$ref": "#/definitions/UserConfiguration"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"$ref": "#/definitions/ProjectMembership"
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"$ref": "#/definitions/BulkDataExport"
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"$ref": "#/definitions/SmartAppLaunch"
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"$ref": "#/definitions/DomainConfiguration"
|
|
1100
1127
|
}
|
|
1101
1128
|
]
|
|
1102
1129
|
},
|
|
@@ -61058,7 +61085,7 @@
|
|
|
61058
61085
|
"additionalProperties": false
|
|
61059
61086
|
},
|
|
61060
61087
|
"Project": {
|
|
61061
|
-
"description": "
|
|
61088
|
+
"description": "Encapsulation of resources for a specific project or organization.",
|
|
61062
61089
|
"properties": {
|
|
61063
61090
|
"resourceType": {
|
|
61064
61091
|
"description": "This is a Project resource",
|
|
@@ -61096,8 +61123,12 @@
|
|
|
61096
61123
|
"description": "Whether this project uses strict FHIR validation.",
|
|
61097
61124
|
"$ref": "#/definitions/boolean"
|
|
61098
61125
|
},
|
|
61126
|
+
"checkReferencesOnWrite": {
|
|
61127
|
+
"description": "Whether this project uses referential integrity on write operations such as \u0027create\u0027 and \u0027update\u0027.",
|
|
61128
|
+
"$ref": "#/definitions/boolean"
|
|
61129
|
+
},
|
|
61099
61130
|
"owner": {
|
|
61100
|
-
"description": "
|
|
61131
|
+
"description": "The user who owns the project.",
|
|
61101
61132
|
"$ref": "#/definitions/Reference"
|
|
61102
61133
|
},
|
|
61103
61134
|
"features": {
|
|
@@ -61126,73 +61157,75 @@
|
|
|
61126
61157
|
"type": "array"
|
|
61127
61158
|
}
|
|
61128
61159
|
},
|
|
61160
|
+
"additionalProperties": false,
|
|
61129
61161
|
"required": [
|
|
61130
|
-
"
|
|
61131
|
-
"owner"
|
|
61162
|
+
"resourceType"
|
|
61132
61163
|
]
|
|
61133
61164
|
},
|
|
61134
61165
|
"Project_Secret": {
|
|
61135
61166
|
"description": "Secure environment variable that can be used to store secrets for bots.",
|
|
61136
61167
|
"properties": {
|
|
61137
61168
|
"name": {
|
|
61138
|
-
"description": "
|
|
61169
|
+
"description": "The secret name.",
|
|
61170
|
+
"$ref": "#/definitions/string"
|
|
61171
|
+
},
|
|
61172
|
+
"valueString": {
|
|
61173
|
+
"description": "The secret value.",
|
|
61139
61174
|
"$ref": "#/definitions/string"
|
|
61140
61175
|
},
|
|
61141
61176
|
"valueBoolean": {
|
|
61142
|
-
"description": "
|
|
61143
|
-
"
|
|
61144
|
-
"type": "boolean"
|
|
61177
|
+
"description": "The secret value.",
|
|
61178
|
+
"$ref": "#/definitions/boolean"
|
|
61145
61179
|
},
|
|
61146
61180
|
"valueDecimal": {
|
|
61147
|
-
"description": "
|
|
61148
|
-
"
|
|
61149
|
-
"type": "number"
|
|
61181
|
+
"description": "The secret value.",
|
|
61182
|
+
"$ref": "#/definitions/decimal"
|
|
61150
61183
|
},
|
|
61151
61184
|
"valueInteger": {
|
|
61152
|
-
"description": "
|
|
61153
|
-
"
|
|
61154
|
-
"type": "number"
|
|
61155
|
-
},
|
|
61156
|
-
"valueString": {
|
|
61157
|
-
"description": "Value of option - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list).",
|
|
61158
|
-
"pattern": "^[ \\r\\n\\t\\S]+$",
|
|
61159
|
-
"type": "string"
|
|
61185
|
+
"description": "The secret value.",
|
|
61186
|
+
"$ref": "#/definitions/integer"
|
|
61160
61187
|
}
|
|
61161
|
-
}
|
|
61188
|
+
},
|
|
61189
|
+
"additionalProperties": false,
|
|
61190
|
+
"required": [
|
|
61191
|
+
"name"
|
|
61192
|
+
]
|
|
61162
61193
|
},
|
|
61163
61194
|
"Project_Site": {
|
|
61164
61195
|
"description": "Web application or web site that is associated with the project.",
|
|
61165
61196
|
"properties": {
|
|
61166
61197
|
"name": {
|
|
61167
|
-
"description": "
|
|
61198
|
+
"description": "Friendly name that will make it easy for you to identify the site in the future.",
|
|
61168
61199
|
"$ref": "#/definitions/string"
|
|
61169
61200
|
},
|
|
61170
61201
|
"domain": {
|
|
61171
|
-
"description": "
|
|
61202
|
+
"description": "The list of domain names associated with the site. User authentication will be restricted to the domains you enter here, plus any subdomains. In other words, a registration for example.com also registers subdomain.example.com. A valid domain requires a host and must not include any path, port, query or fragment.",
|
|
61172
61203
|
"items": {
|
|
61173
61204
|
"$ref": "#/definitions/string"
|
|
61174
61205
|
},
|
|
61175
61206
|
"type": "array"
|
|
61176
61207
|
},
|
|
61177
61208
|
"googleClientId": {
|
|
61178
|
-
"description": "
|
|
61209
|
+
"description": "The publicly visible Google Client ID for the site. This is used to authenticate users with Google. This value is available in the Google Developer Console.",
|
|
61179
61210
|
"$ref": "#/definitions/string"
|
|
61180
61211
|
},
|
|
61181
61212
|
"googleClientSecret": {
|
|
61182
|
-
"description": "
|
|
61213
|
+
"description": "The private Google Client Secret for the site. This value is available in the Google Developer Console.",
|
|
61183
61214
|
"$ref": "#/definitions/string"
|
|
61184
61215
|
},
|
|
61185
61216
|
"recaptchaSiteKey": {
|
|
61186
|
-
"description": "
|
|
61217
|
+
"description": "The publicly visible reCAPTCHA site key. This value is generated when you create a new reCAPTCHA site in the reCAPTCHA admin console. Use this site key in the HTML code your site serves to users.",
|
|
61187
61218
|
"$ref": "#/definitions/string"
|
|
61188
61219
|
},
|
|
61189
61220
|
"recaptchaSecretKey": {
|
|
61190
|
-
"description": "
|
|
61221
|
+
"description": "The private reCAPTCHA secret key. This value is generated when you create a new reCAPTCHA site in the reCAPTCHA admin console. Use this secret key for communication between your site and reCAPTCHA.",
|
|
61191
61222
|
"$ref": "#/definitions/string"
|
|
61192
61223
|
}
|
|
61193
61224
|
},
|
|
61225
|
+
"additionalProperties": false,
|
|
61194
61226
|
"required": [
|
|
61195
|
-
"name"
|
|
61227
|
+
"name",
|
|
61228
|
+
"domain"
|
|
61196
61229
|
]
|
|
61197
61230
|
},
|
|
61198
61231
|
"ProjectMembership": {
|
|
@@ -61222,18 +61255,29 @@
|
|
|
61222
61255
|
"description": "Project where the memberships are available.",
|
|
61223
61256
|
"$ref": "#/definitions/Reference"
|
|
61224
61257
|
},
|
|
61258
|
+
"invitedBy": {
|
|
61259
|
+
"description": "The project administrator who invited the user to the project.",
|
|
61260
|
+
"$ref": "#/definitions/Reference"
|
|
61261
|
+
},
|
|
61225
61262
|
"user": {
|
|
61226
61263
|
"description": "User that is granted access to the project.",
|
|
61227
61264
|
"$ref": "#/definitions/Reference"
|
|
61228
61265
|
},
|
|
61229
61266
|
"profile": {
|
|
61230
|
-
"description": "
|
|
61267
|
+
"description": "Reference to the resource that represents the user profile within the project.",
|
|
61231
61268
|
"$ref": "#/definitions/Reference"
|
|
61232
61269
|
},
|
|
61233
61270
|
"accessPolicy": {
|
|
61234
|
-
"description": "
|
|
61271
|
+
"description": "The access policy for the user within the project memebership.",
|
|
61235
61272
|
"$ref": "#/definitions/Reference"
|
|
61236
61273
|
},
|
|
61274
|
+
"access": {
|
|
61275
|
+
"description": "Extended access configuration using parameterized access policies.",
|
|
61276
|
+
"items": {
|
|
61277
|
+
"$ref": "#/definitions/ProjectMembership_Access"
|
|
61278
|
+
},
|
|
61279
|
+
"type": "array"
|
|
61280
|
+
},
|
|
61237
61281
|
"userConfiguration": {
|
|
61238
61282
|
"description": "The user configuration for the user within the project memebership such as menu links, saved searches, and features.",
|
|
61239
61283
|
"$ref": "#/definitions/Reference"
|
|
@@ -61243,14 +61287,15 @@
|
|
|
61243
61287
|
"$ref": "#/definitions/boolean"
|
|
61244
61288
|
}
|
|
61245
61289
|
},
|
|
61290
|
+
"additionalProperties": false,
|
|
61246
61291
|
"required": [
|
|
61292
|
+
"resourceType",
|
|
61247
61293
|
"project",
|
|
61248
|
-
"user"
|
|
61249
|
-
"profile"
|
|
61294
|
+
"user"
|
|
61250
61295
|
]
|
|
61251
61296
|
},
|
|
61252
61297
|
"ClientApplication": {
|
|
61253
|
-
"description": "
|
|
61298
|
+
"description": "Medplum client application for automated access.",
|
|
61254
61299
|
"properties": {
|
|
61255
61300
|
"resourceType": {
|
|
61256
61301
|
"description": "This is a ClientApplication resource",
|
|
@@ -61268,24 +61313,16 @@
|
|
|
61268
61313
|
"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.",
|
|
61269
61314
|
"$ref": "#/definitions/uri"
|
|
61270
61315
|
},
|
|
61271
|
-
"_implicitRules": {
|
|
61272
|
-
"description": "Extensions for implicitRules",
|
|
61273
|
-
"$ref": "#/definitions/Element"
|
|
61274
|
-
},
|
|
61275
61316
|
"language": {
|
|
61276
61317
|
"description": "The base language in which the resource is written.",
|
|
61277
61318
|
"$ref": "#/definitions/code"
|
|
61278
61319
|
},
|
|
61279
|
-
"_language": {
|
|
61280
|
-
"description": "Extensions for language",
|
|
61281
|
-
"$ref": "#/definitions/Element"
|
|
61282
|
-
},
|
|
61283
61320
|
"name": {
|
|
61284
|
-
"description": "
|
|
61321
|
+
"description": "A name associated with the ClientApplication.",
|
|
61285
61322
|
"$ref": "#/definitions/string"
|
|
61286
61323
|
},
|
|
61287
61324
|
"description": {
|
|
61288
|
-
"description": "A summary, characterization or explanation of the
|
|
61325
|
+
"description": "A summary, characterization or explanation of the ClientApplication.",
|
|
61289
61326
|
"$ref": "#/definitions/string"
|
|
61290
61327
|
},
|
|
61291
61328
|
"secret": {
|
|
@@ -61293,16 +61330,16 @@
|
|
|
61293
61330
|
"$ref": "#/definitions/string"
|
|
61294
61331
|
},
|
|
61295
61332
|
"jwksUri": {
|
|
61296
|
-
"description": "Optional JWKS URI for public key verification of JWTs issued by the authorization server (client_secret_jwt)",
|
|
61297
|
-
"$ref": "#/definitions/
|
|
61333
|
+
"description": "Optional JWKS URI for public key verification of JWTs issued by the authorization server (client_secret_jwt).",
|
|
61334
|
+
"$ref": "#/definitions/uri"
|
|
61298
61335
|
},
|
|
61299
61336
|
"redirectUri": {
|
|
61300
|
-
"description": "
|
|
61301
|
-
"$ref": "#/definitions/
|
|
61337
|
+
"description": "Optional redirect URI used when redirecting a client back to the client application.",
|
|
61338
|
+
"$ref": "#/definitions/uri"
|
|
61302
61339
|
},
|
|
61303
61340
|
"launchUri": {
|
|
61304
61341
|
"description": "Optional launch URI for SMART EHR launch sequence.",
|
|
61305
|
-
"$ref": "#/definitions/
|
|
61342
|
+
"$ref": "#/definitions/uri"
|
|
61306
61343
|
},
|
|
61307
61344
|
"pkceOptional": {
|
|
61308
61345
|
"description": "Flag to make PKCE optional for this client application. PKCE is required by default for compliance with Smart App Launch. It can be disabled for compatibility with legacy client applications.",
|
|
@@ -61313,13 +61350,13 @@
|
|
|
61313
61350
|
"$ref": "#/definitions/IdentityProvider"
|
|
61314
61351
|
}
|
|
61315
61352
|
},
|
|
61353
|
+
"additionalProperties": false,
|
|
61316
61354
|
"required": [
|
|
61317
|
-
"resourceType"
|
|
61318
|
-
"secret"
|
|
61355
|
+
"resourceType"
|
|
61319
61356
|
]
|
|
61320
61357
|
},
|
|
61321
61358
|
"User": {
|
|
61322
|
-
"description": "
|
|
61359
|
+
"description": "Representation of a human user of the system.",
|
|
61323
61360
|
"properties": {
|
|
61324
61361
|
"resourceType": {
|
|
61325
61362
|
"description": "This is a User resource",
|
|
@@ -61337,18 +61374,10 @@
|
|
|
61337
61374
|
"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.",
|
|
61338
61375
|
"$ref": "#/definitions/uri"
|
|
61339
61376
|
},
|
|
61340
|
-
"_implicitRules": {
|
|
61341
|
-
"description": "Extensions for implicitRules",
|
|
61342
|
-
"$ref": "#/definitions/Element"
|
|
61343
|
-
},
|
|
61344
61377
|
"language": {
|
|
61345
61378
|
"description": "The base language in which the resource is written.",
|
|
61346
61379
|
"$ref": "#/definitions/code"
|
|
61347
61380
|
},
|
|
61348
|
-
"_language": {
|
|
61349
|
-
"description": "Extensions for language",
|
|
61350
|
-
"$ref": "#/definitions/Element"
|
|
61351
|
-
},
|
|
61352
61381
|
"firstName": {
|
|
61353
61382
|
"description": "The first name or given name of the user. This is the value as entered when the user is created. It is used to populate the profile resource.",
|
|
61354
61383
|
"$ref": "#/definitions/string"
|
|
@@ -61357,6 +61386,10 @@
|
|
|
61357
61386
|
"description": "The last name or family name of the user. This is the value as entered when the user is created. It is used to populate the profile resource.",
|
|
61358
61387
|
"$ref": "#/definitions/string"
|
|
61359
61388
|
},
|
|
61389
|
+
"externalId": {
|
|
61390
|
+
"description": "A String that is an identifier for the resource as defined by the provisioning client. The \"externalId\" may simplify identification of a resource between the provisioning client and the service provider by allowing the client to use a filter to locate the resource with an identifier from the provisioning domain, obviating the need to store a local mapping between the provisioning domain\u0027s identifier of the resource and the identifier used by the service provider. Each resource MAY include a non-empty \"externalId\" value. The value of the \"externalId\" attribute is always issued by the provisioning client and MUST NOT be specified by the service provider. The service provider MUST always interpret the externalId as scoped to the provisioning domain.",
|
|
61391
|
+
"$ref": "#/definitions/string"
|
|
61392
|
+
},
|
|
61360
61393
|
"email": {
|
|
61361
61394
|
"description": "The email address that uniquely identifies the user.",
|
|
61362
61395
|
"$ref": "#/definitions/string"
|
|
@@ -61365,25 +61398,36 @@
|
|
|
61365
61398
|
"description": "Whether the system has verified that the user has access to the email address.",
|
|
61366
61399
|
"$ref": "#/definitions/boolean"
|
|
61367
61400
|
},
|
|
61401
|
+
"admin": {
|
|
61402
|
+
"description": "DEPRECATED",
|
|
61403
|
+
"$ref": "#/definitions/boolean"
|
|
61404
|
+
},
|
|
61368
61405
|
"passwordHash": {
|
|
61369
|
-
"description": "Encrypted hash of the user
|
|
61406
|
+
"description": "Encrypted hash of the user\u0027s password.",
|
|
61370
61407
|
"$ref": "#/definitions/string"
|
|
61371
61408
|
},
|
|
61372
|
-
"
|
|
61373
|
-
"description": "
|
|
61409
|
+
"mfaSecret": {
|
|
61410
|
+
"description": "Shared secret for MFA authenticator applications.",
|
|
61411
|
+
"$ref": "#/definitions/string"
|
|
61412
|
+
},
|
|
61413
|
+
"mfaEnrolled": {
|
|
61414
|
+
"description": "Whether the user has completed MFA enrollment.",
|
|
61374
61415
|
"$ref": "#/definitions/boolean"
|
|
61375
61416
|
},
|
|
61376
61417
|
"project": {
|
|
61377
|
-
"description": "
|
|
61418
|
+
"description": "Optional project if the user only exists for the project. This is used for the project-specific user database.",
|
|
61378
61419
|
"$ref": "#/definitions/Reference"
|
|
61379
61420
|
}
|
|
61380
61421
|
},
|
|
61422
|
+
"additionalProperties": false,
|
|
61381
61423
|
"required": [
|
|
61382
|
-
"
|
|
61424
|
+
"resourceType",
|
|
61425
|
+
"firstName",
|
|
61426
|
+
"lastName"
|
|
61383
61427
|
]
|
|
61384
61428
|
},
|
|
61385
61429
|
"Login": {
|
|
61386
|
-
"description": "
|
|
61430
|
+
"description": "Login event and session details.",
|
|
61387
61431
|
"properties": {
|
|
61388
61432
|
"resourceType": {
|
|
61389
61433
|
"description": "This is a Login resource",
|
|
@@ -61401,22 +61445,22 @@
|
|
|
61401
61445
|
"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.",
|
|
61402
61446
|
"$ref": "#/definitions/uri"
|
|
61403
61447
|
},
|
|
61404
|
-
"_implicitRules": {
|
|
61405
|
-
"description": "Extensions for implicitRules",
|
|
61406
|
-
"$ref": "#/definitions/Element"
|
|
61407
|
-
},
|
|
61408
61448
|
"language": {
|
|
61409
61449
|
"description": "The base language in which the resource is written.",
|
|
61410
61450
|
"$ref": "#/definitions/code"
|
|
61411
61451
|
},
|
|
61412
|
-
"_language": {
|
|
61413
|
-
"description": "Extensions for language",
|
|
61414
|
-
"$ref": "#/definitions/Element"
|
|
61415
|
-
},
|
|
61416
61452
|
"client": {
|
|
61417
61453
|
"description": "The client requesting the code.",
|
|
61418
61454
|
"$ref": "#/definitions/Reference"
|
|
61419
61455
|
},
|
|
61456
|
+
"profileType": {
|
|
61457
|
+
"description": "Optional required profile resource type.",
|
|
61458
|
+
"$ref": "#/definitions/code"
|
|
61459
|
+
},
|
|
61460
|
+
"project": {
|
|
61461
|
+
"description": "Optional required project for the login.",
|
|
61462
|
+
"$ref": "#/definitions/Reference"
|
|
61463
|
+
},
|
|
61420
61464
|
"user": {
|
|
61421
61465
|
"description": "The user requesting the code.",
|
|
61422
61466
|
"$ref": "#/definitions/Reference"
|
|
@@ -61461,6 +61505,10 @@
|
|
|
61461
61505
|
"description": "Optional cryptographically random string that your app adds to the initial request and the authorization server includes inside the ID Token, used to prevent token replay attacks.",
|
|
61462
61506
|
"$ref": "#/definitions/string"
|
|
61463
61507
|
},
|
|
61508
|
+
"mfaVerified": {
|
|
61509
|
+
"description": "Whether the user has verified using multi-factor authentication (MFA). This will only be set is the user has MFA enabled (see User.mfaEnrolled).",
|
|
61510
|
+
"$ref": "#/definitions/boolean"
|
|
61511
|
+
},
|
|
61464
61512
|
"granted": {
|
|
61465
61513
|
"description": "Whether a token has been granted for this login.",
|
|
61466
61514
|
"$ref": "#/definitions/boolean"
|
|
@@ -61469,21 +61517,18 @@
|
|
|
61469
61517
|
"description": "Whether this login has been revoked or invalidated.",
|
|
61470
61518
|
"$ref": "#/definitions/boolean"
|
|
61471
61519
|
},
|
|
61472
|
-
"compartments": {
|
|
61473
|
-
"description": "Collection of compartments that the user has been granted access. This is a flattened collection of all ProjectMembership compartments at the time of login.",
|
|
61474
|
-
"items": {
|
|
61475
|
-
"$ref": "#/definitions/Reference"
|
|
61476
|
-
},
|
|
61477
|
-
"type": "array"
|
|
61478
|
-
},
|
|
61479
61520
|
"admin": {
|
|
61480
|
-
"description": "
|
|
61521
|
+
"description": "DEPRECATED",
|
|
61481
61522
|
"$ref": "#/definitions/boolean"
|
|
61482
61523
|
},
|
|
61483
61524
|
"superAdmin": {
|
|
61484
61525
|
"description": "Whether this login has super administrator privileges.",
|
|
61485
61526
|
"$ref": "#/definitions/boolean"
|
|
61486
61527
|
},
|
|
61528
|
+
"launch": {
|
|
61529
|
+
"description": "Optional SMART App Launch context for this login.",
|
|
61530
|
+
"$ref": "#/definitions/Reference"
|
|
61531
|
+
},
|
|
61487
61532
|
"remoteAddress": {
|
|
61488
61533
|
"description": "The Internet Protocol (IP) address of the client or last proxy that sent the request.",
|
|
61489
61534
|
"$ref": "#/definitions/string"
|
|
@@ -61492,10 +61537,17 @@
|
|
|
61492
61537
|
"description": "The User-Agent request header as sent by the client.",
|
|
61493
61538
|
"$ref": "#/definitions/string"
|
|
61494
61539
|
}
|
|
61495
|
-
}
|
|
61540
|
+
},
|
|
61541
|
+
"additionalProperties": false,
|
|
61542
|
+
"required": [
|
|
61543
|
+
"resourceType",
|
|
61544
|
+
"user",
|
|
61545
|
+
"authMethod",
|
|
61546
|
+
"authTime"
|
|
61547
|
+
]
|
|
61496
61548
|
},
|
|
61497
61549
|
"PasswordChangeRequest": {
|
|
61498
|
-
"description": "Password change request for the
|
|
61550
|
+
"description": "Password change request for the \u0027forgot password\u0027 flow.",
|
|
61499
61551
|
"properties": {
|
|
61500
61552
|
"resourceType": {
|
|
61501
61553
|
"description": "This is a PasswordChangeRequest resource",
|
|
@@ -61513,18 +61565,10 @@
|
|
|
61513
61565
|
"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.",
|
|
61514
61566
|
"$ref": "#/definitions/uri"
|
|
61515
61567
|
},
|
|
61516
|
-
"_implicitRules": {
|
|
61517
|
-
"description": "Extensions for implicitRules",
|
|
61518
|
-
"$ref": "#/definitions/Element"
|
|
61519
|
-
},
|
|
61520
61568
|
"language": {
|
|
61521
61569
|
"description": "The base language in which the resource is written.",
|
|
61522
61570
|
"$ref": "#/definitions/code"
|
|
61523
61571
|
},
|
|
61524
|
-
"_language": {
|
|
61525
|
-
"description": "Extensions for language",
|
|
61526
|
-
"$ref": "#/definitions/Element"
|
|
61527
|
-
},
|
|
61528
61572
|
"user": {
|
|
61529
61573
|
"description": "The user requesting the password change.",
|
|
61530
61574
|
"$ref": "#/definitions/Reference"
|
|
@@ -61539,9 +61583,15 @@
|
|
|
61539
61583
|
},
|
|
61540
61584
|
"redirectUri": {
|
|
61541
61585
|
"description": "Redirect URI used when redirecting a client back to the client application.",
|
|
61542
|
-
"$ref": "#/definitions/
|
|
61586
|
+
"$ref": "#/definitions/uri"
|
|
61543
61587
|
}
|
|
61544
|
-
}
|
|
61588
|
+
},
|
|
61589
|
+
"additionalProperties": false,
|
|
61590
|
+
"required": [
|
|
61591
|
+
"resourceType",
|
|
61592
|
+
"user",
|
|
61593
|
+
"secret"
|
|
61594
|
+
]
|
|
61545
61595
|
},
|
|
61546
61596
|
"JsonWebKey": {
|
|
61547
61597
|
"description": "A JSON object that represents a cryptographic key. The members of the object represent properties of the key, including its value.",
|
|
@@ -61562,18 +61612,10 @@
|
|
|
61562
61612
|
"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.",
|
|
61563
61613
|
"$ref": "#/definitions/uri"
|
|
61564
61614
|
},
|
|
61565
|
-
"_implicitRules": {
|
|
61566
|
-
"description": "Extensions for implicitRules",
|
|
61567
|
-
"$ref": "#/definitions/Element"
|
|
61568
|
-
},
|
|
61569
61615
|
"language": {
|
|
61570
61616
|
"description": "The base language in which the resource is written.",
|
|
61571
61617
|
"$ref": "#/definitions/code"
|
|
61572
61618
|
},
|
|
61573
|
-
"_language": {
|
|
61574
|
-
"description": "Extensions for language",
|
|
61575
|
-
"$ref": "#/definitions/Element"
|
|
61576
|
-
},
|
|
61577
61619
|
"active": {
|
|
61578
61620
|
"description": "Whether this key is in active use.",
|
|
61579
61621
|
"$ref": "#/definitions/boolean"
|
|
@@ -61644,7 +61686,11 @@
|
|
|
61644
61686
|
"description": "The first CRT coefficient.",
|
|
61645
61687
|
"$ref": "#/definitions/string"
|
|
61646
61688
|
}
|
|
61647
|
-
}
|
|
61689
|
+
},
|
|
61690
|
+
"additionalProperties": false,
|
|
61691
|
+
"required": [
|
|
61692
|
+
"resourceType"
|
|
61693
|
+
]
|
|
61648
61694
|
},
|
|
61649
61695
|
"Bot": {
|
|
61650
61696
|
"description": "Bot account for automated actions.",
|
|
@@ -61665,17 +61711,16 @@
|
|
|
61665
61711
|
"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.",
|
|
61666
61712
|
"$ref": "#/definitions/uri"
|
|
61667
61713
|
},
|
|
61668
|
-
"_implicitRules": {
|
|
61669
|
-
"description": "Extensions for implicitRules",
|
|
61670
|
-
"$ref": "#/definitions/Element"
|
|
61671
|
-
},
|
|
61672
61714
|
"language": {
|
|
61673
61715
|
"description": "The base language in which the resource is written.",
|
|
61674
61716
|
"$ref": "#/definitions/code"
|
|
61675
61717
|
},
|
|
61676
|
-
"
|
|
61677
|
-
"description": "
|
|
61678
|
-
"
|
|
61718
|
+
"identifier": {
|
|
61719
|
+
"description": "An identifier for this bot.",
|
|
61720
|
+
"items": {
|
|
61721
|
+
"$ref": "#/definitions/Identifier"
|
|
61722
|
+
},
|
|
61723
|
+
"type": "array"
|
|
61679
61724
|
},
|
|
61680
61725
|
"name": {
|
|
61681
61726
|
"description": "A name associated with the Bot.",
|
|
@@ -61701,10 +61746,14 @@
|
|
|
61701
61746
|
"description": "Optional flag to indicate that the bot should be run as the user.",
|
|
61702
61747
|
"$ref": "#/definitions/boolean"
|
|
61703
61748
|
}
|
|
61704
|
-
}
|
|
61749
|
+
},
|
|
61750
|
+
"additionalProperties": false,
|
|
61751
|
+
"required": [
|
|
61752
|
+
"resourceType"
|
|
61753
|
+
]
|
|
61705
61754
|
},
|
|
61706
61755
|
"AccessPolicy": {
|
|
61707
|
-
"description": "Access
|
|
61756
|
+
"description": "Access Policy for user or user group that defines how entities can or cannot access resources.",
|
|
61708
61757
|
"properties": {
|
|
61709
61758
|
"resourceType": {
|
|
61710
61759
|
"description": "This is a AccessPolicy resource",
|
|
@@ -61722,24 +61771,16 @@
|
|
|
61722
61771
|
"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.",
|
|
61723
61772
|
"$ref": "#/definitions/uri"
|
|
61724
61773
|
},
|
|
61725
|
-
"_implicitRules": {
|
|
61726
|
-
"description": "Extensions for implicitRules",
|
|
61727
|
-
"$ref": "#/definitions/Element"
|
|
61728
|
-
},
|
|
61729
61774
|
"language": {
|
|
61730
61775
|
"description": "The base language in which the resource is written.",
|
|
61731
61776
|
"$ref": "#/definitions/code"
|
|
61732
61777
|
},
|
|
61733
|
-
"_language": {
|
|
61734
|
-
"description": "Extensions for language",
|
|
61735
|
-
"$ref": "#/definitions/Element"
|
|
61736
|
-
},
|
|
61737
61778
|
"name": {
|
|
61738
61779
|
"description": "A name associated with the AccessPolicy.",
|
|
61739
61780
|
"$ref": "#/definitions/string"
|
|
61740
61781
|
},
|
|
61741
61782
|
"compartment": {
|
|
61742
|
-
"description": "Optional compartment
|
|
61783
|
+
"description": "Optional compartment for newly created resources. If this field is set, any resources created by a user with this access policy will automatically be included in the specified compartment.",
|
|
61743
61784
|
"$ref": "#/definitions/Reference"
|
|
61744
61785
|
},
|
|
61745
61786
|
"resource": {
|
|
@@ -61748,8 +61789,19 @@
|
|
|
61748
61789
|
"$ref": "#/definitions/AccessPolicy_Resource"
|
|
61749
61790
|
},
|
|
61750
61791
|
"type": "array"
|
|
61792
|
+
},
|
|
61793
|
+
"ipAccessRule": {
|
|
61794
|
+
"description": "Use IP Access Rules to allowlist, block, and challenge traffic based on the visitor IP address.",
|
|
61795
|
+
"items": {
|
|
61796
|
+
"$ref": "#/definitions/AccessPolicy_IpAccessRule"
|
|
61797
|
+
},
|
|
61798
|
+
"type": "array"
|
|
61751
61799
|
}
|
|
61752
|
-
}
|
|
61800
|
+
},
|
|
61801
|
+
"additionalProperties": false,
|
|
61802
|
+
"required": [
|
|
61803
|
+
"resourceType"
|
|
61804
|
+
]
|
|
61753
61805
|
},
|
|
61754
61806
|
"AccessPolicy_Resource": {
|
|
61755
61807
|
"description": "Access details for a resource type.",
|
|
@@ -61784,7 +61836,11 @@
|
|
|
61784
61836
|
},
|
|
61785
61837
|
"type": "array"
|
|
61786
61838
|
}
|
|
61787
|
-
}
|
|
61839
|
+
},
|
|
61840
|
+
"additionalProperties": false,
|
|
61841
|
+
"required": [
|
|
61842
|
+
"resourceType"
|
|
61843
|
+
]
|
|
61788
61844
|
},
|
|
61789
61845
|
"UserConfiguration": {
|
|
61790
61846
|
"description": "User specific configuration for the Medplum application.",
|
|
@@ -61805,31 +61861,23 @@
|
|
|
61805
61861
|
"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.",
|
|
61806
61862
|
"$ref": "#/definitions/uri"
|
|
61807
61863
|
},
|
|
61808
|
-
"_implicitRules": {
|
|
61809
|
-
"description": "Extensions for implicitRules",
|
|
61810
|
-
"$ref": "#/definitions/Element"
|
|
61811
|
-
},
|
|
61812
61864
|
"language": {
|
|
61813
61865
|
"description": "The base language in which the resource is written.",
|
|
61814
61866
|
"$ref": "#/definitions/code"
|
|
61815
61867
|
},
|
|
61816
|
-
"_language": {
|
|
61817
|
-
"description": "Extensions for language",
|
|
61818
|
-
"$ref": "#/definitions/Element"
|
|
61819
|
-
},
|
|
61820
61868
|
"name": {
|
|
61821
61869
|
"description": "A name associated with the UserConfiguration.",
|
|
61822
61870
|
"$ref": "#/definitions/string"
|
|
61823
61871
|
},
|
|
61824
61872
|
"menu": {
|
|
61825
|
-
"description": "Optional menu of shortcuts to URLs
|
|
61873
|
+
"description": "Optional menu of shortcuts to URLs.",
|
|
61826
61874
|
"items": {
|
|
61827
61875
|
"$ref": "#/definitions/UserConfiguration_Menu"
|
|
61828
61876
|
},
|
|
61829
61877
|
"type": "array"
|
|
61830
61878
|
},
|
|
61831
61879
|
"search": {
|
|
61832
|
-
"description": "
|
|
61880
|
+
"description": "Shortcut links to URLs.",
|
|
61833
61881
|
"items": {
|
|
61834
61882
|
"$ref": "#/definitions/UserConfiguration_Search"
|
|
61835
61883
|
},
|
|
@@ -61842,13 +61890,17 @@
|
|
|
61842
61890
|
},
|
|
61843
61891
|
"type": "array"
|
|
61844
61892
|
}
|
|
61845
|
-
}
|
|
61893
|
+
},
|
|
61894
|
+
"additionalProperties": false,
|
|
61895
|
+
"required": [
|
|
61896
|
+
"resourceType"
|
|
61897
|
+
]
|
|
61846
61898
|
},
|
|
61847
61899
|
"UserConfiguration_Menu": {
|
|
61848
61900
|
"description": "Optional menu of shortcuts to URLs.",
|
|
61849
61901
|
"properties": {
|
|
61850
61902
|
"title": {
|
|
61851
|
-
"description": "
|
|
61903
|
+
"description": "Title of the menu.",
|
|
61852
61904
|
"$ref": "#/definitions/string"
|
|
61853
61905
|
},
|
|
61854
61906
|
"link": {
|
|
@@ -61858,7 +61910,11 @@
|
|
|
61858
61910
|
},
|
|
61859
61911
|
"type": "array"
|
|
61860
61912
|
}
|
|
61861
|
-
}
|
|
61913
|
+
},
|
|
61914
|
+
"additionalProperties": false,
|
|
61915
|
+
"required": [
|
|
61916
|
+
"title"
|
|
61917
|
+
]
|
|
61862
61918
|
},
|
|
61863
61919
|
"UserConfiguration_Menu_Link": {
|
|
61864
61920
|
"description": "Shortcut links to URLs.",
|
|
@@ -61869,12 +61925,17 @@
|
|
|
61869
61925
|
},
|
|
61870
61926
|
"target": {
|
|
61871
61927
|
"description": "The URL target of the link.",
|
|
61872
|
-
"$ref": "#/definitions/
|
|
61928
|
+
"$ref": "#/definitions/url"
|
|
61873
61929
|
}
|
|
61874
|
-
}
|
|
61930
|
+
},
|
|
61931
|
+
"additionalProperties": false,
|
|
61932
|
+
"required": [
|
|
61933
|
+
"name",
|
|
61934
|
+
"target"
|
|
61935
|
+
]
|
|
61875
61936
|
},
|
|
61876
61937
|
"UserConfiguration_Search": {
|
|
61877
|
-
"description": "
|
|
61938
|
+
"description": "Shortcut links to URLs.",
|
|
61878
61939
|
"properties": {
|
|
61879
61940
|
"name": {
|
|
61880
61941
|
"description": "The human friendly name of the link.",
|
|
@@ -61884,7 +61945,12 @@
|
|
|
61884
61945
|
"description": "The rules that the server should use to determine which resources to return.",
|
|
61885
61946
|
"$ref": "#/definitions/string"
|
|
61886
61947
|
}
|
|
61887
|
-
}
|
|
61948
|
+
},
|
|
61949
|
+
"additionalProperties": false,
|
|
61950
|
+
"required": [
|
|
61951
|
+
"name",
|
|
61952
|
+
"criteria"
|
|
61953
|
+
]
|
|
61888
61954
|
},
|
|
61889
61955
|
"UserConfiguration_Option": {
|
|
61890
61956
|
"description": "User options that control the display of the application.",
|
|
@@ -61895,30 +61961,29 @@
|
|
|
61895
61961
|
},
|
|
61896
61962
|
"valueBoolean": {
|
|
61897
61963
|
"description": "Value of option - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list).",
|
|
61898
|
-
"
|
|
61899
|
-
"type": "boolean"
|
|
61964
|
+
"$ref": "#/definitions/boolean"
|
|
61900
61965
|
},
|
|
61901
61966
|
"valueCode": {
|
|
61902
61967
|
"description": "Value of option - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list).",
|
|
61903
|
-
"
|
|
61904
|
-
"type": "string"
|
|
61968
|
+
"$ref": "#/definitions/code"
|
|
61905
61969
|
},
|
|
61906
61970
|
"valueDecimal": {
|
|
61907
61971
|
"description": "Value of option - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list).",
|
|
61908
|
-
"
|
|
61909
|
-
"type": "number"
|
|
61972
|
+
"$ref": "#/definitions/decimal"
|
|
61910
61973
|
},
|
|
61911
61974
|
"valueInteger": {
|
|
61912
61975
|
"description": "Value of option - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list).",
|
|
61913
|
-
"
|
|
61914
|
-
"type": "number"
|
|
61976
|
+
"$ref": "#/definitions/integer"
|
|
61915
61977
|
},
|
|
61916
61978
|
"valueString": {
|
|
61917
61979
|
"description": "Value of option - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list).",
|
|
61918
|
-
"
|
|
61919
|
-
"type": "string"
|
|
61980
|
+
"$ref": "#/definitions/string"
|
|
61920
61981
|
}
|
|
61921
|
-
}
|
|
61982
|
+
},
|
|
61983
|
+
"additionalProperties": false,
|
|
61984
|
+
"required": [
|
|
61985
|
+
"id"
|
|
61986
|
+
]
|
|
61922
61987
|
},
|
|
61923
61988
|
"IdentityProvider": {
|
|
61924
61989
|
"description": "External Identity Provider (IdP) configuration details.",
|
|
@@ -61947,7 +62012,280 @@
|
|
|
61947
62012
|
"description": "Optional flag to use the subject field instead of the email field.",
|
|
61948
62013
|
"$ref": "#/definitions/boolean"
|
|
61949
62014
|
}
|
|
61950
|
-
}
|
|
62015
|
+
},
|
|
62016
|
+
"additionalProperties": false,
|
|
62017
|
+
"required": [
|
|
62018
|
+
"authorizeUrl",
|
|
62019
|
+
"tokenUrl",
|
|
62020
|
+
"userInfoUrl",
|
|
62021
|
+
"clientId",
|
|
62022
|
+
"clientSecret"
|
|
62023
|
+
]
|
|
62024
|
+
},
|
|
62025
|
+
"ProjectMembership_Access": {
|
|
62026
|
+
"description": "Extended access configuration using parameterized access policies.",
|
|
62027
|
+
"properties": {
|
|
62028
|
+
"policy": {
|
|
62029
|
+
"description": "The base access policy used as a template. Variables in the template access policy are replaced by the values in the parameter.",
|
|
62030
|
+
"$ref": "#/definitions/Reference"
|
|
62031
|
+
},
|
|
62032
|
+
"parameter": {
|
|
62033
|
+
"description": "User options that control the display of the application.",
|
|
62034
|
+
"items": {
|
|
62035
|
+
"$ref": "#/definitions/ProjectMembership_Access_Parameter"
|
|
62036
|
+
},
|
|
62037
|
+
"type": "array"
|
|
62038
|
+
}
|
|
62039
|
+
},
|
|
62040
|
+
"additionalProperties": false,
|
|
62041
|
+
"required": [
|
|
62042
|
+
"policy"
|
|
62043
|
+
]
|
|
62044
|
+
},
|
|
62045
|
+
"ProjectMembership_Access_Parameter": {
|
|
62046
|
+
"description": "User options that control the display of the application.",
|
|
62047
|
+
"properties": {
|
|
62048
|
+
"name": {
|
|
62049
|
+
"description": "The unique name of the parameter.",
|
|
62050
|
+
"$ref": "#/definitions/code"
|
|
62051
|
+
},
|
|
62052
|
+
"valueString": {
|
|
62053
|
+
"description": "Value of the parameter - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list).",
|
|
62054
|
+
"$ref": "#/definitions/string"
|
|
62055
|
+
},
|
|
62056
|
+
"valueReference": {
|
|
62057
|
+
"description": "Value of the parameter - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list).",
|
|
62058
|
+
"$ref": "#/definitions/Reference"
|
|
62059
|
+
}
|
|
62060
|
+
},
|
|
62061
|
+
"additionalProperties": false,
|
|
62062
|
+
"required": [
|
|
62063
|
+
"name"
|
|
62064
|
+
]
|
|
62065
|
+
},
|
|
62066
|
+
"BulkDataExport": {
|
|
62067
|
+
"description": "User specific configuration for the Medplum application.",
|
|
62068
|
+
"properties": {
|
|
62069
|
+
"resourceType": {
|
|
62070
|
+
"description": "This is a BulkDataExport resource",
|
|
62071
|
+
"const": "BulkDataExport"
|
|
62072
|
+
},
|
|
62073
|
+
"id": {
|
|
62074
|
+
"description": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
|
|
62075
|
+
"$ref": "#/definitions/id"
|
|
62076
|
+
},
|
|
62077
|
+
"meta": {
|
|
62078
|
+
"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.",
|
|
62079
|
+
"$ref": "#/definitions/Meta"
|
|
62080
|
+
},
|
|
62081
|
+
"implicitRules": {
|
|
62082
|
+
"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.",
|
|
62083
|
+
"$ref": "#/definitions/uri"
|
|
62084
|
+
},
|
|
62085
|
+
"language": {
|
|
62086
|
+
"description": "The base language in which the resource is written.",
|
|
62087
|
+
"$ref": "#/definitions/code"
|
|
62088
|
+
},
|
|
62089
|
+
"status": {
|
|
62090
|
+
"description": "The status of the request.",
|
|
62091
|
+
"$ref": "#/definitions/code"
|
|
62092
|
+
},
|
|
62093
|
+
"requestTime": {
|
|
62094
|
+
"description": "Indicates the server\u0027s time when the query is requested.",
|
|
62095
|
+
"$ref": "#/definitions/instant"
|
|
62096
|
+
},
|
|
62097
|
+
"transactionTime": {
|
|
62098
|
+
"description": "Indicates the server\u0027s time when the query is run. The response SHOULD NOT include any resources modified after this instant, and SHALL include any matching resources modified up to and including this instant.",
|
|
62099
|
+
"$ref": "#/definitions/instant"
|
|
62100
|
+
},
|
|
62101
|
+
"request": {
|
|
62102
|
+
"description": "The full URL of the original Bulk Data kick-off request. In the case of a POST request, this URL will not include the request parameters.",
|
|
62103
|
+
"$ref": "#/definitions/uri"
|
|
62104
|
+
},
|
|
62105
|
+
"requiresAccessToken": {
|
|
62106
|
+
"description": "Indicates whether downloading the generated files requires the same authorization mechanism as the $export operation itself.",
|
|
62107
|
+
"$ref": "#/definitions/boolean"
|
|
62108
|
+
},
|
|
62109
|
+
"output": {
|
|
62110
|
+
"description": "An array of file items with one entry for each generated file. If no resources are returned from the kick-off request, the server SHOULD return an empty array.",
|
|
62111
|
+
"items": {
|
|
62112
|
+
"$ref": "#/definitions/BulkDataExport_Output"
|
|
62113
|
+
},
|
|
62114
|
+
"type": "array"
|
|
62115
|
+
},
|
|
62116
|
+
"deleted": {
|
|
62117
|
+
"description": "An array of deleted file items following the same structure as the output array.",
|
|
62118
|
+
"items": {
|
|
62119
|
+
"$ref": "#/definitions/BulkDataExport_Deleted"
|
|
62120
|
+
},
|
|
62121
|
+
"type": "array"
|
|
62122
|
+
},
|
|
62123
|
+
"error": {
|
|
62124
|
+
"description": "Array of message file items following the same structure as the output array.",
|
|
62125
|
+
"items": {
|
|
62126
|
+
"$ref": "#/definitions/BulkDataExport_Error"
|
|
62127
|
+
},
|
|
62128
|
+
"type": "array"
|
|
62129
|
+
}
|
|
62130
|
+
},
|
|
62131
|
+
"additionalProperties": false,
|
|
62132
|
+
"required": [
|
|
62133
|
+
"resourceType",
|
|
62134
|
+
"status",
|
|
62135
|
+
"requestTime",
|
|
62136
|
+
"request"
|
|
62137
|
+
]
|
|
62138
|
+
},
|
|
62139
|
+
"BulkDataExport_Output": {
|
|
62140
|
+
"description": "An array of file items with one entry for each generated file. If no resources are returned from the kick-off request, the server SHOULD return an empty array.",
|
|
62141
|
+
"properties": {
|
|
62142
|
+
"type": {
|
|
62143
|
+
"description": "The FHIR resource type that is contained in the file.",
|
|
62144
|
+
"$ref": "#/definitions/code"
|
|
62145
|
+
},
|
|
62146
|
+
"url": {
|
|
62147
|
+
"description": "The absolute path to the file. The format of the file SHOULD reflect that requested in the _outputFormat parameter of the initial kick-off request.",
|
|
62148
|
+
"$ref": "#/definitions/uri"
|
|
62149
|
+
}
|
|
62150
|
+
},
|
|
62151
|
+
"additionalProperties": false,
|
|
62152
|
+
"required": [
|
|
62153
|
+
"type",
|
|
62154
|
+
"url"
|
|
62155
|
+
]
|
|
62156
|
+
},
|
|
62157
|
+
"BulkDataExport_Deleted": {
|
|
62158
|
+
"description": "An array of deleted file items following the same structure as the output array.",
|
|
62159
|
+
"properties": {
|
|
62160
|
+
"type": {
|
|
62161
|
+
"description": "The FHIR resource type that is contained in the file.",
|
|
62162
|
+
"$ref": "#/definitions/code"
|
|
62163
|
+
},
|
|
62164
|
+
"url": {
|
|
62165
|
+
"description": "The absolute path to the file. The format of the file SHOULD reflect that requested in the _outputFormat parameter of the initial kick-off request.",
|
|
62166
|
+
"$ref": "#/definitions/uri"
|
|
62167
|
+
}
|
|
62168
|
+
},
|
|
62169
|
+
"additionalProperties": false,
|
|
62170
|
+
"required": [
|
|
62171
|
+
"type",
|
|
62172
|
+
"url"
|
|
62173
|
+
]
|
|
62174
|
+
},
|
|
62175
|
+
"BulkDataExport_Error": {
|
|
62176
|
+
"description": "Array of message file items following the same structure as the output array.",
|
|
62177
|
+
"properties": {
|
|
62178
|
+
"type": {
|
|
62179
|
+
"description": "The FHIR resource type that is contained in the file.",
|
|
62180
|
+
"$ref": "#/definitions/code"
|
|
62181
|
+
},
|
|
62182
|
+
"url": {
|
|
62183
|
+
"description": "The absolute path to the file. The format of the file SHOULD reflect that requested in the _outputFormat parameter of the initial kick-off request.",
|
|
62184
|
+
"$ref": "#/definitions/uri"
|
|
62185
|
+
}
|
|
62186
|
+
},
|
|
62187
|
+
"additionalProperties": false,
|
|
62188
|
+
"required": [
|
|
62189
|
+
"type",
|
|
62190
|
+
"url"
|
|
62191
|
+
]
|
|
62192
|
+
},
|
|
62193
|
+
"SmartAppLaunch": {
|
|
62194
|
+
"description": "This resource contains context details for a SMART App Launch.",
|
|
62195
|
+
"properties": {
|
|
62196
|
+
"resourceType": {
|
|
62197
|
+
"description": "This is a SmartAppLaunch resource",
|
|
62198
|
+
"const": "SmartAppLaunch"
|
|
62199
|
+
},
|
|
62200
|
+
"id": {
|
|
62201
|
+
"description": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
|
|
62202
|
+
"$ref": "#/definitions/id"
|
|
62203
|
+
},
|
|
62204
|
+
"meta": {
|
|
62205
|
+
"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.",
|
|
62206
|
+
"$ref": "#/definitions/Meta"
|
|
62207
|
+
},
|
|
62208
|
+
"implicitRules": {
|
|
62209
|
+
"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.",
|
|
62210
|
+
"$ref": "#/definitions/uri"
|
|
62211
|
+
},
|
|
62212
|
+
"language": {
|
|
62213
|
+
"description": "The base language in which the resource is written.",
|
|
62214
|
+
"$ref": "#/definitions/code"
|
|
62215
|
+
},
|
|
62216
|
+
"patient": {
|
|
62217
|
+
"description": "Optional patient indicating that the app was launched in the patient context.",
|
|
62218
|
+
"$ref": "#/definitions/Reference"
|
|
62219
|
+
},
|
|
62220
|
+
"encounter": {
|
|
62221
|
+
"description": "Optional encounter indicating that the app was launched in the encounter context.",
|
|
62222
|
+
"$ref": "#/definitions/Reference"
|
|
62223
|
+
}
|
|
62224
|
+
},
|
|
62225
|
+
"additionalProperties": false,
|
|
62226
|
+
"required": [
|
|
62227
|
+
"resourceType"
|
|
62228
|
+
]
|
|
62229
|
+
},
|
|
62230
|
+
"DomainConfiguration": {
|
|
62231
|
+
"description": "Domain specific configuration for the Medplum application.",
|
|
62232
|
+
"properties": {
|
|
62233
|
+
"resourceType": {
|
|
62234
|
+
"description": "This is a DomainConfiguration resource",
|
|
62235
|
+
"const": "DomainConfiguration"
|
|
62236
|
+
},
|
|
62237
|
+
"id": {
|
|
62238
|
+
"description": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
|
|
62239
|
+
"$ref": "#/definitions/id"
|
|
62240
|
+
},
|
|
62241
|
+
"meta": {
|
|
62242
|
+
"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.",
|
|
62243
|
+
"$ref": "#/definitions/Meta"
|
|
62244
|
+
},
|
|
62245
|
+
"implicitRules": {
|
|
62246
|
+
"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.",
|
|
62247
|
+
"$ref": "#/definitions/uri"
|
|
62248
|
+
},
|
|
62249
|
+
"language": {
|
|
62250
|
+
"description": "The base language in which the resource is written.",
|
|
62251
|
+
"$ref": "#/definitions/code"
|
|
62252
|
+
},
|
|
62253
|
+
"domain": {
|
|
62254
|
+
"description": "Globally unique domain name for this configuration.",
|
|
62255
|
+
"$ref": "#/definitions/uri"
|
|
62256
|
+
},
|
|
62257
|
+
"identityProvider": {
|
|
62258
|
+
"description": "Optional external Identity Provider (IdP) for the domain name.",
|
|
62259
|
+
"$ref": "#/definitions/IdentityProvider"
|
|
62260
|
+
}
|
|
62261
|
+
},
|
|
62262
|
+
"additionalProperties": false,
|
|
62263
|
+
"required": [
|
|
62264
|
+
"resourceType",
|
|
62265
|
+
"domain"
|
|
62266
|
+
]
|
|
62267
|
+
},
|
|
62268
|
+
"AccessPolicy_IpAccessRule": {
|
|
62269
|
+
"description": "Use IP Access Rules to allowlist, block, and challenge traffic based on the visitor IP address.",
|
|
62270
|
+
"properties": {
|
|
62271
|
+
"name": {
|
|
62272
|
+
"description": "Friendly name that will make it easy for you to identify the IP Access Rule in the future.",
|
|
62273
|
+
"$ref": "#/definitions/string"
|
|
62274
|
+
},
|
|
62275
|
+
"value": {
|
|
62276
|
+
"description": "An IP Access rule will apply a certain action to incoming traffic based on the visitor IP address or IP range.",
|
|
62277
|
+
"$ref": "#/definitions/string"
|
|
62278
|
+
},
|
|
62279
|
+
"action": {
|
|
62280
|
+
"description": "Access rule can perform one of the following actions: \"allow\" | \"block\".",
|
|
62281
|
+
"$ref": "#/definitions/string"
|
|
62282
|
+
}
|
|
62283
|
+
},
|
|
62284
|
+
"additionalProperties": false,
|
|
62285
|
+
"required": [
|
|
62286
|
+
"value",
|
|
62287
|
+
"action"
|
|
62288
|
+
]
|
|
61951
62289
|
}
|
|
61952
62290
|
}
|
|
61953
|
-
}
|
|
62291
|
+
}
|