@digdir/dialogporten-schema 1.8.1-dbe296a → 1.9.0-e39ed87

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.
@@ -1,4 +1,4 @@
1
- {
1
+ {
2
2
  "openapi": "3.0.0",
3
3
  "info": {
4
4
  "title": "Dialogporten",
@@ -54,6 +54,212 @@
54
54
  }
55
55
  }
56
56
  },
57
+ "/api/v1/serviceowner/dialogs/{dialogId}/transmissions": {
58
+ "get": {
59
+ "tags": [
60
+ "Serviceowner"
61
+ ],
62
+ "summary": "Gets a list of dialog transmissions",
63
+ "description": "Gets the list of transmissions belonging to a dialog",
64
+ "operationId": "GetDialogTransmissionListSO",
65
+ "parameters": [
66
+ {
67
+ "name": "dialogId",
68
+ "in": "path",
69
+ "required": true,
70
+ "schema": {
71
+ "type": "string",
72
+ "format": "guid"
73
+ }
74
+ }
75
+ ],
76
+ "responses": {
77
+ "200": {
78
+ "description": "Successfully returned the dialog transmission list.",
79
+ "content": {
80
+ "text/plain": {
81
+ "schema": {}
82
+ },
83
+ "application/json": {
84
+ "schema": {}
85
+ }
86
+ }
87
+ },
88
+ "401": {
89
+ "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten.serviceprovider\"."
90
+ },
91
+ "403": {
92
+ "description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
93
+ }
94
+ },
95
+ "security": [
96
+ {
97
+ "JWTBearerAuth": []
98
+ }
99
+ ]
100
+ },
101
+ "post": {
102
+ "tags": [
103
+ "Serviceowner"
104
+ ],
105
+ "summary": "Adds a transmission to a dialog",
106
+ "description": "The transmission is created with the given configuration. For more information see the documentation (link TBD).\n\nOptimistic concurrency control is implemented using the If-Match header. Supply the Revision value from the GetDialog endpoint to ensure that the dialog is not modified/deleted by another request in the meantime.",
107
+ "operationId": "CreateDialogTransmission",
108
+ "parameters": [
109
+ {
110
+ "name": "dialogId",
111
+ "in": "path",
112
+ "required": true,
113
+ "schema": {
114
+ "type": "string",
115
+ "format": "guid"
116
+ }
117
+ },
118
+ {
119
+ "name": "if-Match",
120
+ "in": "header",
121
+ "schema": {
122
+ "type": "string",
123
+ "format": "guid",
124
+ "nullable": true
125
+ }
126
+ }
127
+ ],
128
+ "requestBody": {
129
+ "x-name": "CreateDialogTransmissionRequest",
130
+ "description": "",
131
+ "content": {
132
+ "application/json": {
133
+ "schema": {
134
+ "$ref": "#/components/schemas/CreateDialogTransmissionRequest"
135
+ }
136
+ }
137
+ },
138
+ "required": true,
139
+ "x-position": 1
140
+ },
141
+ "responses": {
142
+ "401": {
143
+ "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten.serviceprovider\"."
144
+ },
145
+ "403": {
146
+ "description": "Unauthorized to create child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
147
+ },
148
+ "201": {
149
+ "description": "The UUID of the created the dialog transmission. A relative URL to the newly created activity is set in the \"Location\" header.",
150
+ "content": {
151
+ "application/json": {
152
+ "schema": {
153
+ "type": "string"
154
+ },
155
+ "example": "018bb8e5-d9d0-7434-8ec5-569a6c8e01fc"
156
+ }
157
+ }
158
+ },
159
+ "400": {
160
+ "description": "Validation error occured. See problem details for a list of errors.",
161
+ "content": {
162
+ "application/problem+json": {
163
+ "schema": {
164
+ "$ref": "#/components/schemas/ProblemDetails"
165
+ }
166
+ }
167
+ }
168
+ },
169
+ "404": {
170
+ "description": "The given dialog ID was not found or is already deleted.",
171
+ "content": {
172
+ "application/problem+json": {
173
+ "schema": {
174
+ "$ref": "#/components/schemas/ProblemDetails"
175
+ }
176
+ }
177
+ }
178
+ },
179
+ "412": {
180
+ "description": "The supplied If-Match header did not match the current Revision value for the dialog. The request was not applied.",
181
+ "content": {
182
+ "application/problem+json": {
183
+ "schema": {
184
+ "$ref": "#/components/schemas/ProblemDetails"
185
+ }
186
+ }
187
+ }
188
+ },
189
+ "422": {
190
+ "description": "Domain error occured. See problem details for a list of errors.",
191
+ "content": {
192
+ "application/problem+json": {
193
+ "schema": {
194
+ "$ref": "#/components/schemas/ProblemDetails"
195
+ }
196
+ }
197
+ }
198
+ }
199
+ },
200
+ "security": [
201
+ {
202
+ "JWTBearerAuth": []
203
+ }
204
+ ]
205
+ }
206
+ },
207
+ "/api/v1/serviceowner/dialogs/{dialogId}/transmissions/{transmissionId}": {
208
+ "get": {
209
+ "tags": [
210
+ "Serviceowner"
211
+ ],
212
+ "summary": "Gets a single dialog transmission",
213
+ "description": "Gets a single transmission belonging to a dialog. For more information see the documentation (link TBD).",
214
+ "operationId": "GetDialogTransmissionSO",
215
+ "parameters": [
216
+ {
217
+ "name": "dialogId",
218
+ "in": "path",
219
+ "required": true,
220
+ "schema": {
221
+ "type": "string",
222
+ "format": "guid"
223
+ }
224
+ },
225
+ {
226
+ "name": "transmissionId",
227
+ "in": "path",
228
+ "required": true,
229
+ "schema": {
230
+ "type": "string",
231
+ "format": "guid"
232
+ }
233
+ }
234
+ ],
235
+ "responses": {
236
+ "401": {
237
+ "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten.serviceprovider\"."
238
+ },
239
+ "403": {
240
+ "description": "Unauthorized to get child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
241
+ },
242
+ "200": {
243
+ "description": "Successfully returned the dialog transmission."
244
+ },
245
+ "404": {
246
+ "description": "The given dialog ID was not found or was deleted, or the given transmission ID was not found.",
247
+ "content": {
248
+ "application/problem+json": {
249
+ "schema": {
250
+ "$ref": "#/components/schemas/ProblemDetails"
251
+ }
252
+ }
253
+ }
254
+ }
255
+ },
256
+ "security": [
257
+ {
258
+ "JWTBearerAuth": []
259
+ }
260
+ ]
261
+ }
262
+ },
57
263
  "/api/v1/serviceowner/dialogs/{dialogId}/seenlog": {
58
264
  "get": {
59
265
  "tags": [
@@ -221,28 +427,38 @@
221
427
  "DueAt": "2084-04-04T12:13:10.01344+00:00",
222
428
  "ExpiresAt": "2095-05-04T12:13:10.01344+00:00",
223
429
  "Status": 1,
224
- "Content": [
225
- {
226
- "Type": 1,
430
+ "Content": {
431
+ "Title": {
227
432
  "Value": [
228
433
  {
229
- "Value": "Some Title",
230
- "CultureCode": "en-us"
434
+ "Value": "Some title",
435
+ "LanguageCode": "en"
231
436
  }
232
437
  ],
233
- "MediaType": null
438
+ "MediaType": "text/plain"
234
439
  },
235
- {
236
- "Type": 3,
440
+ "Summary": {
237
441
  "Value": [
238
442
  {
239
443
  "Value": "Some Summary",
240
- "CultureCode": "en-us"
444
+ "LanguageCode": "en"
241
445
  }
242
446
  ],
243
- "MediaType": null
244
- }
245
- ],
447
+ "MediaType": "text/plain"
448
+ },
449
+ "SenderName": null,
450
+ "AdditionalInfo": {
451
+ "Value": [
452
+ {
453
+ "Value": "Some description with *markdown* support",
454
+ "LanguageCode": "en"
455
+ }
456
+ ],
457
+ "MediaType": "text/markdown"
458
+ },
459
+ "ExtendedStatus": null,
460
+ "MainContentReference": null
461
+ },
246
462
  "SearchTags": [
247
463
  {
248
464
  "Value": "searchTag"
@@ -257,7 +473,7 @@
257
473
  "DisplayName": [
258
474
  {
259
475
  "Value": "Some display name",
260
- "CultureCode": "en-us"
476
+ "LanguageCode": "en"
261
477
  }
262
478
  ],
263
479
  "Urls": [
@@ -282,11 +498,11 @@
282
498
  "Title": [
283
499
  {
284
500
  "Value": "GUI action title",
285
- "CultureCode": "en-us"
501
+ "LanguageCode": "en"
286
502
  },
287
503
  {
288
504
  "Value": "GUI action-tittel",
289
- "CultureCode": "nb-no"
505
+ "LanguageCode": "nb"
290
506
  }
291
507
  ],
292
508
  "Prompt": null
@@ -319,15 +535,19 @@
319
535
  "ExtendedType": null,
320
536
  "Type": 3,
321
537
  "RelatedActivityId": null,
322
- "PerformedBy": "Some performed",
538
+ "PerformedBy": {
539
+ "ActorType": 2,
540
+ "ActorName": null,
541
+ "ActorId": null
542
+ },
323
543
  "Description": [
324
544
  {
325
545
  "Value": "Some description",
326
- "CultureCode": "en-us"
546
+ "LanguageCode": "en"
327
547
  },
328
548
  {
329
549
  "Value": "En beskrivelse",
330
- "CultureCode": "nb-no"
550
+ "LanguageCode": "nb"
331
551
  }
332
552
  ]
333
553
  }
@@ -786,9 +1006,9 @@
786
1006
  }
787
1007
  },
788
1008
  {
789
- "name": "searchCultureCode",
1009
+ "name": "searchLanguageCode",
790
1010
  "in": "query",
791
- "description": "Limit free text search to texts with this culture code, e.g. \\\"nb-NO\\\". Default: search all culture codes",
1011
+ "description": "Limit free text search to texts with this language code, e.g. 'no', 'en'. Culture codes will be normalized to neutral language codes (ISO 639). Default: search all culture codes",
792
1012
  "schema": {
793
1013
  "type": "string",
794
1014
  "nullable": true
@@ -1225,14 +1445,14 @@
1225
1445
  ]
1226
1446
  }
1227
1447
  },
1228
- "/api/v1/enduser/dialogs/{dialogId}/seenlog": {
1448
+ "/api/v1/enduser/dialogs/{dialogId}/transmissions": {
1229
1449
  "get": {
1230
1450
  "tags": [
1231
1451
  "Enduser"
1232
1452
  ],
1233
- "summary": "Gets a single dialog seen log record",
1234
- "description": "Gets a single dialog seen log record. For more information see the documentation (link TBD).",
1235
- "operationId": "SearchDialogSeenLog",
1453
+ "summary": "Gets a list of dialog transmissions",
1454
+ "description": "Gets the list of transmissions belonging to a dialog",
1455
+ "operationId": "GetDialogTransmissionListEU",
1236
1456
  "parameters": [
1237
1457
  {
1238
1458
  "name": "dialogId",
@@ -1245,34 +1465,22 @@
1245
1465
  }
1246
1466
  ],
1247
1467
  "responses": {
1248
- "401": {
1249
- "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten\"."
1250
- },
1251
- "403": {
1252
- "description": "Forbidden"
1253
- },
1254
1468
  "200": {
1255
- "description": "Successfully returned the dialog seen log record.",
1469
+ "description": "Successfully returned the dialog transmission list.",
1256
1470
  "content": {
1471
+ "text/plain": {
1472
+ "schema": {}
1473
+ },
1257
1474
  "application/json": {
1258
- "schema": {
1259
- "type": "array",
1260
- "items": {
1261
- "$ref": "#/components/schemas/SearchDialogSeenLogDto"
1262
- }
1263
- }
1475
+ "schema": {}
1264
1476
  }
1265
1477
  }
1266
1478
  },
1267
- "404": {
1268
- "description": "Not Found",
1269
- "content": {
1270
- "application/problem+json": {
1271
- "schema": {
1272
- "$ref": "#/components/schemas/ProblemDetails"
1273
- }
1274
- }
1275
- }
1479
+ "401": {
1480
+ "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten\"."
1481
+ },
1482
+ "403": {
1483
+ "description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
1276
1484
  }
1277
1485
  },
1278
1486
  "security": [
@@ -1282,14 +1490,14 @@
1282
1490
  ]
1283
1491
  }
1284
1492
  },
1285
- "/api/v1/enduser/dialogs/{dialogId}/seenlog/{seenLogId}": {
1493
+ "/api/v1/enduser/dialogs/{dialogId}/transmissions/{transmissionId}": {
1286
1494
  "get": {
1287
1495
  "tags": [
1288
1496
  "Enduser"
1289
1497
  ],
1290
- "summary": "Gets a single dialog seen log record",
1291
- "description": "Gets a single dialog seen log record. For more information see the documentation (link TBD).",
1292
- "operationId": "GetDialogSeenLog",
1498
+ "summary": "Gets a single dialog transmission",
1499
+ "description": "Gets a single transmission belonging to a dialog. For more information see the documentation (link TBD).",
1500
+ "operationId": "GetDialogTransmissionEU",
1293
1501
  "parameters": [
1294
1502
  {
1295
1503
  "name": "dialogId",
@@ -1301,7 +1509,7 @@
1301
1509
  }
1302
1510
  },
1303
1511
  {
1304
- "name": "seenLogId",
1512
+ "name": "transmissionId",
1305
1513
  "in": "path",
1306
1514
  "required": true,
1307
1515
  "schema": {
@@ -1315,20 +1523,13 @@
1315
1523
  "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten\"."
1316
1524
  },
1317
1525
  "403": {
1318
- "description": "Forbidden"
1526
+ "description": "Unauthorized to get child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
1319
1527
  },
1320
1528
  "200": {
1321
- "description": "Successfully returned the dialog seen log record.",
1322
- "content": {
1323
- "application/json": {
1324
- "schema": {
1325
- "$ref": "#/components/schemas/GetDialogSeenLogDto"
1326
- }
1327
- }
1328
- }
1529
+ "description": "Successfully returned the dialog transmission."
1329
1530
  },
1330
1531
  "404": {
1331
- "description": "Not Found",
1532
+ "description": "The given dialog ID was not found or was deleted, or the given transmission ID was not found.",
1332
1533
  "content": {
1333
1534
  "application/problem+json": {
1334
1535
  "schema": {
@@ -1345,14 +1546,134 @@
1345
1546
  ]
1346
1547
  }
1347
1548
  },
1348
- "/api/v1/enduser/dialogs": {
1549
+ "/api/v1/enduser/dialogs/{dialogId}/seenlog": {
1349
1550
  "get": {
1350
1551
  "tags": [
1351
1552
  "Enduser"
1352
1553
  ],
1353
- "summary": "Gets a list of dialogs",
1354
- "description": "Performs a search for dialogs, returning a paginated list of dialogs. For more information see the documentation (link TBD).\n\n* All date parameters must contain explicit time zone. Example: 2023-10-27T10:00:00Z or 2023-10-27T10:00:00+01:00\n* See \"continuationToken\" in the response for how to get the next page of results.\n* hasNextPage will be set to true if there are more items to get.",
1355
- "operationId": "GetDialogList",
1554
+ "summary": "Gets a single dialog seen log record",
1555
+ "description": "Gets a single dialog seen log record. For more information see the documentation (link TBD).",
1556
+ "operationId": "SearchDialogSeenLog",
1557
+ "parameters": [
1558
+ {
1559
+ "name": "dialogId",
1560
+ "in": "path",
1561
+ "required": true,
1562
+ "schema": {
1563
+ "type": "string",
1564
+ "format": "guid"
1565
+ }
1566
+ }
1567
+ ],
1568
+ "responses": {
1569
+ "401": {
1570
+ "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten\"."
1571
+ },
1572
+ "403": {
1573
+ "description": "Forbidden"
1574
+ },
1575
+ "200": {
1576
+ "description": "Successfully returned the dialog seen log record.",
1577
+ "content": {
1578
+ "application/json": {
1579
+ "schema": {
1580
+ "type": "array",
1581
+ "items": {
1582
+ "$ref": "#/components/schemas/SearchDialogSeenLogDto"
1583
+ }
1584
+ }
1585
+ }
1586
+ }
1587
+ },
1588
+ "404": {
1589
+ "description": "Not Found",
1590
+ "content": {
1591
+ "application/problem+json": {
1592
+ "schema": {
1593
+ "$ref": "#/components/schemas/ProblemDetails"
1594
+ }
1595
+ }
1596
+ }
1597
+ }
1598
+ },
1599
+ "security": [
1600
+ {
1601
+ "JWTBearerAuth": []
1602
+ }
1603
+ ]
1604
+ }
1605
+ },
1606
+ "/api/v1/enduser/dialogs/{dialogId}/seenlog/{seenLogId}": {
1607
+ "get": {
1608
+ "tags": [
1609
+ "Enduser"
1610
+ ],
1611
+ "summary": "Gets a single dialog seen log record",
1612
+ "description": "Gets a single dialog seen log record. For more information see the documentation (link TBD).",
1613
+ "operationId": "GetDialogSeenLog",
1614
+ "parameters": [
1615
+ {
1616
+ "name": "dialogId",
1617
+ "in": "path",
1618
+ "required": true,
1619
+ "schema": {
1620
+ "type": "string",
1621
+ "format": "guid"
1622
+ }
1623
+ },
1624
+ {
1625
+ "name": "seenLogId",
1626
+ "in": "path",
1627
+ "required": true,
1628
+ "schema": {
1629
+ "type": "string",
1630
+ "format": "guid"
1631
+ }
1632
+ }
1633
+ ],
1634
+ "responses": {
1635
+ "401": {
1636
+ "description": "Missing or invalid authentication token. Requires a Maskinporten-token with the scope \"digdir:dialogporten\"."
1637
+ },
1638
+ "403": {
1639
+ "description": "Forbidden"
1640
+ },
1641
+ "200": {
1642
+ "description": "Successfully returned the dialog seen log record.",
1643
+ "content": {
1644
+ "application/json": {
1645
+ "schema": {
1646
+ "$ref": "#/components/schemas/GetDialogSeenLogDto"
1647
+ }
1648
+ }
1649
+ }
1650
+ },
1651
+ "404": {
1652
+ "description": "Not Found",
1653
+ "content": {
1654
+ "application/problem+json": {
1655
+ "schema": {
1656
+ "$ref": "#/components/schemas/ProblemDetails"
1657
+ }
1658
+ }
1659
+ }
1660
+ }
1661
+ },
1662
+ "security": [
1663
+ {
1664
+ "JWTBearerAuth": []
1665
+ }
1666
+ ]
1667
+ }
1668
+ },
1669
+ "/api/v1/enduser/dialogs": {
1670
+ "get": {
1671
+ "tags": [
1672
+ "Enduser"
1673
+ ],
1674
+ "summary": "Gets a list of dialogs",
1675
+ "description": "Performs a search for dialogs, returning a paginated list of dialogs. For more information see the documentation (link TBD).\n\n* All date parameters must contain explicit time zone. Example: 2023-10-27T10:00:00Z or 2023-10-27T10:00:00+01:00\n* See \"continuationToken\" in the response for how to get the next page of results.\n* hasNextPage will be set to true if there are more items to get.",
1676
+ "operationId": "GetDialogList",
1356
1677
  "parameters": [
1357
1678
  {
1358
1679
  "name": "org",
@@ -1503,9 +1824,9 @@
1503
1824
  }
1504
1825
  },
1505
1826
  {
1506
- "name": "searchCultureCode",
1827
+ "name": "searchLanguageCode",
1507
1828
  "in": "query",
1508
- "description": "Limit free text search to texts with this culture code, e.g. \\\"nb-NO\\\". Default: search all culture codes",
1829
+ "description": "Limit free text search to texts with this language code, e.g. 'no', 'en'. Culture codes will be normalized to neutral language codes (ISO 639). Default: search all culture codes",
1509
1830
  "schema": {
1510
1831
  "type": "string",
1511
1832
  "nullable": true
@@ -1775,27 +2096,6 @@
1775
2096
  }
1776
2097
  }
1777
2098
  },
1778
- "SearchDialogSeenLogDtoSO": {
1779
- "type": "object",
1780
- "additionalProperties": false,
1781
- "properties": {
1782
- "id": {
1783
- "type": "string",
1784
- "format": "guid"
1785
- },
1786
- "seenAt": {
1787
- "type": "string",
1788
- "format": "date-time"
1789
- },
1790
- "endUserIdHash": {
1791
- "type": "string"
1792
- },
1793
- "endUserName": {
1794
- "type": "string",
1795
- "nullable": true
1796
- }
1797
- }
1798
- },
1799
2099
  "ProblemDetails": {
1800
2100
  "type": "object",
1801
2101
  "additionalProperties": false,
@@ -1855,190 +2155,140 @@
1855
2155
  }
1856
2156
  }
1857
2157
  },
1858
- "GetDialogSeenLogDtoSO": {
2158
+ "CreateDialogTransmissionRequest": {
1859
2159
  "type": "object",
1860
2160
  "additionalProperties": false,
1861
2161
  "properties": {
1862
2162
  "id": {
1863
2163
  "type": "string",
1864
- "format": "guid"
1865
- },
1866
- "seenAt": {
1867
- "type": "string",
1868
- "format": "date-time"
1869
- },
1870
- "endUserIdHash": {
1871
- "type": "string"
1872
- },
1873
- "endUserName": {
1874
- "type": "string",
1875
- "nullable": true
1876
- }
1877
- }
1878
- },
1879
- "UpdateDialogRequest": {
1880
- "type": "object",
1881
- "additionalProperties": false,
1882
- "properties": {
1883
- "dto": {
1884
- "$ref": "#/components/schemas/UpdateDialogDto"
1885
- }
1886
- }
1887
- },
1888
- "UpdateDialogDto": {
1889
- "type": "object",
1890
- "additionalProperties": false,
1891
- "properties": {
1892
- "progress": {
1893
- "type": "integer",
1894
- "format": "int32",
2164
+ "format": "guid",
1895
2165
  "nullable": true
1896
2166
  },
1897
- "extendedStatus": {
2167
+ "createdAt": {
1898
2168
  "type": "string",
1899
- "nullable": true
2169
+ "format": "date-time"
1900
2170
  },
1901
- "externalReference": {
2171
+ "authorizationAttribute": {
1902
2172
  "type": "string",
1903
2173
  "nullable": true
1904
2174
  },
1905
- "visibleFrom": {
2175
+ "extendedType": {
1906
2176
  "type": "string",
1907
- "format": "date-time",
1908
2177
  "nullable": true
1909
2178
  },
1910
- "dueAt": {
2179
+ "relatedTransmissionId": {
1911
2180
  "type": "string",
1912
- "format": "date-time",
2181
+ "format": "guid",
1913
2182
  "nullable": true
1914
2183
  },
1915
- "expiresAt": {
1916
- "type": "string",
1917
- "format": "date-time",
1918
- "nullable": true
2184
+ "type": {
2185
+ "$ref": "#/components/schemas/DialogTransmissionType_Values"
1919
2186
  },
1920
- "status": {
1921
- "$ref": "#/components/schemas/DialogStatus_Values"
2187
+ "sender": {
2188
+ "$ref": "#/components/schemas/UpdateDialogDialogTransmissionSenderActorDto"
1922
2189
  },
1923
2190
  "content": {
1924
- "type": "array",
1925
- "items": {
1926
- "$ref": "#/components/schemas/UpdateDialogContentDto"
1927
- }
1928
- },
1929
- "searchTags": {
1930
- "type": "array",
1931
- "items": {
1932
- "$ref": "#/components/schemas/UpdateDialogSearchTagDto"
1933
- }
2191
+ "$ref": "#/components/schemas/UpdateDialogDialogTransmissionContentDto"
1934
2192
  },
1935
2193
  "attachments": {
1936
2194
  "type": "array",
1937
2195
  "items": {
1938
- "$ref": "#/components/schemas/UpdateDialogDialogAttachmentDto"
1939
- }
1940
- },
1941
- "guiActions": {
1942
- "type": "array",
1943
- "items": {
1944
- "$ref": "#/components/schemas/UpdateDialogDialogGuiActionDto"
1945
- }
1946
- },
1947
- "apiActions": {
1948
- "type": "array",
1949
- "items": {
1950
- "$ref": "#/components/schemas/UpdateDialogDialogApiActionDto"
1951
- }
1952
- },
1953
- "activities": {
1954
- "type": "array",
1955
- "items": {
1956
- "$ref": "#/components/schemas/UpdateDialogDialogActivityDto"
2196
+ "$ref": "#/components/schemas/UpdateDialogTransmissionAttachmentDto"
1957
2197
  }
1958
2198
  }
1959
2199
  }
1960
2200
  },
1961
- "DialogStatus_Values": {
2201
+ "DialogTransmissionType_Values": {
1962
2202
  "type": "string",
1963
2203
  "description": "",
1964
2204
  "x-enumNames": [
1965
- "New",
1966
- "InProgress",
1967
- "Waiting",
1968
- "Signing",
1969
- "Cancelled",
1970
- "Completed"
2205
+ "Information",
2206
+ "Acceptance",
2207
+ "Rejection",
2208
+ "Request",
2209
+ "Alert",
2210
+ "Decision",
2211
+ "Submission",
2212
+ "Correction"
1971
2213
  ],
1972
2214
  "enum": [
1973
- "New",
1974
- "InProgress",
1975
- "Waiting",
1976
- "Signing",
1977
- "Cancelled",
1978
- "Completed"
2215
+ "Information",
2216
+ "Acceptance",
2217
+ "Rejection",
2218
+ "Request",
2219
+ "Alert",
2220
+ "Decision",
2221
+ "Submission",
2222
+ "Correction"
1979
2223
  ]
1980
2224
  },
1981
- "UpdateDialogContentDto": {
2225
+ "UpdateDialogDialogTransmissionSenderActorDto": {
1982
2226
  "type": "object",
1983
2227
  "additionalProperties": false,
1984
2228
  "properties": {
1985
- "type": {
1986
- "$ref": "#/components/schemas/DialogContentType_Values"
2229
+ "actorType": {
2230
+ "$ref": "#/components/schemas/DialogActorType_Values"
1987
2231
  },
1988
- "value": {
1989
- "type": "array",
1990
- "items": {
1991
- "$ref": "#/components/schemas/LocalizationDto"
1992
- }
2232
+ "actorName": {
2233
+ "type": "string"
1993
2234
  },
1994
- "mediaType": {
1995
- "type": "string",
1996
- "nullable": true
2235
+ "actorId": {
2236
+ "type": "string"
1997
2237
  }
1998
2238
  }
1999
2239
  },
2000
- "DialogContentType_Values": {
2240
+ "DialogActorType_Values": {
2001
2241
  "type": "string",
2002
2242
  "description": "",
2003
2243
  "x-enumNames": [
2004
- "Title",
2005
- "SenderName",
2006
- "Summary",
2007
- "AdditionalInfo",
2008
- "ExtendedStatus",
2009
- "MainContentReference"
2244
+ "PartyRepresentative",
2245
+ "ServiceOwner"
2010
2246
  ],
2011
2247
  "enum": [
2012
- "Title",
2013
- "SenderName",
2014
- "Summary",
2015
- "AdditionalInfo",
2016
- "ExtendedStatus",
2017
- "MainContentReference"
2248
+ "PartyRepresentative",
2249
+ "ServiceOwner"
2018
2250
  ]
2019
2251
  },
2020
- "LocalizationDto": {
2252
+ "UpdateDialogDialogTransmissionContentDto": {
2021
2253
  "type": "object",
2022
2254
  "additionalProperties": false,
2023
2255
  "properties": {
2024
- "value": {
2025
- "type": "string"
2256
+ "title": {
2257
+ "$ref": "#/components/schemas/ContentValueDto"
2026
2258
  },
2027
- "cultureCode": {
2028
- "type": "string"
2259
+ "summary": {
2260
+ "$ref": "#/components/schemas/ContentValueDto"
2029
2261
  }
2030
2262
  }
2031
2263
  },
2032
- "UpdateDialogSearchTagDto": {
2264
+ "ContentValueDto": {
2033
2265
  "type": "object",
2034
2266
  "additionalProperties": false,
2035
2267
  "properties": {
2036
2268
  "value": {
2037
- "type": "string"
2038
- }
2039
- }
2040
- },
2041
- "UpdateDialogDialogAttachmentDto": {
2269
+ "type": "array",
2270
+ "items": {
2271
+ "$ref": "#/components/schemas/LocalizationDto"
2272
+ }
2273
+ },
2274
+ "mediaType": {
2275
+ "type": "string"
2276
+ }
2277
+ }
2278
+ },
2279
+ "LocalizationDto": {
2280
+ "type": "object",
2281
+ "additionalProperties": false,
2282
+ "properties": {
2283
+ "value": {
2284
+ "type": "string"
2285
+ },
2286
+ "languageCode": {
2287
+ "type": "string"
2288
+ }
2289
+ }
2290
+ },
2291
+ "UpdateDialogTransmissionAttachmentDto": {
2042
2292
  "type": "object",
2043
2293
  "additionalProperties": false,
2044
2294
  "properties": {
@@ -2056,12 +2306,12 @@
2056
2306
  "urls": {
2057
2307
  "type": "array",
2058
2308
  "items": {
2059
- "$ref": "#/components/schemas/UpdateDialogDialogAttachmentUrlDto"
2309
+ "$ref": "#/components/schemas/UpdateDialogTransmissionAttachmentUrlDto"
2060
2310
  }
2061
2311
  }
2062
2312
  }
2063
2313
  },
2064
- "UpdateDialogDialogAttachmentUrlDto": {
2314
+ "UpdateDialogTransmissionAttachmentUrlDto": {
2065
2315
  "type": "object",
2066
2316
  "additionalProperties": false,
2067
2317
  "properties": {
@@ -2079,11 +2329,11 @@
2079
2329
  "nullable": true
2080
2330
  },
2081
2331
  "consumerType": {
2082
- "$ref": "#/components/schemas/DialogAttachmentUrlConsumerType_Values"
2332
+ "$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
2083
2333
  }
2084
2334
  }
2085
2335
  },
2086
- "DialogAttachmentUrlConsumerType_Values": {
2336
+ "AttachmentUrlConsumerType_Values": {
2087
2337
  "type": "string",
2088
2338
  "description": "",
2089
2339
  "x-enumNames": [
@@ -2095,6 +2345,326 @@
2095
2345
  "Api"
2096
2346
  ]
2097
2347
  },
2348
+ "SearchDialogSeenLogDtoSO": {
2349
+ "type": "object",
2350
+ "additionalProperties": false,
2351
+ "properties": {
2352
+ "id": {
2353
+ "type": "string",
2354
+ "format": "guid"
2355
+ },
2356
+ "seenAt": {
2357
+ "type": "string",
2358
+ "format": "date-time"
2359
+ },
2360
+ "seenBy": {
2361
+ "$ref": "#/components/schemas/SearchDialogDialogSeenLogSeenByActorDtoSO"
2362
+ },
2363
+ "isViaServiceOwner": {
2364
+ "type": "boolean",
2365
+ "nullable": true
2366
+ }
2367
+ }
2368
+ },
2369
+ "SearchDialogDialogSeenLogSeenByActorDtoSO": {
2370
+ "type": "object",
2371
+ "additionalProperties": false,
2372
+ "properties": {
2373
+ "id": {
2374
+ "type": "string",
2375
+ "format": "guid"
2376
+ },
2377
+ "actorName": {
2378
+ "type": "string"
2379
+ },
2380
+ "actorId": {
2381
+ "type": "string"
2382
+ }
2383
+ }
2384
+ },
2385
+ "GetDialogSeenLogDtoSO": {
2386
+ "type": "object",
2387
+ "additionalProperties": false,
2388
+ "properties": {
2389
+ "id": {
2390
+ "type": "string",
2391
+ "format": "guid"
2392
+ },
2393
+ "seenAt": {
2394
+ "type": "string",
2395
+ "format": "date-time"
2396
+ },
2397
+ "seenBy": {
2398
+ "$ref": "#/components/schemas/GetDialogSeenLogSeenByActorDtoSO"
2399
+ },
2400
+ "isViaServiceOwner": {
2401
+ "type": "boolean",
2402
+ "nullable": true
2403
+ }
2404
+ }
2405
+ },
2406
+ "GetDialogSeenLogSeenByActorDtoSO": {
2407
+ "type": "object",
2408
+ "additionalProperties": false,
2409
+ "properties": {
2410
+ "id": {
2411
+ "type": "string",
2412
+ "format": "guid"
2413
+ },
2414
+ "actorName": {
2415
+ "type": "string"
2416
+ },
2417
+ "actorId": {
2418
+ "type": "string"
2419
+ }
2420
+ }
2421
+ },
2422
+ "UpdateDialogRequest": {
2423
+ "type": "object",
2424
+ "additionalProperties": false,
2425
+ "properties": {
2426
+ "dto": {
2427
+ "$ref": "#/components/schemas/UpdateDialogDto"
2428
+ }
2429
+ }
2430
+ },
2431
+ "UpdateDialogDto": {
2432
+ "type": "object",
2433
+ "additionalProperties": false,
2434
+ "properties": {
2435
+ "progress": {
2436
+ "type": "integer",
2437
+ "format": "int32",
2438
+ "nullable": true
2439
+ },
2440
+ "extendedStatus": {
2441
+ "type": "string",
2442
+ "nullable": true
2443
+ },
2444
+ "externalReference": {
2445
+ "type": "string",
2446
+ "nullable": true
2447
+ },
2448
+ "visibleFrom": {
2449
+ "type": "string",
2450
+ "format": "date-time",
2451
+ "nullable": true
2452
+ },
2453
+ "dueAt": {
2454
+ "type": "string",
2455
+ "format": "date-time",
2456
+ "nullable": true
2457
+ },
2458
+ "expiresAt": {
2459
+ "type": "string",
2460
+ "format": "date-time",
2461
+ "nullable": true
2462
+ },
2463
+ "status": {
2464
+ "$ref": "#/components/schemas/DialogStatus_Values"
2465
+ },
2466
+ "content": {
2467
+ "$ref": "#/components/schemas/UpdateDialogContentDto"
2468
+ },
2469
+ "searchTags": {
2470
+ "type": "array",
2471
+ "items": {
2472
+ "$ref": "#/components/schemas/UpdateDialogSearchTagDto"
2473
+ }
2474
+ },
2475
+ "transmissions": {
2476
+ "type": "array",
2477
+ "items": {
2478
+ "$ref": "#/components/schemas/UpdateDialogDialogTransmissionDto"
2479
+ }
2480
+ },
2481
+ "attachments": {
2482
+ "type": "array",
2483
+ "items": {
2484
+ "$ref": "#/components/schemas/UpdateDialogDialogAttachmentDto"
2485
+ }
2486
+ },
2487
+ "guiActions": {
2488
+ "type": "array",
2489
+ "items": {
2490
+ "$ref": "#/components/schemas/UpdateDialogDialogGuiActionDto"
2491
+ }
2492
+ },
2493
+ "apiActions": {
2494
+ "type": "array",
2495
+ "items": {
2496
+ "$ref": "#/components/schemas/UpdateDialogDialogApiActionDto"
2497
+ }
2498
+ },
2499
+ "activities": {
2500
+ "type": "array",
2501
+ "items": {
2502
+ "$ref": "#/components/schemas/UpdateDialogDialogActivityDto"
2503
+ }
2504
+ }
2505
+ }
2506
+ },
2507
+ "DialogStatus_Values": {
2508
+ "type": "string",
2509
+ "description": "",
2510
+ "x-enumNames": [
2511
+ "New",
2512
+ "InProgress",
2513
+ "Signing",
2514
+ "Processing",
2515
+ "RequiresAttention",
2516
+ "Completed"
2517
+ ],
2518
+ "enum": [
2519
+ "New",
2520
+ "InProgress",
2521
+ "Signing",
2522
+ "Processing",
2523
+ "RequiresAttention",
2524
+ "Completed"
2525
+ ]
2526
+ },
2527
+ "UpdateDialogContentDto": {
2528
+ "type": "object",
2529
+ "additionalProperties": false,
2530
+ "properties": {
2531
+ "title": {
2532
+ "$ref": "#/components/schemas/ContentValueDto"
2533
+ },
2534
+ "summary": {
2535
+ "$ref": "#/components/schemas/ContentValueDto"
2536
+ },
2537
+ "senderName": {
2538
+ "nullable": true,
2539
+ "oneOf": [
2540
+ {
2541
+ "$ref": "#/components/schemas/ContentValueDto"
2542
+ }
2543
+ ]
2544
+ },
2545
+ "additionalInfo": {
2546
+ "nullable": true,
2547
+ "oneOf": [
2548
+ {
2549
+ "$ref": "#/components/schemas/ContentValueDto"
2550
+ }
2551
+ ]
2552
+ },
2553
+ "extendedStatus": {
2554
+ "nullable": true,
2555
+ "oneOf": [
2556
+ {
2557
+ "$ref": "#/components/schemas/ContentValueDto"
2558
+ }
2559
+ ]
2560
+ },
2561
+ "mainContentReference": {
2562
+ "nullable": true,
2563
+ "oneOf": [
2564
+ {
2565
+ "$ref": "#/components/schemas/ContentValueDto"
2566
+ }
2567
+ ]
2568
+ }
2569
+ }
2570
+ },
2571
+ "UpdateDialogSearchTagDto": {
2572
+ "type": "object",
2573
+ "additionalProperties": false,
2574
+ "properties": {
2575
+ "value": {
2576
+ "type": "string"
2577
+ }
2578
+ }
2579
+ },
2580
+ "UpdateDialogDialogTransmissionDto": {
2581
+ "type": "object",
2582
+ "additionalProperties": false,
2583
+ "properties": {
2584
+ "id": {
2585
+ "type": "string",
2586
+ "format": "guid",
2587
+ "nullable": true
2588
+ },
2589
+ "createdAt": {
2590
+ "type": "string",
2591
+ "format": "date-time"
2592
+ },
2593
+ "authorizationAttribute": {
2594
+ "type": "string",
2595
+ "nullable": true
2596
+ },
2597
+ "extendedType": {
2598
+ "type": "string",
2599
+ "nullable": true
2600
+ },
2601
+ "relatedTransmissionId": {
2602
+ "type": "string",
2603
+ "format": "guid",
2604
+ "nullable": true
2605
+ },
2606
+ "type": {
2607
+ "$ref": "#/components/schemas/DialogTransmissionType_Values"
2608
+ },
2609
+ "sender": {
2610
+ "$ref": "#/components/schemas/UpdateDialogDialogTransmissionSenderActorDto"
2611
+ },
2612
+ "content": {
2613
+ "$ref": "#/components/schemas/UpdateDialogDialogTransmissionContentDto"
2614
+ },
2615
+ "attachments": {
2616
+ "type": "array",
2617
+ "items": {
2618
+ "$ref": "#/components/schemas/UpdateDialogTransmissionAttachmentDto"
2619
+ }
2620
+ }
2621
+ }
2622
+ },
2623
+ "UpdateDialogDialogAttachmentDto": {
2624
+ "type": "object",
2625
+ "additionalProperties": false,
2626
+ "properties": {
2627
+ "id": {
2628
+ "type": "string",
2629
+ "format": "guid",
2630
+ "nullable": true
2631
+ },
2632
+ "displayName": {
2633
+ "type": "array",
2634
+ "items": {
2635
+ "$ref": "#/components/schemas/LocalizationDto"
2636
+ }
2637
+ },
2638
+ "urls": {
2639
+ "type": "array",
2640
+ "items": {
2641
+ "$ref": "#/components/schemas/UpdateDialogDialogAttachmentUrlDto"
2642
+ }
2643
+ }
2644
+ }
2645
+ },
2646
+ "UpdateDialogDialogAttachmentUrlDto": {
2647
+ "type": "object",
2648
+ "additionalProperties": false,
2649
+ "properties": {
2650
+ "id": {
2651
+ "type": "string",
2652
+ "format": "guid",
2653
+ "nullable": true
2654
+ },
2655
+ "url": {
2656
+ "type": "string",
2657
+ "format": "uri"
2658
+ },
2659
+ "mediaType": {
2660
+ "type": "string",
2661
+ "nullable": true
2662
+ },
2663
+ "consumerType": {
2664
+ "$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
2665
+ }
2666
+ }
2667
+ },
2098
2668
  "UpdateDialogDialogGuiActionDto": {
2099
2669
  "type": "object",
2100
2670
  "additionalProperties": false,
@@ -2281,8 +2851,7 @@
2281
2851
  "nullable": true
2282
2852
  },
2283
2853
  "performedBy": {
2284
- "type": "string",
2285
- "nullable": true
2854
+ "$ref": "#/components/schemas/UpdateDialogDialogActivityPerformedByActorDto"
2286
2855
  },
2287
2856
  "description": {
2288
2857
  "type": "array",
@@ -2296,22 +2865,39 @@
2296
2865
  "type": "string",
2297
2866
  "description": "",
2298
2867
  "x-enumNames": [
2299
- "Submission",
2300
- "Feedback",
2868
+ "DialogCreated",
2869
+ "DialogClosed",
2301
2870
  "Information",
2302
- "Error",
2303
- "Closed",
2304
- "Forwarded"
2871
+ "TransmissionOpened",
2872
+ "PaymentMade",
2873
+ "SignatureProvided"
2305
2874
  ],
2306
2875
  "enum": [
2307
- "Submission",
2308
- "Feedback",
2876
+ "DialogCreated",
2877
+ "DialogClosed",
2309
2878
  "Information",
2310
- "Error",
2311
- "Closed",
2312
- "Forwarded"
2879
+ "TransmissionOpened",
2880
+ "PaymentMade",
2881
+ "SignatureProvided"
2313
2882
  ]
2314
2883
  },
2884
+ "UpdateDialogDialogActivityPerformedByActorDto": {
2885
+ "type": "object",
2886
+ "additionalProperties": false,
2887
+ "properties": {
2888
+ "actorType": {
2889
+ "$ref": "#/components/schemas/DialogActorType_Values"
2890
+ },
2891
+ "actorName": {
2892
+ "type": "string",
2893
+ "nullable": true
2894
+ },
2895
+ "actorId": {
2896
+ "type": "string",
2897
+ "nullable": true
2898
+ }
2899
+ }
2900
+ },
2315
2901
  "PaginatedListOfSearchDialogDtoSO": {
2316
2902
  "type": "object",
2317
2903
  "additionalProperties": false,
@@ -2363,6 +2949,11 @@
2363
2949
  "format": "int32",
2364
2950
  "nullable": true
2365
2951
  },
2952
+ "guiAttachmentCount": {
2953
+ "type": "integer",
2954
+ "format": "int32",
2955
+ "nullable": true
2956
+ },
2366
2957
  "extendedStatus": {
2367
2958
  "type": "string",
2368
2959
  "nullable": true
@@ -2388,28 +2979,55 @@
2388
2979
  "status": {
2389
2980
  "$ref": "#/components/schemas/DialogStatus_Values"
2390
2981
  },
2391
- "content": {
2392
- "type": "array",
2393
- "items": {
2394
- "$ref": "#/components/schemas/SearchDialogContentDtoSO"
2395
- }
2982
+ "latestActivity": {
2983
+ "nullable": true,
2984
+ "oneOf": [
2985
+ {
2986
+ "$ref": "#/components/schemas/SearchDialogDialogActivityDtoSO"
2987
+ }
2988
+ ]
2396
2989
  },
2397
2990
  "seenSinceLastUpdate": {
2398
2991
  "type": "array",
2399
2992
  "items": {
2400
2993
  "$ref": "#/components/schemas/SearchDialogDialogSeenLogDtoSO"
2401
2994
  }
2995
+ },
2996
+ "content": {
2997
+ "$ref": "#/components/schemas/SearchDialogContentDtoSO"
2402
2998
  }
2403
2999
  }
2404
3000
  },
2405
- "SearchDialogContentDtoSO": {
3001
+ "SearchDialogDialogActivityDtoSO": {
2406
3002
  "type": "object",
2407
3003
  "additionalProperties": false,
2408
3004
  "properties": {
3005
+ "id": {
3006
+ "type": "string",
3007
+ "format": "guid"
3008
+ },
3009
+ "createdAt": {
3010
+ "type": "string",
3011
+ "format": "date-time",
3012
+ "nullable": true
3013
+ },
3014
+ "extendedType": {
3015
+ "type": "string",
3016
+ "format": "uri",
3017
+ "nullable": true
3018
+ },
2409
3019
  "type": {
2410
- "$ref": "#/components/schemas/DialogContentType_Values"
3020
+ "$ref": "#/components/schemas/DialogActivityType_Values"
2411
3021
  },
2412
- "value": {
3022
+ "relatedActivityId": {
3023
+ "type": "string",
3024
+ "format": "guid",
3025
+ "nullable": true
3026
+ },
3027
+ "performedBy": {
3028
+ "$ref": "#/components/schemas/SearchDialogDialogActivityPerformedByActorDtoSO"
3029
+ },
3030
+ "description": {
2413
3031
  "type": "array",
2414
3032
  "items": {
2415
3033
  "$ref": "#/components/schemas/LocalizationDto"
@@ -2417,6 +3035,27 @@
2417
3035
  }
2418
3036
  }
2419
3037
  },
3038
+ "SearchDialogDialogActivityPerformedByActorDtoSO": {
3039
+ "type": "object",
3040
+ "additionalProperties": false,
3041
+ "properties": {
3042
+ "id": {
3043
+ "type": "string",
3044
+ "format": "guid"
3045
+ },
3046
+ "actorType": {
3047
+ "$ref": "#/components/schemas/DialogActorType_Values"
3048
+ },
3049
+ "actorName": {
3050
+ "type": "string",
3051
+ "nullable": true
3052
+ },
3053
+ "actorId": {
3054
+ "type": "string",
3055
+ "nullable": true
3056
+ }
3057
+ }
3058
+ },
2420
3059
  "SearchDialogDialogSeenLogDtoSO": {
2421
3060
  "type": "object",
2422
3061
  "additionalProperties": false,
@@ -2425,20 +3064,63 @@
2425
3064
  "type": "string",
2426
3065
  "format": "guid"
2427
3066
  },
2428
- "createdAt": {
3067
+ "seenAt": {
2429
3068
  "type": "string",
2430
3069
  "format": "date-time"
2431
3070
  },
2432
- "endUserIdHash": {
2433
- "type": "string"
3071
+ "seenBy": {
3072
+ "$ref": "#/components/schemas/SearchDialogDialogSeenLogSeenByActorDtoSO2"
2434
3073
  },
2435
- "endUserName": {
2436
- "type": "string",
3074
+ "isViaServiceOwner": {
3075
+ "type": "boolean",
2437
3076
  "nullable": true
2438
3077
  },
2439
3078
  "isCurrentEndUser": {
2440
- "type": "boolean",
2441
- "nullable": true
3079
+ "type": "boolean"
3080
+ }
3081
+ }
3082
+ },
3083
+ "SearchDialogDialogSeenLogSeenByActorDtoSO2": {
3084
+ "type": "object",
3085
+ "additionalProperties": false,
3086
+ "properties": {
3087
+ "id": {
3088
+ "type": "string",
3089
+ "format": "guid"
3090
+ },
3091
+ "actorName": {
3092
+ "type": "string"
3093
+ },
3094
+ "actorId": {
3095
+ "type": "string"
3096
+ }
3097
+ }
3098
+ },
3099
+ "SearchDialogContentDtoSO": {
3100
+ "type": "object",
3101
+ "additionalProperties": false,
3102
+ "properties": {
3103
+ "title": {
3104
+ "$ref": "#/components/schemas/ContentValueDto"
3105
+ },
3106
+ "summary": {
3107
+ "$ref": "#/components/schemas/ContentValueDto"
3108
+ },
3109
+ "senderName": {
3110
+ "nullable": true,
3111
+ "oneOf": [
3112
+ {
3113
+ "$ref": "#/components/schemas/ContentValueDto"
3114
+ }
3115
+ ]
3116
+ },
3117
+ "extendedStatus": {
3118
+ "nullable": true,
3119
+ "oneOf": [
3120
+ {
3121
+ "$ref": "#/components/schemas/ContentValueDto"
3122
+ }
3123
+ ]
2442
3124
  }
2443
3125
  }
2444
3126
  },
@@ -2511,10 +3193,7 @@
2511
3193
  "$ref": "#/components/schemas/DialogStatus_Values"
2512
3194
  },
2513
3195
  "content": {
2514
- "type": "array",
2515
- "items": {
2516
- "$ref": "#/components/schemas/GetDialogContentDtoSO"
2517
- }
3196
+ "$ref": "#/components/schemas/GetDialogContentDtoSO"
2518
3197
  },
2519
3198
  "searchTags": {
2520
3199
  "type": "array",
@@ -2529,6 +3208,12 @@
2529
3208
  "$ref": "#/components/schemas/GetDialogDialogAttachmentDtoSO"
2530
3209
  }
2531
3210
  },
3211
+ "transmissions": {
3212
+ "type": "array",
3213
+ "items": {
3214
+ "$ref": "#/components/schemas/GetDialogDialogTransmissionDtoSO"
3215
+ }
3216
+ },
2532
3217
  "guiActions": {
2533
3218
  "type": "array",
2534
3219
  "items": {
@@ -2541,51 +3226,192 @@
2541
3226
  "$ref": "#/components/schemas/GetDialogDialogApiActionDtoSO"
2542
3227
  }
2543
3228
  },
2544
- "activities": {
2545
- "type": "array",
2546
- "items": {
2547
- "$ref": "#/components/schemas/GetDialogDialogActivityDtoSO"
2548
- }
3229
+ "activities": {
3230
+ "type": "array",
3231
+ "items": {
3232
+ "$ref": "#/components/schemas/GetDialogDialogActivityDtoSO"
3233
+ }
3234
+ },
3235
+ "seenSinceLastUpdate": {
3236
+ "type": "array",
3237
+ "items": {
3238
+ "$ref": "#/components/schemas/GetDialogDialogSeenLogDtoSO"
3239
+ }
3240
+ }
3241
+ }
3242
+ },
3243
+ "OrderSetOfTOrderDefinitionAndTTarget": {},
3244
+ "ContinuationTokenSetOfTOrderDefinitionAndTTarget": {},
3245
+ "GetDialogContentDtoSO": {
3246
+ "type": "object",
3247
+ "additionalProperties": false,
3248
+ "properties": {
3249
+ "title": {
3250
+ "$ref": "#/components/schemas/ContentValueDto"
3251
+ },
3252
+ "summary": {
3253
+ "$ref": "#/components/schemas/ContentValueDto"
3254
+ },
3255
+ "senderName": {
3256
+ "nullable": true,
3257
+ "oneOf": [
3258
+ {
3259
+ "$ref": "#/components/schemas/ContentValueDto"
3260
+ }
3261
+ ]
3262
+ },
3263
+ "additionalInfo": {
3264
+ "nullable": true,
3265
+ "oneOf": [
3266
+ {
3267
+ "$ref": "#/components/schemas/ContentValueDto"
3268
+ }
3269
+ ]
3270
+ },
3271
+ "extendedStatus": {
3272
+ "nullable": true,
3273
+ "oneOf": [
3274
+ {
3275
+ "$ref": "#/components/schemas/ContentValueDto"
3276
+ }
3277
+ ]
3278
+ },
3279
+ "mainContentReference": {
3280
+ "nullable": true,
3281
+ "oneOf": [
3282
+ {
3283
+ "$ref": "#/components/schemas/ContentValueDto"
3284
+ }
3285
+ ]
3286
+ }
3287
+ }
3288
+ },
3289
+ "GetDialogSearchTagDtoSO": {
3290
+ "type": "object",
3291
+ "additionalProperties": false,
3292
+ "properties": {
3293
+ "value": {
3294
+ "type": "string"
3295
+ }
3296
+ }
3297
+ },
3298
+ "GetDialogDialogAttachmentDtoSO": {
3299
+ "type": "object",
3300
+ "additionalProperties": false,
3301
+ "properties": {
3302
+ "id": {
3303
+ "type": "string",
3304
+ "format": "guid"
3305
+ },
3306
+ "displayName": {
3307
+ "type": "array",
3308
+ "items": {
3309
+ "$ref": "#/components/schemas/LocalizationDto"
3310
+ }
3311
+ },
3312
+ "urls": {
3313
+ "type": "array",
3314
+ "items": {
3315
+ "$ref": "#/components/schemas/GetDialogDialogAttachmentUrlDtoSO"
3316
+ }
3317
+ }
3318
+ }
3319
+ },
3320
+ "GetDialogDialogAttachmentUrlDtoSO": {
3321
+ "type": "object",
3322
+ "additionalProperties": false,
3323
+ "properties": {
3324
+ "id": {
3325
+ "type": "string",
3326
+ "format": "guid"
3327
+ },
3328
+ "url": {
3329
+ "type": "string",
3330
+ "format": "uri"
3331
+ },
3332
+ "mediaType": {
3333
+ "type": "string",
3334
+ "nullable": true
3335
+ },
3336
+ "consumerType": {
3337
+ "$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
3338
+ }
3339
+ }
3340
+ },
3341
+ "GetDialogDialogTransmissionDtoSO": {
3342
+ "type": "object",
3343
+ "additionalProperties": false,
3344
+ "properties": {
3345
+ "id": {
3346
+ "type": "string",
3347
+ "format": "guid"
3348
+ },
3349
+ "createdAt": {
3350
+ "type": "string",
3351
+ "format": "date-time"
3352
+ },
3353
+ "authorizationAttribute": {
3354
+ "type": "string",
3355
+ "nullable": true
3356
+ },
3357
+ "extendedType": {
3358
+ "type": "string",
3359
+ "nullable": true
3360
+ },
3361
+ "relatedTransmissionId": {
3362
+ "type": "string",
3363
+ "format": "guid",
3364
+ "nullable": true
3365
+ },
3366
+ "type": {
3367
+ "$ref": "#/components/schemas/DialogTransmissionType_Values"
2549
3368
  },
2550
- "seenSinceLastUpdate": {
3369
+ "sender": {
3370
+ "$ref": "#/components/schemas/GetDialogDialogTransmissionSenderActorDtoSO"
3371
+ },
3372
+ "content": {
3373
+ "$ref": "#/components/schemas/GetDialogDialogTransmissionContentDtoSO"
3374
+ },
3375
+ "attachments": {
2551
3376
  "type": "array",
2552
3377
  "items": {
2553
- "$ref": "#/components/schemas/GetDialogDialogSeenLogDtoSO"
3378
+ "$ref": "#/components/schemas/GetDialogTransmissionAttachmentDtoSO"
2554
3379
  }
2555
3380
  }
2556
3381
  }
2557
3382
  },
2558
- "OrderSetOfTOrderDefinitionAndTTarget": {},
2559
- "ContinuationTokenSetOfTOrderDefinitionAndTTarget": {},
2560
- "GetDialogContentDtoSO": {
3383
+ "GetDialogDialogTransmissionSenderActorDtoSO": {
2561
3384
  "type": "object",
2562
3385
  "additionalProperties": false,
2563
3386
  "properties": {
2564
- "type": {
2565
- "$ref": "#/components/schemas/DialogContentType_Values"
3387
+ "id": {
3388
+ "type": "string",
3389
+ "format": "guid"
2566
3390
  },
2567
- "value": {
2568
- "type": "array",
2569
- "items": {
2570
- "$ref": "#/components/schemas/LocalizationDto"
2571
- }
3391
+ "actorType": {
3392
+ "$ref": "#/components/schemas/DialogActorType_Values"
2572
3393
  },
2573
- "mediaType": {
2574
- "type": "string",
2575
- "nullable": true
3394
+ "actorName": {
3395
+ "type": "string"
3396
+ },
3397
+ "actorId": {
3398
+ "type": "string"
2576
3399
  }
2577
3400
  }
2578
3401
  },
2579
- "GetDialogSearchTagDtoSO": {
3402
+ "GetDialogDialogTransmissionContentDtoSO": {
2580
3403
  "type": "object",
2581
3404
  "additionalProperties": false,
2582
3405
  "properties": {
2583
- "value": {
2584
- "type": "string"
3406
+ "title": {
3407
+ "$ref": "#/components/schemas/ContentValueDto"
3408
+ },
3409
+ "summary": {
3410
+ "$ref": "#/components/schemas/ContentValueDto"
2585
3411
  }
2586
3412
  }
2587
3413
  },
2588
- "GetDialogDialogAttachmentDtoSO": {
3414
+ "GetDialogTransmissionAttachmentDtoSO": {
2589
3415
  "type": "object",
2590
3416
  "additionalProperties": false,
2591
3417
  "properties": {
@@ -2602,12 +3428,12 @@
2602
3428
  "urls": {
2603
3429
  "type": "array",
2604
3430
  "items": {
2605
- "$ref": "#/components/schemas/GetDialogDialogAttachmentUrlDtoSO"
3431
+ "$ref": "#/components/schemas/GetDialogTransmissionAttachmentUrlDtoSO"
2606
3432
  }
2607
3433
  }
2608
3434
  }
2609
3435
  },
2610
- "GetDialogDialogAttachmentUrlDtoSO": {
3436
+ "GetDialogTransmissionAttachmentUrlDtoSO": {
2611
3437
  "type": "object",
2612
3438
  "additionalProperties": false,
2613
3439
  "properties": {
@@ -2624,7 +3450,7 @@
2624
3450
  "nullable": true
2625
3451
  },
2626
3452
  "consumerType": {
2627
- "$ref": "#/components/schemas/DialogAttachmentUrlConsumerType_Values"
3453
+ "$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
2628
3454
  }
2629
3455
  }
2630
3456
  },
@@ -2765,8 +3591,7 @@
2765
3591
  "nullable": true
2766
3592
  },
2767
3593
  "performedBy": {
2768
- "type": "string",
2769
- "nullable": true
3594
+ "$ref": "#/components/schemas/GetDialogDialogActivityPerformedByActorDtoSO"
2770
3595
  },
2771
3596
  "description": {
2772
3597
  "type": "array",
@@ -2776,6 +3601,27 @@
2776
3601
  }
2777
3602
  }
2778
3603
  },
3604
+ "GetDialogDialogActivityPerformedByActorDtoSO": {
3605
+ "type": "object",
3606
+ "additionalProperties": false,
3607
+ "properties": {
3608
+ "id": {
3609
+ "type": "string",
3610
+ "format": "guid"
3611
+ },
3612
+ "actorType": {
3613
+ "$ref": "#/components/schemas/DialogActorType_Values"
3614
+ },
3615
+ "actorName": {
3616
+ "type": "string",
3617
+ "nullable": true
3618
+ },
3619
+ "actorId": {
3620
+ "type": "string",
3621
+ "nullable": true
3622
+ }
3623
+ }
3624
+ },
2779
3625
  "GetDialogDialogSeenLogDtoSO": {
2780
3626
  "type": "object",
2781
3627
  "additionalProperties": false,
@@ -2784,20 +3630,31 @@
2784
3630
  "type": "string",
2785
3631
  "format": "guid"
2786
3632
  },
2787
- "createdAt": {
3633
+ "seenAt": {
2788
3634
  "type": "string",
2789
3635
  "format": "date-time"
2790
3636
  },
2791
- "endUserIdHash": {
2792
- "type": "string"
3637
+ "seenBy": {
3638
+ "$ref": "#/components/schemas/GetDialogDialogSeenLogSeenByActorDtoSO"
2793
3639
  },
2794
- "endUserName": {
3640
+ "isViaServiceOwner": {
3641
+ "type": "boolean"
3642
+ }
3643
+ }
3644
+ },
3645
+ "GetDialogDialogSeenLogSeenByActorDtoSO": {
3646
+ "type": "object",
3647
+ "additionalProperties": false,
3648
+ "properties": {
3649
+ "id": {
2795
3650
  "type": "string",
2796
- "nullable": true
3651
+ "format": "guid"
2797
3652
  },
2798
- "isCurrentEndUser": {
2799
- "type": "boolean",
2800
- "nullable": true
3653
+ "actorName": {
3654
+ "type": "string"
3655
+ },
3656
+ "actorId": {
3657
+ "type": "string"
2801
3658
  }
2802
3659
  }
2803
3660
  },
@@ -2848,10 +3705,7 @@
2848
3705
  "$ref": "#/components/schemas/DialogStatus_Values"
2849
3706
  },
2850
3707
  "content": {
2851
- "type": "array",
2852
- "items": {
2853
- "$ref": "#/components/schemas/CreateDialogContentDto"
2854
- }
3708
+ "$ref": "#/components/schemas/CreateDialogContentDto"
2855
3709
  },
2856
3710
  "searchTags": {
2857
3711
  "type": "array",
@@ -2865,6 +3719,12 @@
2865
3719
  "$ref": "#/components/schemas/CreateDialogDialogAttachmentDto"
2866
3720
  }
2867
3721
  },
3722
+ "transmissions": {
3723
+ "type": "array",
3724
+ "items": {
3725
+ "$ref": "#/components/schemas/CreateDialogDialogTransmissionDto"
3726
+ }
3727
+ },
2868
3728
  "guiActions": {
2869
3729
  "type": "array",
2870
3730
  "items": {
@@ -2889,31 +3749,167 @@
2889
3749
  "type": "object",
2890
3750
  "additionalProperties": false,
2891
3751
  "properties": {
2892
- "type": {
2893
- "$ref": "#/components/schemas/DialogContentType_Values"
3752
+ "title": {
3753
+ "$ref": "#/components/schemas/ContentValueDto"
3754
+ },
3755
+ "summary": {
3756
+ "$ref": "#/components/schemas/ContentValueDto"
3757
+ },
3758
+ "senderName": {
3759
+ "nullable": true,
3760
+ "oneOf": [
3761
+ {
3762
+ "$ref": "#/components/schemas/ContentValueDto"
3763
+ }
3764
+ ]
3765
+ },
3766
+ "additionalInfo": {
3767
+ "nullable": true,
3768
+ "oneOf": [
3769
+ {
3770
+ "$ref": "#/components/schemas/ContentValueDto"
3771
+ }
3772
+ ]
3773
+ },
3774
+ "extendedStatus": {
3775
+ "nullable": true,
3776
+ "oneOf": [
3777
+ {
3778
+ "$ref": "#/components/schemas/ContentValueDto"
3779
+ }
3780
+ ]
2894
3781
  },
3782
+ "mainContentReference": {
3783
+ "nullable": true,
3784
+ "oneOf": [
3785
+ {
3786
+ "$ref": "#/components/schemas/ContentValueDto"
3787
+ }
3788
+ ]
3789
+ }
3790
+ }
3791
+ },
3792
+ "CreateDialogSearchTagDto": {
3793
+ "type": "object",
3794
+ "additionalProperties": false,
3795
+ "properties": {
2895
3796
  "value": {
3797
+ "type": "string"
3798
+ }
3799
+ }
3800
+ },
3801
+ "CreateDialogDialogAttachmentDto": {
3802
+ "type": "object",
3803
+ "additionalProperties": false,
3804
+ "properties": {
3805
+ "id": {
3806
+ "type": "string",
3807
+ "format": "guid",
3808
+ "nullable": true
3809
+ },
3810
+ "displayName": {
2896
3811
  "type": "array",
2897
3812
  "items": {
2898
3813
  "$ref": "#/components/schemas/LocalizationDto"
2899
3814
  }
2900
3815
  },
3816
+ "urls": {
3817
+ "type": "array",
3818
+ "items": {
3819
+ "$ref": "#/components/schemas/CreateDialogDialogAttachmentUrlDto"
3820
+ }
3821
+ }
3822
+ }
3823
+ },
3824
+ "CreateDialogDialogAttachmentUrlDto": {
3825
+ "type": "object",
3826
+ "additionalProperties": false,
3827
+ "properties": {
3828
+ "url": {
3829
+ "type": "string",
3830
+ "format": "uri"
3831
+ },
2901
3832
  "mediaType": {
2902
3833
  "type": "string",
2903
3834
  "nullable": true
3835
+ },
3836
+ "consumerType": {
3837
+ "$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
2904
3838
  }
2905
3839
  }
2906
3840
  },
2907
- "CreateDialogSearchTagDto": {
3841
+ "CreateDialogDialogTransmissionDto": {
2908
3842
  "type": "object",
2909
3843
  "additionalProperties": false,
2910
3844
  "properties": {
2911
- "value": {
3845
+ "id": {
3846
+ "type": "string",
3847
+ "format": "guid",
3848
+ "nullable": true
3849
+ },
3850
+ "createdAt": {
3851
+ "type": "string",
3852
+ "format": "date-time"
3853
+ },
3854
+ "authorizationAttribute": {
3855
+ "type": "string",
3856
+ "nullable": true
3857
+ },
3858
+ "extendedType": {
3859
+ "type": "string",
3860
+ "format": "uri",
3861
+ "nullable": true
3862
+ },
3863
+ "relatedTransmissionId": {
3864
+ "type": "string",
3865
+ "format": "guid",
3866
+ "nullable": true
3867
+ },
3868
+ "type": {
3869
+ "$ref": "#/components/schemas/DialogTransmissionType_Values"
3870
+ },
3871
+ "sender": {
3872
+ "$ref": "#/components/schemas/CreateDialogDialogTransmissionSenderActorDto"
3873
+ },
3874
+ "content": {
3875
+ "$ref": "#/components/schemas/CreateDialogDialogTransmissionContentDto"
3876
+ },
3877
+ "attachments": {
3878
+ "type": "array",
3879
+ "items": {
3880
+ "$ref": "#/components/schemas/CreateDialogTransmissionAttachmentDto"
3881
+ }
3882
+ }
3883
+ }
3884
+ },
3885
+ "CreateDialogDialogTransmissionSenderActorDto": {
3886
+ "type": "object",
3887
+ "additionalProperties": false,
3888
+ "properties": {
3889
+ "actorType": {
3890
+ "$ref": "#/components/schemas/DialogActorType_Values"
3891
+ },
3892
+ "actorName": {
3893
+ "type": "string"
3894
+ },
3895
+ "actorId": {
2912
3896
  "type": "string"
2913
3897
  }
2914
3898
  }
2915
3899
  },
2916
- "CreateDialogDialogAttachmentDto": {
3900
+ "CreateDialogDialogTransmissionContentDto": {
3901
+ "type": "object",
3902
+ "additionalProperties": false,
3903
+ "properties": {
3904
+ "title": {
3905
+ "$ref": "#/components/schemas/ContentValueDto"
3906
+ },
3907
+ "summary": {
3908
+ "$ref": "#/components/schemas/ContentValueDto"
3909
+ }
3910
+ }
3911
+ },
3912
+ "CreateDialogTransmissionAttachmentDto": {
2917
3913
  "type": "object",
2918
3914
  "additionalProperties": false,
2919
3915
  "properties": {
@@ -2931,12 +3927,12 @@
2931
3927
  "urls": {
2932
3928
  "type": "array",
2933
3929
  "items": {
2934
- "$ref": "#/components/schemas/CreateDialogDialogAttachmentUrlDto"
3930
+ "$ref": "#/components/schemas/CreateDialogTransmissionAttachmentUrlDto"
2935
3931
  }
2936
3932
  }
2937
3933
  }
2938
3934
  },
2939
- "CreateDialogDialogAttachmentUrlDto": {
3935
+ "CreateDialogTransmissionAttachmentUrlDto": {
2940
3936
  "type": "object",
2941
3937
  "additionalProperties": false,
2942
3938
  "properties": {
@@ -2949,7 +3945,7 @@
2949
3945
  "nullable": true
2950
3946
  },
2951
3947
  "consumerType": {
2952
- "$ref": "#/components/schemas/DialogAttachmentUrlConsumerType_Values"
3948
+ "$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
2953
3949
  }
2954
3950
  }
2955
3951
  },
@@ -3084,8 +4080,7 @@
3084
4080
  "nullable": true
3085
4081
  },
3086
4082
  "performedBy": {
3087
- "type": "string",
3088
- "nullable": true
4083
+ "$ref": "#/components/schemas/CreateDialogDialogActivityPerformedByActorDto"
3089
4084
  },
3090
4085
  "description": {
3091
4086
  "type": "array",
@@ -3095,6 +4090,23 @@
3095
4090
  }
3096
4091
  }
3097
4092
  },
4093
+ "CreateDialogDialogActivityPerformedByActorDto": {
4094
+ "type": "object",
4095
+ "additionalProperties": false,
4096
+ "properties": {
4097
+ "actorType": {
4098
+ "$ref": "#/components/schemas/DialogActorType_Values"
4099
+ },
4100
+ "actorName": {
4101
+ "type": "string",
4102
+ "nullable": true
4103
+ },
4104
+ "actorId": {
4105
+ "type": "string",
4106
+ "nullable": true
4107
+ }
4108
+ }
4109
+ },
3098
4110
  "CreateDialogActivityRequest": {
3099
4111
  "type": "object",
3100
4112
  "additionalProperties": false,
@@ -3123,8 +4135,7 @@
3123
4135
  "nullable": true
3124
4136
  },
3125
4137
  "performedBy": {
3126
- "type": "string",
3127
- "nullable": true
4138
+ "$ref": "#/components/schemas/UpdateDialogDialogActivityPerformedByActorDto"
3128
4139
  },
3129
4140
  "description": {
3130
4141
  "type": "array",
@@ -3171,19 +4182,58 @@
3171
4182
  "isAccessManager": {
3172
4183
  "type": "boolean"
3173
4184
  },
3174
- "hasOnlyAccessToSubParties": {
3175
- "type": "boolean"
4185
+ "hasOnlyAccessToSubParties": {
4186
+ "type": "boolean"
4187
+ },
4188
+ "subParties": {
4189
+ "type": "array",
4190
+ "nullable": true,
4191
+ "items": {
4192
+ "$ref": "#/components/schemas/AuthorizedPartyDto"
4193
+ }
4194
+ }
4195
+ }
4196
+ },
4197
+ "SearchDialogSeenLogDto": {
4198
+ "type": "object",
4199
+ "additionalProperties": false,
4200
+ "properties": {
4201
+ "id": {
4202
+ "type": "string",
4203
+ "format": "guid"
4204
+ },
4205
+ "seenAt": {
4206
+ "type": "string",
4207
+ "format": "date-time"
4208
+ },
4209
+ "seenBy": {
4210
+ "$ref": "#/components/schemas/SearchDialogSeenLogSeenByActorDto"
4211
+ },
4212
+ "isViaServiceOwner": {
4213
+ "type": "boolean"
4214
+ },
4215
+ "isCurrentEndUser": {
4216
+ "type": "boolean"
4217
+ }
4218
+ }
4219
+ },
4220
+ "SearchDialogSeenLogSeenByActorDto": {
4221
+ "type": "object",
4222
+ "additionalProperties": false,
4223
+ "properties": {
4224
+ "id": {
4225
+ "type": "string",
4226
+ "format": "guid"
4227
+ },
4228
+ "actorName": {
4229
+ "type": "string"
3176
4230
  },
3177
- "subParties": {
3178
- "type": "array",
3179
- "nullable": true,
3180
- "items": {
3181
- "$ref": "#/components/schemas/AuthorizedPartyDto"
3182
- }
4231
+ "actorId": {
4232
+ "type": "string"
3183
4233
  }
3184
4234
  }
3185
4235
  },
3186
- "SearchDialogSeenLogDto": {
4236
+ "GetDialogSeenLogDto": {
3187
4237
  "type": "object",
3188
4238
  "additionalProperties": false,
3189
4239
  "properties": {
@@ -3195,19 +4245,18 @@
3195
4245
  "type": "string",
3196
4246
  "format": "date-time"
3197
4247
  },
3198
- "endUserIdHash": {
3199
- "type": "string"
4248
+ "seenBy": {
4249
+ "$ref": "#/components/schemas/GetDialogSeenLogSeenByActorDto"
3200
4250
  },
3201
- "endUserName": {
3202
- "type": "string",
3203
- "nullable": true
4251
+ "isViaServiceOwner": {
4252
+ "type": "boolean"
3204
4253
  },
3205
4254
  "isCurrentEndUser": {
3206
4255
  "type": "boolean"
3207
4256
  }
3208
4257
  }
3209
4258
  },
3210
- "GetDialogSeenLogDto": {
4259
+ "GetDialogSeenLogSeenByActorDto": {
3211
4260
  "type": "object",
3212
4261
  "additionalProperties": false,
3213
4262
  "properties": {
@@ -3215,19 +4264,11 @@
3215
4264
  "type": "string",
3216
4265
  "format": "guid"
3217
4266
  },
3218
- "seenAt": {
3219
- "type": "string",
3220
- "format": "date-time"
3221
- },
3222
- "endUserIdHash": {
4267
+ "actorName": {
3223
4268
  "type": "string"
3224
4269
  },
3225
- "endUserName": {
3226
- "type": "string",
3227
- "nullable": true
3228
- },
3229
- "isCurrentEndUser": {
3230
- "type": "boolean"
4270
+ "actorId": {
4271
+ "type": "string"
3231
4272
  }
3232
4273
  }
3233
4274
  },
@@ -3311,17 +4352,14 @@
3311
4352
  }
3312
4353
  ]
3313
4354
  },
3314
- "content": {
3315
- "type": "array",
3316
- "items": {
3317
- "$ref": "#/components/schemas/SearchDialogContentDto"
3318
- }
3319
- },
3320
4355
  "seenSinceLastUpdate": {
3321
4356
  "type": "array",
3322
4357
  "items": {
3323
4358
  "$ref": "#/components/schemas/SearchDialogDialogSeenLogDto"
3324
4359
  }
4360
+ },
4361
+ "content": {
4362
+ "$ref": "#/components/schemas/SearchDialogContentDto"
3325
4363
  }
3326
4364
  }
3327
4365
  },
@@ -3352,8 +4390,7 @@
3352
4390
  "nullable": true
3353
4391
  },
3354
4392
  "performedBy": {
3355
- "type": "string",
3356
- "nullable": true
4393
+ "$ref": "#/components/schemas/SearchDialogDialogActivityPerformedByActorDto"
3357
4394
  },
3358
4395
  "description": {
3359
4396
  "type": "array",
@@ -3363,18 +4400,24 @@
3363
4400
  }
3364
4401
  }
3365
4402
  },
3366
- "SearchDialogContentDto": {
4403
+ "SearchDialogDialogActivityPerformedByActorDto": {
3367
4404
  "type": "object",
3368
4405
  "additionalProperties": false,
3369
4406
  "properties": {
3370
- "type": {
3371
- "$ref": "#/components/schemas/DialogContentType_Values"
4407
+ "id": {
4408
+ "type": "string",
4409
+ "format": "guid"
3372
4410
  },
3373
- "value": {
3374
- "type": "array",
3375
- "items": {
3376
- "$ref": "#/components/schemas/LocalizationDto"
3377
- }
4411
+ "actorType": {
4412
+ "$ref": "#/components/schemas/DialogActorType_Values"
4413
+ },
4414
+ "actorName": {
4415
+ "type": "string",
4416
+ "nullable": true
4417
+ },
4418
+ "actorId": {
4419
+ "type": "string",
4420
+ "nullable": true
3378
4421
  }
3379
4422
  }
3380
4423
  },
@@ -3390,11 +4433,11 @@
3390
4433
  "type": "string",
3391
4434
  "format": "date-time"
3392
4435
  },
3393
- "endUserIdHash": {
3394
- "type": "string"
4436
+ "seenBy": {
4437
+ "$ref": "#/components/schemas/SearchDialogDialogSeenLogSeenByActorDto"
3395
4438
  },
3396
- "endUserName": {
3397
- "type": "string",
4439
+ "isViaServiceOwner": {
4440
+ "type": "boolean",
3398
4441
  "nullable": true
3399
4442
  },
3400
4443
  "isCurrentEndUser": {
@@ -3402,6 +4445,50 @@
3402
4445
  }
3403
4446
  }
3404
4447
  },
4448
+ "SearchDialogDialogSeenLogSeenByActorDto": {
4449
+ "type": "object",
4450
+ "additionalProperties": false,
4451
+ "properties": {
4452
+ "id": {
4453
+ "type": "string",
4454
+ "format": "guid"
4455
+ },
4456
+ "actorName": {
4457
+ "type": "string"
4458
+ },
4459
+ "actorId": {
4460
+ "type": "string"
4461
+ }
4462
+ }
4463
+ },
4464
+ "SearchDialogContentDto": {
4465
+ "type": "object",
4466
+ "additionalProperties": false,
4467
+ "properties": {
4468
+ "title": {
4469
+ "$ref": "#/components/schemas/ContentValueDto"
4470
+ },
4471
+ "summary": {
4472
+ "$ref": "#/components/schemas/ContentValueDto"
4473
+ },
4474
+ "senderName": {
4475
+ "nullable": true,
4476
+ "oneOf": [
4477
+ {
4478
+ "$ref": "#/components/schemas/ContentValueDto"
4479
+ }
4480
+ ]
4481
+ },
4482
+ "extendedStatus": {
4483
+ "nullable": true,
4484
+ "oneOf": [
4485
+ {
4486
+ "$ref": "#/components/schemas/ContentValueDto"
4487
+ }
4488
+ ]
4489
+ }
4490
+ }
4491
+ },
3405
4492
  "GetDialogDto": {
3406
4493
  "type": "object",
3407
4494
  "additionalProperties": false,
@@ -3466,10 +4553,7 @@
3466
4553
  "$ref": "#/components/schemas/DialogStatus_Values"
3467
4554
  },
3468
4555
  "content": {
3469
- "type": "array",
3470
- "items": {
3471
- "$ref": "#/components/schemas/GetDialogContentDto"
3472
- }
4556
+ "$ref": "#/components/schemas/GetDialogContentDto"
3473
4557
  },
3474
4558
  "dialogToken": {
3475
4559
  "type": "string",
@@ -3481,6 +4565,12 @@
3481
4565
  "$ref": "#/components/schemas/GetDialogDialogAttachmentDto"
3482
4566
  }
3483
4567
  },
4568
+ "transmissions": {
4569
+ "type": "array",
4570
+ "items": {
4571
+ "$ref": "#/components/schemas/GetDialogDialogTransmissionDto"
4572
+ }
4573
+ },
3484
4574
  "guiActions": {
3485
4575
  "type": "array",
3486
4576
  "items": {
@@ -3511,22 +4601,166 @@
3511
4601
  "type": "object",
3512
4602
  "additionalProperties": false,
3513
4603
  "properties": {
3514
- "type": {
3515
- "$ref": "#/components/schemas/DialogContentType_Values"
4604
+ "title": {
4605
+ "$ref": "#/components/schemas/ContentValueDto"
3516
4606
  },
3517
- "value": {
4607
+ "summary": {
4608
+ "$ref": "#/components/schemas/ContentValueDto"
4609
+ },
4610
+ "senderName": {
4611
+ "nullable": true,
4612
+ "oneOf": [
4613
+ {
4614
+ "$ref": "#/components/schemas/ContentValueDto"
4615
+ }
4616
+ ]
4617
+ },
4618
+ "additionalInfo": {
4619
+ "nullable": true,
4620
+ "oneOf": [
4621
+ {
4622
+ "$ref": "#/components/schemas/ContentValueDto"
4623
+ }
4624
+ ]
4625
+ },
4626
+ "extendedStatus": {
4627
+ "nullable": true,
4628
+ "oneOf": [
4629
+ {
4630
+ "$ref": "#/components/schemas/ContentValueDto"
4631
+ }
4632
+ ]
4633
+ },
4634
+ "mainContentReference": {
4635
+ "nullable": true,
4636
+ "oneOf": [
4637
+ {
4638
+ "$ref": "#/components/schemas/ContentValueDto"
4639
+ }
4640
+ ]
4641
+ }
4642
+ }
4643
+ },
4644
+ "GetDialogDialogAttachmentDto": {
4645
+ "type": "object",
4646
+ "additionalProperties": false,
4647
+ "properties": {
4648
+ "id": {
4649
+ "type": "string",
4650
+ "format": "guid"
4651
+ },
4652
+ "displayName": {
3518
4653
  "type": "array",
3519
4654
  "items": {
3520
4655
  "$ref": "#/components/schemas/LocalizationDto"
3521
4656
  }
3522
4657
  },
4658
+ "urls": {
4659
+ "type": "array",
4660
+ "items": {
4661
+ "$ref": "#/components/schemas/GetDialogDialogAttachmentUrlDto"
4662
+ }
4663
+ }
4664
+ }
4665
+ },
4666
+ "GetDialogDialogAttachmentUrlDto": {
4667
+ "type": "object",
4668
+ "additionalProperties": false,
4669
+ "properties": {
4670
+ "id": {
4671
+ "type": "string",
4672
+ "format": "guid"
4673
+ },
4674
+ "url": {
4675
+ "type": "string",
4676
+ "format": "uri"
4677
+ },
3523
4678
  "mediaType": {
3524
4679
  "type": "string",
3525
4680
  "nullable": true
4681
+ },
4682
+ "consumerType": {
4683
+ "$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
3526
4684
  }
3527
4685
  }
3528
4686
  },
3529
- "GetDialogDialogAttachmentDto": {
4687
+ "GetDialogDialogTransmissionDto": {
4688
+ "type": "object",
4689
+ "additionalProperties": false,
4690
+ "properties": {
4691
+ "id": {
4692
+ "type": "string",
4693
+ "format": "guid"
4694
+ },
4695
+ "createdAt": {
4696
+ "type": "string",
4697
+ "format": "date-time"
4698
+ },
4699
+ "authorizationAttribute": {
4700
+ "type": "string",
4701
+ "nullable": true
4702
+ },
4703
+ "isAuthorized": {
4704
+ "type": "boolean"
4705
+ },
4706
+ "extendedType": {
4707
+ "type": "string",
4708
+ "nullable": true
4709
+ },
4710
+ "relatedTransmissionId": {
4711
+ "type": "string",
4712
+ "format": "guid",
4713
+ "nullable": true
4714
+ },
4715
+ "type": {
4716
+ "$ref": "#/components/schemas/DialogTransmissionType_Values"
4717
+ },
4718
+ "sender": {
4719
+ "$ref": "#/components/schemas/GetDialogDialogTransmissionSenderActorDto"
4720
+ },
4721
+ "content": {
4722
+ "$ref": "#/components/schemas/GetDialogDialogTransmissionContentDto"
4723
+ },
4724
+ "attachments": {
4725
+ "type": "array",
4726
+ "items": {
4727
+ "$ref": "#/components/schemas/GetDialogTransmissionAttachmentDto"
4728
+ }
4729
+ }
4730
+ }
4731
+ },
4732
+ "GetDialogDialogTransmissionSenderActorDto": {
4733
+ "type": "object",
4734
+ "additionalProperties": false,
4735
+ "properties": {
4736
+ "id": {
4737
+ "type": "string",
4738
+ "format": "guid"
4739
+ },
4740
+ "actorType": {
4741
+ "$ref": "#/components/schemas/DialogActorType_Values"
4742
+ },
4743
+ "actorName": {
4744
+ "type": "string"
4745
+ },
4746
+ "actorId": {
4747
+ "type": "string"
4748
+ }
4749
+ }
4750
+ },
4751
+ "GetDialogDialogTransmissionContentDto": {
4752
+ "type": "object",
4753
+ "additionalProperties": false,
4754
+ "properties": {
4755
+ "title": {
4756
+ "$ref": "#/components/schemas/ContentValueDto"
4757
+ },
4758
+ "summary": {
4759
+ "$ref": "#/components/schemas/ContentValueDto"
4760
+ }
4761
+ }
4762
+ },
4763
+ "GetDialogTransmissionAttachmentDto": {
3530
4764
  "type": "object",
3531
4765
  "additionalProperties": false,
3532
4766
  "properties": {
@@ -3543,12 +4777,12 @@
3543
4777
  "urls": {
3544
4778
  "type": "array",
3545
4779
  "items": {
3546
- "$ref": "#/components/schemas/GetDialogDialogAttachmentUrlDto"
4780
+ "$ref": "#/components/schemas/GetDialogTransmissionAttachmentUrlDto"
3547
4781
  }
3548
4782
  }
3549
4783
  }
3550
4784
  },
3551
- "GetDialogDialogAttachmentUrlDto": {
4785
+ "GetDialogTransmissionAttachmentUrlDto": {
3552
4786
  "type": "object",
3553
4787
  "additionalProperties": false,
3554
4788
  "properties": {
@@ -3565,7 +4799,7 @@
3565
4799
  "nullable": true
3566
4800
  },
3567
4801
  "consumerType": {
3568
- "$ref": "#/components/schemas/DialogAttachmentUrlConsumerType_Values"
4802
+ "$ref": "#/components/schemas/AttachmentUrlConsumerType_Values"
3569
4803
  }
3570
4804
  }
3571
4805
  },
@@ -3712,8 +4946,7 @@
3712
4946
  "nullable": true
3713
4947
  },
3714
4948
  "performedBy": {
3715
- "type": "string",
3716
- "nullable": true
4949
+ "$ref": "#/components/schemas/GetDialogDialogActivityPerformedByActorDto"
3717
4950
  },
3718
4951
  "description": {
3719
4952
  "type": "array",
@@ -3723,6 +4956,27 @@
3723
4956
  }
3724
4957
  }
3725
4958
  },
4959
+ "GetDialogDialogActivityPerformedByActorDto": {
4960
+ "type": "object",
4961
+ "additionalProperties": false,
4962
+ "properties": {
4963
+ "id": {
4964
+ "type": "string",
4965
+ "format": "guid"
4966
+ },
4967
+ "actorType": {
4968
+ "$ref": "#/components/schemas/DialogActorType_Values"
4969
+ },
4970
+ "actorName": {
4971
+ "type": "string",
4972
+ "nullable": true
4973
+ },
4974
+ "actorId": {
4975
+ "type": "string",
4976
+ "nullable": true
4977
+ }
4978
+ }
4979
+ },
3726
4980
  "GetDialogDialogSeenLogDto": {
3727
4981
  "type": "object",
3728
4982
  "additionalProperties": false,
@@ -3735,11 +4989,11 @@
3735
4989
  "type": "string",
3736
4990
  "format": "date-time"
3737
4991
  },
3738
- "endUserIdHash": {
3739
- "type": "string"
4992
+ "seenBy": {
4993
+ "$ref": "#/components/schemas/GetDialogDialogSeenLogSeenByActorDto"
3740
4994
  },
3741
- "endUserName": {
3742
- "type": "string",
4995
+ "isViaServiceOwner": {
4996
+ "type": "boolean",
3743
4997
  "nullable": true
3744
4998
  },
3745
4999
  "isCurrentEndUser": {
@@ -3747,6 +5001,22 @@
3747
5001
  }
3748
5002
  }
3749
5003
  },
5004
+ "GetDialogDialogSeenLogSeenByActorDto": {
5005
+ "type": "object",
5006
+ "additionalProperties": false,
5007
+ "properties": {
5008
+ "id": {
5009
+ "type": "string",
5010
+ "format": "guid"
5011
+ },
5012
+ "actorName": {
5013
+ "type": "string"
5014
+ },
5015
+ "actorId": {
5016
+ "type": "string"
5017
+ }
5018
+ }
5019
+ },
3750
5020
  "Operation": {
3751
5021
  "type": "object",
3752
5022
  "additionalProperties": false,