@digdir/dialogporten-schema 1.97.1-8bdeebb → 1.97.1-bb87bbb
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/swagger.verified.json +811 -16
package/package.json
CHANGED
package/swagger.verified.json
CHANGED
|
@@ -3081,7 +3081,7 @@
|
|
|
3081
3081
|
"type": "string"
|
|
3082
3082
|
},
|
|
3083
3083
|
"id": {
|
|
3084
|
-
"description": "
|
|
3084
|
+
"description": "A UUIDv7 may be provided to support idempotent additions to the list of activities.\nIf not supplied, a new UUIDv7 will be generated.",
|
|
3085
3085
|
"example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
|
|
3086
3086
|
"format": "guid",
|
|
3087
3087
|
"nullable": true,
|
|
@@ -3112,13 +3112,105 @@
|
|
|
3112
3112
|
},
|
|
3113
3113
|
"type": "object"
|
|
3114
3114
|
},
|
|
3115
|
+
"V1ServiceOwnerDialogsCommandsCreateTransmission_TransmissionAttachment": {
|
|
3116
|
+
"additionalProperties": false,
|
|
3117
|
+
"properties": {
|
|
3118
|
+
"displayName": {
|
|
3119
|
+
"description": "The display name of the attachment that should be used in GUIs.",
|
|
3120
|
+
"items": {
|
|
3121
|
+
"$ref": "#/components/schemas/V1CommonLocalizations_Localization"
|
|
3122
|
+
},
|
|
3123
|
+
"nullable": true,
|
|
3124
|
+
"type": "array"
|
|
3125
|
+
},
|
|
3126
|
+
"expiresAt": {
|
|
3127
|
+
"description": "The UTC timestamp when the attachment expires and is no longer available.",
|
|
3128
|
+
"format": "date-time",
|
|
3129
|
+
"nullable": true,
|
|
3130
|
+
"type": "string"
|
|
3131
|
+
},
|
|
3132
|
+
"id": {
|
|
3133
|
+
"description": "A self-defined UUIDv7 may be provided to support idempotent additions of transmission attachments. If not provided, a new UUIDv7 will be generated.",
|
|
3134
|
+
"example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
|
|
3135
|
+
"format": "guid",
|
|
3136
|
+
"nullable": true,
|
|
3137
|
+
"type": "string"
|
|
3138
|
+
},
|
|
3139
|
+
"urls": {
|
|
3140
|
+
"description": "The URLs associated with the attachment, each referring to a different representation of the attachment.",
|
|
3141
|
+
"items": {
|
|
3142
|
+
"$ref": "#/components/schemas/V1ServiceOwnerDialogsCommandsCreateTransmission_TransmissionAttachmentUrl"
|
|
3143
|
+
},
|
|
3144
|
+
"nullable": true,
|
|
3145
|
+
"type": "array"
|
|
3146
|
+
}
|
|
3147
|
+
},
|
|
3148
|
+
"type": "object"
|
|
3149
|
+
},
|
|
3150
|
+
"V1ServiceOwnerDialogsCommandsCreateTransmission_TransmissionAttachmentUrl": {
|
|
3151
|
+
"additionalProperties": false,
|
|
3152
|
+
"properties": {
|
|
3153
|
+
"consumerType": {
|
|
3154
|
+
"description": "The type of consumer the URL is intended for.",
|
|
3155
|
+
"oneOf": [
|
|
3156
|
+
{
|
|
3157
|
+
"$ref": "#/components/schemas/Attachments_AttachmentUrlConsumerType"
|
|
3158
|
+
}
|
|
3159
|
+
]
|
|
3160
|
+
},
|
|
3161
|
+
"mediaType": {
|
|
3162
|
+
"description": "The media type of the attachment.",
|
|
3163
|
+
"example": "application/pdf\napplication/zip",
|
|
3164
|
+
"nullable": true,
|
|
3165
|
+
"type": "string"
|
|
3166
|
+
},
|
|
3167
|
+
"url": {
|
|
3168
|
+
"description": "The fully qualified URL of the attachment.",
|
|
3169
|
+
"format": "uri",
|
|
3170
|
+
"type": "string"
|
|
3171
|
+
}
|
|
3172
|
+
},
|
|
3173
|
+
"type": "object"
|
|
3174
|
+
},
|
|
3175
|
+
"V1ServiceOwnerDialogsCommandsCreateTransmission_TransmissionContent": {
|
|
3176
|
+
"additionalProperties": false,
|
|
3177
|
+
"properties": {
|
|
3178
|
+
"contentReference": {
|
|
3179
|
+
"description": "Front-channel embedded content. Used to dynamically embed content in the frontend from an external URL. Must be HTTPS.",
|
|
3180
|
+
"nullable": true,
|
|
3181
|
+
"oneOf": [
|
|
3182
|
+
{
|
|
3183
|
+
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
3184
|
+
}
|
|
3185
|
+
]
|
|
3186
|
+
},
|
|
3187
|
+
"summary": {
|
|
3188
|
+
"description": "The transmission summary.",
|
|
3189
|
+
"nullable": true,
|
|
3190
|
+
"oneOf": [
|
|
3191
|
+
{
|
|
3192
|
+
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
3193
|
+
}
|
|
3194
|
+
]
|
|
3195
|
+
},
|
|
3196
|
+
"title": {
|
|
3197
|
+
"description": "The transmission title. Must be text/plain.",
|
|
3198
|
+
"oneOf": [
|
|
3199
|
+
{
|
|
3200
|
+
"$ref": "#/components/schemas/V1CommonContent_ContentValue"
|
|
3201
|
+
}
|
|
3202
|
+
]
|
|
3203
|
+
}
|
|
3204
|
+
},
|
|
3205
|
+
"type": "object"
|
|
3206
|
+
},
|
|
3115
3207
|
"V1ServiceOwnerDialogsCommandsCreateTransmission_TransmissionRequest": {
|
|
3116
3208
|
"additionalProperties": false,
|
|
3117
3209
|
"properties": {
|
|
3118
3210
|
"attachments": {
|
|
3119
3211
|
"description": "The transmission-level attachments.",
|
|
3120
3212
|
"items": {
|
|
3121
|
-
"$ref": "#/components/schemas/
|
|
3213
|
+
"$ref": "#/components/schemas/V1ServiceOwnerDialogsCommandsCreateTransmission_TransmissionAttachment"
|
|
3122
3214
|
},
|
|
3123
3215
|
"nullable": true,
|
|
3124
3216
|
"type": "array"
|
|
@@ -3134,7 +3226,7 @@
|
|
|
3134
3226
|
"nullable": true,
|
|
3135
3227
|
"oneOf": [
|
|
3136
3228
|
{
|
|
3137
|
-
"$ref": "#/components/schemas/
|
|
3229
|
+
"$ref": "#/components/schemas/V1ServiceOwnerDialogsCommandsCreateTransmission_TransmissionContent"
|
|
3138
3230
|
}
|
|
3139
3231
|
]
|
|
3140
3232
|
},
|
|
@@ -3155,7 +3247,7 @@
|
|
|
3155
3247
|
"type": "string"
|
|
3156
3248
|
},
|
|
3157
3249
|
"id": {
|
|
3158
|
-
"description": "
|
|
3250
|
+
"description": "A UUIDv7 may be provided to support idempotent additions to the list of transmissions.\nIf not supplied, a new UUIDv7 will be generated.",
|
|
3159
3251
|
"example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
|
|
3160
3252
|
"format": "guid",
|
|
3161
3253
|
"nullable": true,
|
|
@@ -3210,7 +3302,7 @@
|
|
|
3210
3302
|
"type": "string"
|
|
3211
3303
|
},
|
|
3212
3304
|
"id": {
|
|
3213
|
-
"description": "
|
|
3305
|
+
"description": "A UUIDv7 may be provided to support idempotent additions to the list of activities.\nIf not supplied, a new UUIDv7 will be generated.",
|
|
3214
3306
|
"example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
|
|
3215
3307
|
"format": "guid",
|
|
3216
3308
|
"nullable": true,
|
|
@@ -3725,7 +3817,7 @@
|
|
|
3725
3817
|
"type": "string"
|
|
3726
3818
|
},
|
|
3727
3819
|
"id": {
|
|
3728
|
-
"description": "
|
|
3820
|
+
"description": "A UUIDv7 may be provided to support idempotent additions to the list of transmissions.\nIf not supplied, a new UUIDv7 will be generated.",
|
|
3729
3821
|
"example": "01913cd5-784f-7d3b-abef-4c77b1f0972d",
|
|
3730
3822
|
"format": "guid",
|
|
3731
3823
|
"nullable": true,
|
|
@@ -5797,6 +5889,25 @@
|
|
|
5797
5889
|
}
|
|
5798
5890
|
},
|
|
5799
5891
|
"description": "The OAuth 2.0 Authorization Server Metadata"
|
|
5892
|
+
},
|
|
5893
|
+
"503": {
|
|
5894
|
+
"content": {
|
|
5895
|
+
"text/plain": {
|
|
5896
|
+
"schema": {
|
|
5897
|
+
"example": "Service Unavailable",
|
|
5898
|
+
"type": "string"
|
|
5899
|
+
}
|
|
5900
|
+
}
|
|
5901
|
+
},
|
|
5902
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
5903
|
+
"headers": {
|
|
5904
|
+
"Retry-After": {
|
|
5905
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
5906
|
+
"schema": {
|
|
5907
|
+
"type": "string"
|
|
5908
|
+
}
|
|
5909
|
+
}
|
|
5910
|
+
}
|
|
5800
5911
|
}
|
|
5801
5912
|
},
|
|
5802
5913
|
"summary": "Gets the JSON Web Key Set (JWKS) containing the public keys used to verify dialog token signatures",
|
|
@@ -5819,6 +5930,25 @@
|
|
|
5819
5930
|
}
|
|
5820
5931
|
},
|
|
5821
5932
|
"description": "The OAuth 2.0 Authorization Server Metadata"
|
|
5933
|
+
},
|
|
5934
|
+
"503": {
|
|
5935
|
+
"content": {
|
|
5936
|
+
"text/plain": {
|
|
5937
|
+
"schema": {
|
|
5938
|
+
"example": "Service Unavailable",
|
|
5939
|
+
"type": "string"
|
|
5940
|
+
}
|
|
5941
|
+
}
|
|
5942
|
+
},
|
|
5943
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
5944
|
+
"headers": {
|
|
5945
|
+
"Retry-After": {
|
|
5946
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
5947
|
+
"schema": {
|
|
5948
|
+
"type": "string"
|
|
5949
|
+
}
|
|
5950
|
+
}
|
|
5951
|
+
}
|
|
5822
5952
|
}
|
|
5823
5953
|
},
|
|
5824
5954
|
"summary": "Gets the OAuth 2.0 Metadata for automatic configuration of clients verifying dialog tokens",
|
|
@@ -6102,6 +6232,25 @@
|
|
|
6102
6232
|
},
|
|
6103
6233
|
"401": {
|
|
6104
6234
|
"description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \u0022digdir:dialogporten\u0022."
|
|
6235
|
+
},
|
|
6236
|
+
"503": {
|
|
6237
|
+
"content": {
|
|
6238
|
+
"text/plain": {
|
|
6239
|
+
"schema": {
|
|
6240
|
+
"example": "Service Unavailable",
|
|
6241
|
+
"type": "string"
|
|
6242
|
+
}
|
|
6243
|
+
}
|
|
6244
|
+
},
|
|
6245
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
6246
|
+
"headers": {
|
|
6247
|
+
"Retry-After": {
|
|
6248
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
6249
|
+
"schema": {
|
|
6250
|
+
"type": "string"
|
|
6251
|
+
}
|
|
6252
|
+
}
|
|
6253
|
+
}
|
|
6105
6254
|
}
|
|
6106
6255
|
},
|
|
6107
6256
|
"security": [
|
|
@@ -6170,6 +6319,25 @@
|
|
|
6170
6319
|
}
|
|
6171
6320
|
},
|
|
6172
6321
|
"description": "The given dialog ID was not found."
|
|
6322
|
+
},
|
|
6323
|
+
"503": {
|
|
6324
|
+
"content": {
|
|
6325
|
+
"text/plain": {
|
|
6326
|
+
"schema": {
|
|
6327
|
+
"example": "Service Unavailable",
|
|
6328
|
+
"type": "string"
|
|
6329
|
+
}
|
|
6330
|
+
}
|
|
6331
|
+
},
|
|
6332
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
6333
|
+
"headers": {
|
|
6334
|
+
"Retry-After": {
|
|
6335
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
6336
|
+
"schema": {
|
|
6337
|
+
"type": "string"
|
|
6338
|
+
}
|
|
6339
|
+
}
|
|
6340
|
+
}
|
|
6173
6341
|
}
|
|
6174
6342
|
},
|
|
6175
6343
|
"security": [
|
|
@@ -6241,6 +6409,25 @@
|
|
|
6241
6409
|
}
|
|
6242
6410
|
},
|
|
6243
6411
|
"description": "The given dialog ID was not found."
|
|
6412
|
+
},
|
|
6413
|
+
"503": {
|
|
6414
|
+
"content": {
|
|
6415
|
+
"text/plain": {
|
|
6416
|
+
"schema": {
|
|
6417
|
+
"example": "Service Unavailable",
|
|
6418
|
+
"type": "string"
|
|
6419
|
+
}
|
|
6420
|
+
}
|
|
6421
|
+
},
|
|
6422
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
6423
|
+
"headers": {
|
|
6424
|
+
"Retry-After": {
|
|
6425
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
6426
|
+
"schema": {
|
|
6427
|
+
"type": "string"
|
|
6428
|
+
}
|
|
6429
|
+
}
|
|
6430
|
+
}
|
|
6244
6431
|
}
|
|
6245
6432
|
},
|
|
6246
6433
|
"security": [
|
|
@@ -6318,6 +6505,25 @@
|
|
|
6318
6505
|
}
|
|
6319
6506
|
},
|
|
6320
6507
|
"description": "The specified dialog ID or activity ID was not found."
|
|
6508
|
+
},
|
|
6509
|
+
"503": {
|
|
6510
|
+
"content": {
|
|
6511
|
+
"text/plain": {
|
|
6512
|
+
"schema": {
|
|
6513
|
+
"example": "Service Unavailable",
|
|
6514
|
+
"type": "string"
|
|
6515
|
+
}
|
|
6516
|
+
}
|
|
6517
|
+
},
|
|
6518
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
6519
|
+
"headers": {
|
|
6520
|
+
"Retry-After": {
|
|
6521
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
6522
|
+
"schema": {
|
|
6523
|
+
"type": "string"
|
|
6524
|
+
}
|
|
6525
|
+
}
|
|
6526
|
+
}
|
|
6321
6527
|
}
|
|
6322
6528
|
},
|
|
6323
6529
|
"security": [
|
|
@@ -6380,6 +6586,25 @@
|
|
|
6380
6586
|
},
|
|
6381
6587
|
"410": {
|
|
6382
6588
|
"description": "Entity with the given key(s) is removed."
|
|
6589
|
+
},
|
|
6590
|
+
"503": {
|
|
6591
|
+
"content": {
|
|
6592
|
+
"text/plain": {
|
|
6593
|
+
"schema": {
|
|
6594
|
+
"example": "Service Unavailable",
|
|
6595
|
+
"type": "string"
|
|
6596
|
+
}
|
|
6597
|
+
}
|
|
6598
|
+
},
|
|
6599
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
6600
|
+
"headers": {
|
|
6601
|
+
"Retry-After": {
|
|
6602
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
6603
|
+
"schema": {
|
|
6604
|
+
"type": "string"
|
|
6605
|
+
}
|
|
6606
|
+
}
|
|
6607
|
+
}
|
|
6383
6608
|
}
|
|
6384
6609
|
},
|
|
6385
6610
|
"security": [
|
|
@@ -6493,6 +6718,25 @@
|
|
|
6493
6718
|
}
|
|
6494
6719
|
},
|
|
6495
6720
|
"description": "Domain error occurred. See problem details for a list of errors."
|
|
6721
|
+
},
|
|
6722
|
+
"503": {
|
|
6723
|
+
"content": {
|
|
6724
|
+
"text/plain": {
|
|
6725
|
+
"schema": {
|
|
6726
|
+
"example": "Service Unavailable",
|
|
6727
|
+
"type": "string"
|
|
6728
|
+
}
|
|
6729
|
+
}
|
|
6730
|
+
},
|
|
6731
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
6732
|
+
"headers": {
|
|
6733
|
+
"Retry-After": {
|
|
6734
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
6735
|
+
"schema": {
|
|
6736
|
+
"type": "string"
|
|
6737
|
+
}
|
|
6738
|
+
}
|
|
6739
|
+
}
|
|
6496
6740
|
}
|
|
6497
6741
|
},
|
|
6498
6742
|
"security": [
|
|
@@ -6552,6 +6796,25 @@
|
|
|
6552
6796
|
}
|
|
6553
6797
|
},
|
|
6554
6798
|
"description": "Not Found"
|
|
6799
|
+
},
|
|
6800
|
+
"503": {
|
|
6801
|
+
"content": {
|
|
6802
|
+
"text/plain": {
|
|
6803
|
+
"schema": {
|
|
6804
|
+
"example": "Service Unavailable",
|
|
6805
|
+
"type": "string"
|
|
6806
|
+
}
|
|
6807
|
+
}
|
|
6808
|
+
},
|
|
6809
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
6810
|
+
"headers": {
|
|
6811
|
+
"Retry-After": {
|
|
6812
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
6813
|
+
"schema": {
|
|
6814
|
+
"type": "string"
|
|
6815
|
+
}
|
|
6816
|
+
}
|
|
6817
|
+
}
|
|
6555
6818
|
}
|
|
6556
6819
|
},
|
|
6557
6820
|
"security": [
|
|
@@ -6617,6 +6880,25 @@
|
|
|
6617
6880
|
}
|
|
6618
6881
|
},
|
|
6619
6882
|
"description": "Not Found"
|
|
6883
|
+
},
|
|
6884
|
+
"503": {
|
|
6885
|
+
"content": {
|
|
6886
|
+
"text/plain": {
|
|
6887
|
+
"schema": {
|
|
6888
|
+
"example": "Service Unavailable",
|
|
6889
|
+
"type": "string"
|
|
6890
|
+
}
|
|
6891
|
+
}
|
|
6892
|
+
},
|
|
6893
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
6894
|
+
"headers": {
|
|
6895
|
+
"Retry-After": {
|
|
6896
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
6897
|
+
"schema": {
|
|
6898
|
+
"type": "string"
|
|
6899
|
+
}
|
|
6900
|
+
}
|
|
6901
|
+
}
|
|
6620
6902
|
}
|
|
6621
6903
|
},
|
|
6622
6904
|
"security": [
|
|
@@ -6691,6 +6973,25 @@
|
|
|
6691
6973
|
},
|
|
6692
6974
|
"410": {
|
|
6693
6975
|
"description": "Entity with the given key(s) is removed."
|
|
6976
|
+
},
|
|
6977
|
+
"503": {
|
|
6978
|
+
"content": {
|
|
6979
|
+
"text/plain": {
|
|
6980
|
+
"schema": {
|
|
6981
|
+
"example": "Service Unavailable",
|
|
6982
|
+
"type": "string"
|
|
6983
|
+
}
|
|
6984
|
+
}
|
|
6985
|
+
},
|
|
6986
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
6987
|
+
"headers": {
|
|
6988
|
+
"Retry-After": {
|
|
6989
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
6990
|
+
"schema": {
|
|
6991
|
+
"type": "string"
|
|
6992
|
+
}
|
|
6993
|
+
}
|
|
6994
|
+
}
|
|
6694
6995
|
}
|
|
6695
6996
|
},
|
|
6696
6997
|
"security": [
|
|
@@ -6771,6 +7072,25 @@
|
|
|
6771
7072
|
},
|
|
6772
7073
|
"410": {
|
|
6773
7074
|
"description": "Entity with the given key(s) is removed."
|
|
7075
|
+
},
|
|
7076
|
+
"503": {
|
|
7077
|
+
"content": {
|
|
7078
|
+
"text/plain": {
|
|
7079
|
+
"schema": {
|
|
7080
|
+
"example": "Service Unavailable",
|
|
7081
|
+
"type": "string"
|
|
7082
|
+
}
|
|
7083
|
+
}
|
|
7084
|
+
},
|
|
7085
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
7086
|
+
"headers": {
|
|
7087
|
+
"Retry-After": {
|
|
7088
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
7089
|
+
"schema": {
|
|
7090
|
+
"type": "string"
|
|
7091
|
+
}
|
|
7092
|
+
}
|
|
7093
|
+
}
|
|
6774
7094
|
}
|
|
6775
7095
|
},
|
|
6776
7096
|
"security": [
|
|
@@ -6840,16 +7160,35 @@
|
|
|
6840
7160
|
}
|
|
6841
7161
|
},
|
|
6842
7162
|
"description": "Domain error occurred. See problem details for a list of errors."
|
|
6843
|
-
}
|
|
6844
|
-
|
|
6845
|
-
|
|
6846
|
-
|
|
6847
|
-
|
|
6848
|
-
|
|
6849
|
-
|
|
6850
|
-
|
|
6851
|
-
|
|
6852
|
-
|
|
7163
|
+
},
|
|
7164
|
+
"503": {
|
|
7165
|
+
"content": {
|
|
7166
|
+
"text/plain": {
|
|
7167
|
+
"schema": {
|
|
7168
|
+
"example": "Service Unavailable",
|
|
7169
|
+
"type": "string"
|
|
7170
|
+
}
|
|
7171
|
+
}
|
|
7172
|
+
},
|
|
7173
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
7174
|
+
"headers": {
|
|
7175
|
+
"Retry-After": {
|
|
7176
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
7177
|
+
"schema": {
|
|
7178
|
+
"type": "string"
|
|
7179
|
+
}
|
|
7180
|
+
}
|
|
7181
|
+
}
|
|
7182
|
+
}
|
|
7183
|
+
},
|
|
7184
|
+
"security": [
|
|
7185
|
+
{
|
|
7186
|
+
"JWTBearerAuth": [
|
|
7187
|
+
"digdir:dialogporten"
|
|
7188
|
+
]
|
|
7189
|
+
}
|
|
7190
|
+
],
|
|
7191
|
+
"summary": "Sets system labels for multiple dialogs",
|
|
6853
7192
|
"tags": [
|
|
6854
7193
|
"Enduser"
|
|
6855
7194
|
]
|
|
@@ -6878,6 +7217,25 @@
|
|
|
6878
7217
|
},
|
|
6879
7218
|
"403": {
|
|
6880
7219
|
"description": "Forbidden"
|
|
7220
|
+
},
|
|
7221
|
+
"503": {
|
|
7222
|
+
"content": {
|
|
7223
|
+
"text/plain": {
|
|
7224
|
+
"schema": {
|
|
7225
|
+
"example": "Service Unavailable",
|
|
7226
|
+
"type": "string"
|
|
7227
|
+
}
|
|
7228
|
+
}
|
|
7229
|
+
},
|
|
7230
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
7231
|
+
"headers": {
|
|
7232
|
+
"Retry-After": {
|
|
7233
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
7234
|
+
"schema": {
|
|
7235
|
+
"type": "string"
|
|
7236
|
+
}
|
|
7237
|
+
}
|
|
7238
|
+
}
|
|
6881
7239
|
}
|
|
6882
7240
|
},
|
|
6883
7241
|
"security": [
|
|
@@ -7198,6 +7556,25 @@
|
|
|
7198
7556
|
},
|
|
7199
7557
|
"401": {
|
|
7200
7558
|
"description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \u0022digdir:dialogporten.serviceprovider.search\u0022."
|
|
7559
|
+
},
|
|
7560
|
+
"503": {
|
|
7561
|
+
"content": {
|
|
7562
|
+
"text/plain": {
|
|
7563
|
+
"schema": {
|
|
7564
|
+
"example": "Service Unavailable",
|
|
7565
|
+
"type": "string"
|
|
7566
|
+
}
|
|
7567
|
+
}
|
|
7568
|
+
},
|
|
7569
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
7570
|
+
"headers": {
|
|
7571
|
+
"Retry-After": {
|
|
7572
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
7573
|
+
"schema": {
|
|
7574
|
+
"type": "string"
|
|
7575
|
+
}
|
|
7576
|
+
}
|
|
7577
|
+
}
|
|
7201
7578
|
}
|
|
7202
7579
|
},
|
|
7203
7580
|
"security": [
|
|
@@ -7279,6 +7656,25 @@
|
|
|
7279
7656
|
}
|
|
7280
7657
|
},
|
|
7281
7658
|
"description": "Domain error occurred. See problem details for a list of errors."
|
|
7659
|
+
},
|
|
7660
|
+
"503": {
|
|
7661
|
+
"content": {
|
|
7662
|
+
"text/plain": {
|
|
7663
|
+
"schema": {
|
|
7664
|
+
"example": "Service Unavailable",
|
|
7665
|
+
"type": "string"
|
|
7666
|
+
}
|
|
7667
|
+
}
|
|
7668
|
+
},
|
|
7669
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
7670
|
+
"headers": {
|
|
7671
|
+
"Retry-After": {
|
|
7672
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
7673
|
+
"schema": {
|
|
7674
|
+
"type": "string"
|
|
7675
|
+
}
|
|
7676
|
+
}
|
|
7677
|
+
}
|
|
7282
7678
|
}
|
|
7283
7679
|
},
|
|
7284
7680
|
"security": [
|
|
@@ -7369,6 +7765,25 @@
|
|
|
7369
7765
|
}
|
|
7370
7766
|
},
|
|
7371
7767
|
"description": "The supplied If-Match header did not match the current Revision value for the dialog. The request was not applied."
|
|
7768
|
+
},
|
|
7769
|
+
"503": {
|
|
7770
|
+
"content": {
|
|
7771
|
+
"text/plain": {
|
|
7772
|
+
"schema": {
|
|
7773
|
+
"example": "Service Unavailable",
|
|
7774
|
+
"type": "string"
|
|
7775
|
+
}
|
|
7776
|
+
}
|
|
7777
|
+
},
|
|
7778
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
7779
|
+
"headers": {
|
|
7780
|
+
"Retry-After": {
|
|
7781
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
7782
|
+
"schema": {
|
|
7783
|
+
"type": "string"
|
|
7784
|
+
}
|
|
7785
|
+
}
|
|
7786
|
+
}
|
|
7372
7787
|
}
|
|
7373
7788
|
},
|
|
7374
7789
|
"security": [
|
|
@@ -7432,6 +7847,25 @@
|
|
|
7432
7847
|
}
|
|
7433
7848
|
},
|
|
7434
7849
|
"description": "The given dialog ID was not found."
|
|
7850
|
+
},
|
|
7851
|
+
"503": {
|
|
7852
|
+
"content": {
|
|
7853
|
+
"text/plain": {
|
|
7854
|
+
"schema": {
|
|
7855
|
+
"example": "Service Unavailable",
|
|
7856
|
+
"type": "string"
|
|
7857
|
+
}
|
|
7858
|
+
}
|
|
7859
|
+
},
|
|
7860
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
7861
|
+
"headers": {
|
|
7862
|
+
"Retry-After": {
|
|
7863
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
7864
|
+
"schema": {
|
|
7865
|
+
"type": "string"
|
|
7866
|
+
}
|
|
7867
|
+
}
|
|
7868
|
+
}
|
|
7435
7869
|
}
|
|
7436
7870
|
},
|
|
7437
7871
|
"security": [
|
|
@@ -7555,6 +7989,25 @@
|
|
|
7555
7989
|
}
|
|
7556
7990
|
},
|
|
7557
7991
|
"description": "Domain error occurred. See problem details for a list of errors."
|
|
7992
|
+
},
|
|
7993
|
+
"503": {
|
|
7994
|
+
"content": {
|
|
7995
|
+
"text/plain": {
|
|
7996
|
+
"schema": {
|
|
7997
|
+
"example": "Service Unavailable",
|
|
7998
|
+
"type": "string"
|
|
7999
|
+
}
|
|
8000
|
+
}
|
|
8001
|
+
},
|
|
8002
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8003
|
+
"headers": {
|
|
8004
|
+
"Retry-After": {
|
|
8005
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8006
|
+
"schema": {
|
|
8007
|
+
"type": "string"
|
|
8008
|
+
}
|
|
8009
|
+
}
|
|
8010
|
+
}
|
|
7558
8011
|
}
|
|
7559
8012
|
},
|
|
7560
8013
|
"security": [
|
|
@@ -7664,6 +8117,25 @@
|
|
|
7664
8117
|
}
|
|
7665
8118
|
},
|
|
7666
8119
|
"description": "Domain error occurred. See problem details for a list of errors."
|
|
8120
|
+
},
|
|
8121
|
+
"503": {
|
|
8122
|
+
"content": {
|
|
8123
|
+
"text/plain": {
|
|
8124
|
+
"schema": {
|
|
8125
|
+
"example": "Service Unavailable",
|
|
8126
|
+
"type": "string"
|
|
8127
|
+
}
|
|
8128
|
+
}
|
|
8129
|
+
},
|
|
8130
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8131
|
+
"headers": {
|
|
8132
|
+
"Retry-After": {
|
|
8133
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8134
|
+
"schema": {
|
|
8135
|
+
"type": "string"
|
|
8136
|
+
}
|
|
8137
|
+
}
|
|
8138
|
+
}
|
|
7667
8139
|
}
|
|
7668
8140
|
},
|
|
7669
8141
|
"security": [
|
|
@@ -7754,6 +8226,25 @@
|
|
|
7754
8226
|
}
|
|
7755
8227
|
},
|
|
7756
8228
|
"description": "The supplied If-Match header did not match the current Revision value for the dialog. The request was not applied."
|
|
8229
|
+
},
|
|
8230
|
+
"503": {
|
|
8231
|
+
"content": {
|
|
8232
|
+
"text/plain": {
|
|
8233
|
+
"schema": {
|
|
8234
|
+
"example": "Service Unavailable",
|
|
8235
|
+
"type": "string"
|
|
8236
|
+
}
|
|
8237
|
+
}
|
|
8238
|
+
},
|
|
8239
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8240
|
+
"headers": {
|
|
8241
|
+
"Retry-After": {
|
|
8242
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8243
|
+
"schema": {
|
|
8244
|
+
"type": "string"
|
|
8245
|
+
}
|
|
8246
|
+
}
|
|
8247
|
+
}
|
|
7757
8248
|
}
|
|
7758
8249
|
},
|
|
7759
8250
|
"security": [
|
|
@@ -7822,6 +8313,25 @@
|
|
|
7822
8313
|
}
|
|
7823
8314
|
},
|
|
7824
8315
|
"description": "The supplied If-Match header did not match the current Revision value for the dialog. The request was not applied."
|
|
8316
|
+
},
|
|
8317
|
+
"503": {
|
|
8318
|
+
"content": {
|
|
8319
|
+
"text/plain": {
|
|
8320
|
+
"schema": {
|
|
8321
|
+
"example": "Service Unavailable",
|
|
8322
|
+
"type": "string"
|
|
8323
|
+
}
|
|
8324
|
+
}
|
|
8325
|
+
},
|
|
8326
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8327
|
+
"headers": {
|
|
8328
|
+
"Retry-After": {
|
|
8329
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8330
|
+
"schema": {
|
|
8331
|
+
"type": "string"
|
|
8332
|
+
}
|
|
8333
|
+
}
|
|
8334
|
+
}
|
|
7825
8335
|
}
|
|
7826
8336
|
},
|
|
7827
8337
|
"security": [
|
|
@@ -7890,6 +8400,25 @@
|
|
|
7890
8400
|
}
|
|
7891
8401
|
},
|
|
7892
8402
|
"description": "The supplied If-Match header did not match the current Revision value for the dialog. The request was not applied."
|
|
8403
|
+
},
|
|
8404
|
+
"503": {
|
|
8405
|
+
"content": {
|
|
8406
|
+
"text/plain": {
|
|
8407
|
+
"schema": {
|
|
8408
|
+
"example": "Service Unavailable",
|
|
8409
|
+
"type": "string"
|
|
8410
|
+
}
|
|
8411
|
+
}
|
|
8412
|
+
},
|
|
8413
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8414
|
+
"headers": {
|
|
8415
|
+
"Retry-After": {
|
|
8416
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8417
|
+
"schema": {
|
|
8418
|
+
"type": "string"
|
|
8419
|
+
}
|
|
8420
|
+
}
|
|
8421
|
+
}
|
|
7893
8422
|
}
|
|
7894
8423
|
},
|
|
7895
8424
|
"security": [
|
|
@@ -7969,6 +8498,25 @@
|
|
|
7969
8498
|
},
|
|
7970
8499
|
"403": {
|
|
7971
8500
|
"description": "Forbidden"
|
|
8501
|
+
},
|
|
8502
|
+
"503": {
|
|
8503
|
+
"content": {
|
|
8504
|
+
"text/plain": {
|
|
8505
|
+
"schema": {
|
|
8506
|
+
"example": "Service Unavailable",
|
|
8507
|
+
"type": "string"
|
|
8508
|
+
}
|
|
8509
|
+
}
|
|
8510
|
+
},
|
|
8511
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8512
|
+
"headers": {
|
|
8513
|
+
"Retry-After": {
|
|
8514
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8515
|
+
"schema": {
|
|
8516
|
+
"type": "string"
|
|
8517
|
+
}
|
|
8518
|
+
}
|
|
8519
|
+
}
|
|
7972
8520
|
}
|
|
7973
8521
|
},
|
|
7974
8522
|
"security": [
|
|
@@ -8028,6 +8576,25 @@
|
|
|
8028
8576
|
}
|
|
8029
8577
|
},
|
|
8030
8578
|
"description": "The given dialog ID was not found."
|
|
8579
|
+
},
|
|
8580
|
+
"503": {
|
|
8581
|
+
"content": {
|
|
8582
|
+
"text/plain": {
|
|
8583
|
+
"schema": {
|
|
8584
|
+
"example": "Service Unavailable",
|
|
8585
|
+
"type": "string"
|
|
8586
|
+
}
|
|
8587
|
+
}
|
|
8588
|
+
},
|
|
8589
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8590
|
+
"headers": {
|
|
8591
|
+
"Retry-After": {
|
|
8592
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8593
|
+
"schema": {
|
|
8594
|
+
"type": "string"
|
|
8595
|
+
}
|
|
8596
|
+
}
|
|
8597
|
+
}
|
|
8031
8598
|
}
|
|
8032
8599
|
},
|
|
8033
8600
|
"security": [
|
|
@@ -8150,6 +8717,25 @@
|
|
|
8150
8717
|
}
|
|
8151
8718
|
},
|
|
8152
8719
|
"description": "Domain error occurred. See problem details for a list of errors."
|
|
8720
|
+
},
|
|
8721
|
+
"503": {
|
|
8722
|
+
"content": {
|
|
8723
|
+
"text/plain": {
|
|
8724
|
+
"schema": {
|
|
8725
|
+
"example": "Service Unavailable",
|
|
8726
|
+
"type": "string"
|
|
8727
|
+
}
|
|
8728
|
+
}
|
|
8729
|
+
},
|
|
8730
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8731
|
+
"headers": {
|
|
8732
|
+
"Retry-After": {
|
|
8733
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8734
|
+
"schema": {
|
|
8735
|
+
"type": "string"
|
|
8736
|
+
}
|
|
8737
|
+
}
|
|
8738
|
+
}
|
|
8153
8739
|
}
|
|
8154
8740
|
},
|
|
8155
8741
|
"security": [
|
|
@@ -8218,6 +8804,25 @@
|
|
|
8218
8804
|
},
|
|
8219
8805
|
"410": {
|
|
8220
8806
|
"description": "Entity with the given key(s) is removed."
|
|
8807
|
+
},
|
|
8808
|
+
"503": {
|
|
8809
|
+
"content": {
|
|
8810
|
+
"text/plain": {
|
|
8811
|
+
"schema": {
|
|
8812
|
+
"example": "Service Unavailable",
|
|
8813
|
+
"type": "string"
|
|
8814
|
+
}
|
|
8815
|
+
}
|
|
8816
|
+
},
|
|
8817
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8818
|
+
"headers": {
|
|
8819
|
+
"Retry-After": {
|
|
8820
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8821
|
+
"schema": {
|
|
8822
|
+
"type": "string"
|
|
8823
|
+
}
|
|
8824
|
+
}
|
|
8825
|
+
}
|
|
8221
8826
|
}
|
|
8222
8827
|
},
|
|
8223
8828
|
"security": [
|
|
@@ -8267,6 +8872,25 @@
|
|
|
8267
8872
|
}
|
|
8268
8873
|
},
|
|
8269
8874
|
"description": "The given dialog ID was not found."
|
|
8875
|
+
},
|
|
8876
|
+
"503": {
|
|
8877
|
+
"content": {
|
|
8878
|
+
"text/plain": {
|
|
8879
|
+
"schema": {
|
|
8880
|
+
"example": "Service Unavailable",
|
|
8881
|
+
"type": "string"
|
|
8882
|
+
}
|
|
8883
|
+
}
|
|
8884
|
+
},
|
|
8885
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8886
|
+
"headers": {
|
|
8887
|
+
"Retry-After": {
|
|
8888
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8889
|
+
"schema": {
|
|
8890
|
+
"type": "string"
|
|
8891
|
+
}
|
|
8892
|
+
}
|
|
8893
|
+
}
|
|
8270
8894
|
}
|
|
8271
8895
|
},
|
|
8272
8896
|
"security": [
|
|
@@ -8353,6 +8977,25 @@
|
|
|
8353
8977
|
}
|
|
8354
8978
|
},
|
|
8355
8979
|
"description": "The supplied If-Match header did not match the current Revision value for the dialog. The request was not applied."
|
|
8980
|
+
},
|
|
8981
|
+
"503": {
|
|
8982
|
+
"content": {
|
|
8983
|
+
"text/plain": {
|
|
8984
|
+
"schema": {
|
|
8985
|
+
"example": "Service Unavailable",
|
|
8986
|
+
"type": "string"
|
|
8987
|
+
}
|
|
8988
|
+
}
|
|
8989
|
+
},
|
|
8990
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
8991
|
+
"headers": {
|
|
8992
|
+
"Retry-After": {
|
|
8993
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
8994
|
+
"schema": {
|
|
8995
|
+
"type": "string"
|
|
8996
|
+
}
|
|
8997
|
+
}
|
|
8998
|
+
}
|
|
8356
8999
|
}
|
|
8357
9000
|
},
|
|
8358
9001
|
"security": [
|
|
@@ -8438,6 +9081,25 @@
|
|
|
8438
9081
|
}
|
|
8439
9082
|
},
|
|
8440
9083
|
"description": ""
|
|
9084
|
+
},
|
|
9085
|
+
"503": {
|
|
9086
|
+
"content": {
|
|
9087
|
+
"text/plain": {
|
|
9088
|
+
"schema": {
|
|
9089
|
+
"example": "Service Unavailable",
|
|
9090
|
+
"type": "string"
|
|
9091
|
+
}
|
|
9092
|
+
}
|
|
9093
|
+
},
|
|
9094
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
9095
|
+
"headers": {
|
|
9096
|
+
"Retry-After": {
|
|
9097
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
9098
|
+
"schema": {
|
|
9099
|
+
"type": "string"
|
|
9100
|
+
}
|
|
9101
|
+
}
|
|
9102
|
+
}
|
|
8441
9103
|
}
|
|
8442
9104
|
},
|
|
8443
9105
|
"security": [
|
|
@@ -8559,6 +9221,25 @@
|
|
|
8559
9221
|
}
|
|
8560
9222
|
},
|
|
8561
9223
|
"description": "Domain error occurred. See problem details for a list of errors."
|
|
9224
|
+
},
|
|
9225
|
+
"503": {
|
|
9226
|
+
"content": {
|
|
9227
|
+
"text/plain": {
|
|
9228
|
+
"schema": {
|
|
9229
|
+
"example": "Service Unavailable",
|
|
9230
|
+
"type": "string"
|
|
9231
|
+
}
|
|
9232
|
+
}
|
|
9233
|
+
},
|
|
9234
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
9235
|
+
"headers": {
|
|
9236
|
+
"Retry-After": {
|
|
9237
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
9238
|
+
"schema": {
|
|
9239
|
+
"type": "string"
|
|
9240
|
+
}
|
|
9241
|
+
}
|
|
9242
|
+
}
|
|
8562
9243
|
}
|
|
8563
9244
|
},
|
|
8564
9245
|
"security": [
|
|
@@ -8621,6 +9302,25 @@
|
|
|
8621
9302
|
},
|
|
8622
9303
|
"410": {
|
|
8623
9304
|
"description": "Entity with the given key(s) is removed."
|
|
9305
|
+
},
|
|
9306
|
+
"503": {
|
|
9307
|
+
"content": {
|
|
9308
|
+
"text/plain": {
|
|
9309
|
+
"schema": {
|
|
9310
|
+
"example": "Service Unavailable",
|
|
9311
|
+
"type": "string"
|
|
9312
|
+
}
|
|
9313
|
+
}
|
|
9314
|
+
},
|
|
9315
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
9316
|
+
"headers": {
|
|
9317
|
+
"Retry-After": {
|
|
9318
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
9319
|
+
"schema": {
|
|
9320
|
+
"type": "string"
|
|
9321
|
+
}
|
|
9322
|
+
}
|
|
9323
|
+
}
|
|
8624
9324
|
}
|
|
8625
9325
|
},
|
|
8626
9326
|
"security": [
|
|
@@ -8689,6 +9389,25 @@
|
|
|
8689
9389
|
},
|
|
8690
9390
|
"410": {
|
|
8691
9391
|
"description": "Entity with the given key(s) is removed."
|
|
9392
|
+
},
|
|
9393
|
+
"503": {
|
|
9394
|
+
"content": {
|
|
9395
|
+
"text/plain": {
|
|
9396
|
+
"schema": {
|
|
9397
|
+
"example": "Service Unavailable",
|
|
9398
|
+
"type": "string"
|
|
9399
|
+
}
|
|
9400
|
+
}
|
|
9401
|
+
},
|
|
9402
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
9403
|
+
"headers": {
|
|
9404
|
+
"Retry-After": {
|
|
9405
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
9406
|
+
"schema": {
|
|
9407
|
+
"type": "string"
|
|
9408
|
+
}
|
|
9409
|
+
}
|
|
9410
|
+
}
|
|
8692
9411
|
}
|
|
8693
9412
|
},
|
|
8694
9413
|
"security": [
|
|
@@ -8751,6 +9470,25 @@
|
|
|
8751
9470
|
},
|
|
8752
9471
|
"410": {
|
|
8753
9472
|
"description": "Entity with the given key(s) is removed."
|
|
9473
|
+
},
|
|
9474
|
+
"503": {
|
|
9475
|
+
"content": {
|
|
9476
|
+
"text/plain": {
|
|
9477
|
+
"schema": {
|
|
9478
|
+
"example": "Service Unavailable",
|
|
9479
|
+
"type": "string"
|
|
9480
|
+
}
|
|
9481
|
+
}
|
|
9482
|
+
},
|
|
9483
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
9484
|
+
"headers": {
|
|
9485
|
+
"Retry-After": {
|
|
9486
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
9487
|
+
"schema": {
|
|
9488
|
+
"type": "string"
|
|
9489
|
+
}
|
|
9490
|
+
}
|
|
9491
|
+
}
|
|
8754
9492
|
}
|
|
8755
9493
|
},
|
|
8756
9494
|
"security": [
|
|
@@ -8873,6 +9611,25 @@
|
|
|
8873
9611
|
}
|
|
8874
9612
|
},
|
|
8875
9613
|
"description": "Domain error occurred. See problem details for a list of errors."
|
|
9614
|
+
},
|
|
9615
|
+
"503": {
|
|
9616
|
+
"content": {
|
|
9617
|
+
"text/plain": {
|
|
9618
|
+
"schema": {
|
|
9619
|
+
"example": "Service Unavailable",
|
|
9620
|
+
"type": "string"
|
|
9621
|
+
}
|
|
9622
|
+
}
|
|
9623
|
+
},
|
|
9624
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
9625
|
+
"headers": {
|
|
9626
|
+
"Retry-After": {
|
|
9627
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
9628
|
+
"schema": {
|
|
9629
|
+
"type": "string"
|
|
9630
|
+
}
|
|
9631
|
+
}
|
|
9632
|
+
}
|
|
8876
9633
|
}
|
|
8877
9634
|
},
|
|
8878
9635
|
"security": [
|
|
@@ -8941,6 +9698,25 @@
|
|
|
8941
9698
|
},
|
|
8942
9699
|
"410": {
|
|
8943
9700
|
"description": "Entity with the given key(s) is removed."
|
|
9701
|
+
},
|
|
9702
|
+
"503": {
|
|
9703
|
+
"content": {
|
|
9704
|
+
"text/plain": {
|
|
9705
|
+
"schema": {
|
|
9706
|
+
"example": "Service Unavailable",
|
|
9707
|
+
"type": "string"
|
|
9708
|
+
}
|
|
9709
|
+
}
|
|
9710
|
+
},
|
|
9711
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
9712
|
+
"headers": {
|
|
9713
|
+
"Retry-After": {
|
|
9714
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
9715
|
+
"schema": {
|
|
9716
|
+
"type": "string"
|
|
9717
|
+
}
|
|
9718
|
+
}
|
|
9719
|
+
}
|
|
8944
9720
|
}
|
|
8945
9721
|
},
|
|
8946
9722
|
"security": [
|
|
@@ -9020,6 +9796,25 @@
|
|
|
9020
9796
|
}
|
|
9021
9797
|
},
|
|
9022
9798
|
"description": "Domain error occurred. See problem details for a list of errors."
|
|
9799
|
+
},
|
|
9800
|
+
"503": {
|
|
9801
|
+
"content": {
|
|
9802
|
+
"text/plain": {
|
|
9803
|
+
"schema": {
|
|
9804
|
+
"example": "Service Unavailable",
|
|
9805
|
+
"type": "string"
|
|
9806
|
+
}
|
|
9807
|
+
}
|
|
9808
|
+
},
|
|
9809
|
+
"description": "Service Unavailable, used when Dialogporten is in maintenance mode",
|
|
9810
|
+
"headers": {
|
|
9811
|
+
"Retry-After": {
|
|
9812
|
+
"description": "Delay before retrying the request. Datetime format RFC1123",
|
|
9813
|
+
"schema": {
|
|
9814
|
+
"type": "string"
|
|
9815
|
+
}
|
|
9816
|
+
}
|
|
9817
|
+
}
|
|
9023
9818
|
}
|
|
9024
9819
|
},
|
|
9025
9820
|
"security": [
|