@nmshd/runtime 2.2.2 → 2.3.1

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.
Files changed (25) hide show
  1. package/dist/buildInformation.js +5 -5
  2. package/dist/modules/RequestModule.d.ts +1 -0
  3. package/dist/modules/RequestModule.js +30 -7
  4. package/dist/modules/RequestModule.js.map +1 -1
  5. package/dist/useCases/common/Schemas.js +2567 -84
  6. package/dist/useCases/common/Schemas.js.map +1 -1
  7. package/dist/useCases/consumption/requests/{CreateAndCompleteOutgoingRequestFromRelationshipCreationChange.d.ts → CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponse.d.ts} +2 -0
  8. package/dist/useCases/consumption/requests/{CreateAndCompleteOutgoingRequestFromRelationshipCreationChange.js → CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponse.js} +7 -2
  9. package/dist/useCases/consumption/requests/CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponse.js.map +1 -0
  10. package/dist/useCases/consumption/requests/index.d.ts +1 -1
  11. package/dist/useCases/consumption/requests/index.js +1 -1
  12. package/dist/useCases/consumption/requests/index.js.map +1 -1
  13. package/dist/useCases/consumption/settings/DeleteSetting.js +1 -2
  14. package/dist/useCases/consumption/settings/DeleteSetting.js.map +1 -1
  15. package/dist/useCases/consumption/settings/UpdateSetting.js +1 -2
  16. package/dist/useCases/consumption/settings/UpdateSetting.js.map +1 -1
  17. package/dist/useCases/transport/devices/UpdateDevice.d.ts +1 -1
  18. package/dist/useCases/transport/devices/UpdateDevice.js +2 -2
  19. package/dist/useCases/transport/devices/UpdateDevice.js.map +1 -1
  20. package/lib-web/nmshd.runtime.js +4050 -2259
  21. package/lib-web/nmshd.runtime.js.map +1 -1
  22. package/lib-web/nmshd.runtime.min.js +3 -3
  23. package/lib-web/nmshd.runtime.min.js.map +1 -1
  24. package/package.json +14 -14
  25. package/dist/useCases/consumption/requests/CreateAndCompleteOutgoingRequestFromRelationshipCreationChange.js.map +0 -1
@@ -3403,6 +3403,9 @@ exports.CanCreateOutgoingRequestRequest = {
3403
3403
  },
3404
3404
  {
3405
3405
  "$ref": "#/definitions/RegisterAttributeListenerRequestItemJSON"
3406
+ },
3407
+ {
3408
+ "$ref": "#/definitions/SucceedAttributeRequestItemJSON"
3406
3409
  }
3407
3410
  ]
3408
3411
  },
@@ -5863,6 +5866,74 @@ exports.CanCreateOutgoingRequestRequest = {
5863
5866
  ],
5864
5867
  "additionalProperties": false
5865
5868
  },
5869
+ "SucceedAttributeRequestItemJSON": {
5870
+ "type": "object",
5871
+ "properties": {
5872
+ "@type": {
5873
+ "type": "string"
5874
+ },
5875
+ "@context": {
5876
+ "type": "string"
5877
+ },
5878
+ "@version": {
5879
+ "type": "string"
5880
+ },
5881
+ "title": {
5882
+ "type": "string",
5883
+ "description": "The human-readable title of this item."
5884
+ },
5885
+ "description": {
5886
+ "type": "string",
5887
+ "description": "The human-readable description of this item."
5888
+ },
5889
+ "metadata": {
5890
+ "type": "object",
5891
+ "description": "This property can be used to add some arbitrary metadata to this item. The content of this property will be copied into the response on the side of the recipient, so the sender can use it to identify the group content as they receive the response."
5892
+ },
5893
+ "mustBeAccepted": {
5894
+ "type": "boolean",
5895
+ "description": "If set to `true`, the recipient has to accept this group if he wants to accept the Request. If set to `false`, the recipient can decide whether he wants to accept it or not.\n\nCaution: this setting does not take effect in case it is inside of a\n {@link RequestItemGroupJSON RequestItemGroup } , which is not accepted by the recipient, since a {@link RequestItemJSON RequestItem } can only be accepted if the parent group is accepted as well."
5896
+ },
5897
+ "requireManualDecision": {
5898
+ "type": "boolean",
5899
+ "description": "If set to `true`, it advices the recipient of this RequestItem to carefully consider their decision and especially do not decide based on some automation rules."
5900
+ },
5901
+ "succeededId": {
5902
+ "type": "string",
5903
+ "description": "The id of the Attribute to be succeeded."
5904
+ },
5905
+ "succeededAttribute": {
5906
+ "anyOf": [
5907
+ {
5908
+ "$ref": "#/definitions/IdentityAttributeJSON"
5909
+ },
5910
+ {
5911
+ "$ref": "#/definitions/RelationshipAttributeJSON"
5912
+ }
5913
+ ],
5914
+ "description": "The succeeded Attribute with the updated validTo date. Its validTo date must be lower than the validFrom date of the new Attribute."
5915
+ },
5916
+ "newAttribute": {
5917
+ "anyOf": [
5918
+ {
5919
+ "$ref": "#/definitions/IdentityAttributeJSON"
5920
+ },
5921
+ {
5922
+ "$ref": "#/definitions/RelationshipAttributeJSON"
5923
+ }
5924
+ ],
5925
+ "description": "The new Attribute. Its validFrom date must be greater than the validTo date of the succeeded Attribute."
5926
+ }
5927
+ },
5928
+ "required": [
5929
+ "@type",
5930
+ "mustBeAccepted",
5931
+ "newAttribute",
5932
+ "succeededAttribute",
5933
+ "succeededId"
5934
+ ],
5935
+ "additionalProperties": false
5936
+ },
5866
5937
  "AddressString": {
5867
5938
  "type": "string",
5868
5939
  "pattern": "id1[A-Za-z0-9]{32,33}"
@@ -5970,75 +6041,2359 @@ exports.CheckPrerequisitesOfIncomingRequestRequest = {
5970
6041
  }
5971
6042
  },
5972
6043
  "required": [
5973
- "requestId"
6044
+ "requestId"
6045
+ ],
6046
+ "additionalProperties": false
6047
+ },
6048
+ "RequestIdString": {
6049
+ "type": "string",
6050
+ "pattern": "REQ[A-Za-z0-9]{17}"
6051
+ }
6052
+ }
6053
+ };
6054
+ exports.CompleteIncomingRequestRequest = {
6055
+ "$schema": "http://json-schema.org/draft-07/schema#",
6056
+ "$ref": "#/definitions/CompleteIncomingRequestRequest",
6057
+ "definitions": {
6058
+ "CompleteIncomingRequestRequest": {
6059
+ "type": "object",
6060
+ "properties": {
6061
+ "requestId": {
6062
+ "$ref": "#/definitions/RequestIdString"
6063
+ },
6064
+ "responseSourceId": {
6065
+ "anyOf": [
6066
+ {
6067
+ "$ref": "#/definitions/MessageIdString"
6068
+ },
6069
+ {
6070
+ "$ref": "#/definitions/RelationshipChangeIdString"
6071
+ }
6072
+ ]
6073
+ }
6074
+ },
6075
+ "required": [
6076
+ "requestId"
6077
+ ],
6078
+ "additionalProperties": false
6079
+ },
6080
+ "RequestIdString": {
6081
+ "type": "string",
6082
+ "pattern": "REQ[A-Za-z0-9]{17}"
6083
+ },
6084
+ "MessageIdString": {
6085
+ "type": "string",
6086
+ "pattern": "MSG[A-Za-z0-9]{17}"
6087
+ },
6088
+ "RelationshipChangeIdString": {
6089
+ "type": "string",
6090
+ "pattern": "RCH[A-Za-z0-9]{17}"
6091
+ }
6092
+ }
6093
+ };
6094
+ exports.CompleteOutgoingRequestRequest = {
6095
+ "$schema": "http://json-schema.org/draft-07/schema#",
6096
+ "$ref": "#/definitions/CompleteOutgoingRequestRequest",
6097
+ "definitions": {
6098
+ "CompleteOutgoingRequestRequest": {
6099
+ "type": "object",
6100
+ "properties": {
6101
+ "receivedResponse": {
6102
+ "$ref": "#/definitions/ResponseJSON"
6103
+ },
6104
+ "messageId": {
6105
+ "$ref": "#/definitions/MessageIdString"
6106
+ }
6107
+ },
6108
+ "required": [
6109
+ "receivedResponse",
6110
+ "messageId"
6111
+ ],
6112
+ "additionalProperties": false
6113
+ },
6114
+ "ResponseJSON": {
6115
+ "type": "object",
6116
+ "properties": {
6117
+ "@type": {
6118
+ "type": "string",
6119
+ "const": "Response"
6120
+ },
6121
+ "@context": {
6122
+ "type": "string"
6123
+ },
6124
+ "@version": {
6125
+ "type": "string"
6126
+ },
6127
+ "result": {
6128
+ "$ref": "#/definitions/ResponseResult"
6129
+ },
6130
+ "requestId": {
6131
+ "type": "string"
6132
+ },
6133
+ "items": {
6134
+ "type": "array",
6135
+ "items": {
6136
+ "anyOf": [
6137
+ {
6138
+ "$ref": "#/definitions/ResponseItemGroupJSON"
6139
+ },
6140
+ {
6141
+ "$ref": "#/definitions/ResponseItemJSONDerivations"
6142
+ }
6143
+ ]
6144
+ }
6145
+ }
6146
+ },
6147
+ "required": [
6148
+ "@type",
6149
+ "items",
6150
+ "requestId",
6151
+ "result"
6152
+ ],
6153
+ "additionalProperties": false
6154
+ },
6155
+ "ResponseResult": {
6156
+ "type": "string",
6157
+ "enum": [
6158
+ "Accepted",
6159
+ "Rejected"
6160
+ ]
6161
+ },
6162
+ "ResponseItemGroupJSON": {
6163
+ "type": "object",
6164
+ "properties": {
6165
+ "@type": {
6166
+ "type": "string",
6167
+ "const": "ResponseItemGroup"
6168
+ },
6169
+ "@context": {
6170
+ "type": "string"
6171
+ },
6172
+ "@version": {
6173
+ "type": "string"
6174
+ },
6175
+ "items": {
6176
+ "type": "array",
6177
+ "items": {
6178
+ "$ref": "#/definitions/ResponseItemJSONDerivations"
6179
+ }
6180
+ }
6181
+ },
6182
+ "required": [
6183
+ "@type",
6184
+ "items"
6185
+ ],
6186
+ "additionalProperties": false
6187
+ },
6188
+ "ResponseItemJSONDerivations": {
6189
+ "anyOf": [
6190
+ {
6191
+ "$ref": "#/definitions/AcceptResponseItemJSONDerivations"
6192
+ },
6193
+ {
6194
+ "$ref": "#/definitions/RejectResponseItemJSONDerivations"
6195
+ },
6196
+ {
6197
+ "$ref": "#/definitions/ErrorResponseItemJSONDerivations"
6198
+ }
6199
+ ]
6200
+ },
6201
+ "AcceptResponseItemJSONDerivations": {
6202
+ "anyOf": [
6203
+ {
6204
+ "$ref": "#/definitions/AcceptResponseItemJSON"
6205
+ },
6206
+ {
6207
+ "$ref": "#/definitions/CreateAttributeAcceptResponseItemJSON"
6208
+ },
6209
+ {
6210
+ "$ref": "#/definitions/ShareAttributeAcceptResponseItemJSON"
6211
+ },
6212
+ {
6213
+ "$ref": "#/definitions/ProposeAttributeAcceptResponseItemJSON"
6214
+ },
6215
+ {
6216
+ "$ref": "#/definitions/ReadAttributeAcceptResponseItemJSON"
6217
+ },
6218
+ {
6219
+ "$ref": "#/definitions/RegisterAttributeListenerAcceptResponseItemJSON"
6220
+ },
6221
+ {
6222
+ "$ref": "#/definitions/SucceedAttributeAcceptResponseItemJSON"
6223
+ }
6224
+ ]
6225
+ },
6226
+ "AcceptResponseItemJSON": {
6227
+ "type": "object",
6228
+ "properties": {
6229
+ "@type": {
6230
+ "type": "string"
6231
+ },
6232
+ "@context": {
6233
+ "type": "string"
6234
+ },
6235
+ "@version": {
6236
+ "type": "string"
6237
+ },
6238
+ "result": {
6239
+ "type": "string",
6240
+ "const": "Accepted"
6241
+ }
6242
+ },
6243
+ "required": [
6244
+ "@type",
6245
+ "result"
6246
+ ],
6247
+ "additionalProperties": false
6248
+ },
6249
+ "CreateAttributeAcceptResponseItemJSON": {
6250
+ "type": "object",
6251
+ "properties": {
6252
+ "@type": {
6253
+ "type": "string",
6254
+ "const": "CreateAttributeAcceptResponseItem"
6255
+ },
6256
+ "@context": {
6257
+ "type": "string"
6258
+ },
6259
+ "@version": {
6260
+ "type": "string"
6261
+ },
6262
+ "result": {
6263
+ "type": "string",
6264
+ "const": "Accepted"
6265
+ },
6266
+ "attributeId": {
6267
+ "type": "string"
6268
+ }
6269
+ },
6270
+ "required": [
6271
+ "@type",
6272
+ "attributeId",
6273
+ "result"
6274
+ ],
6275
+ "additionalProperties": false
6276
+ },
6277
+ "ShareAttributeAcceptResponseItemJSON": {
6278
+ "type": "object",
6279
+ "properties": {
6280
+ "@type": {
6281
+ "type": "string",
6282
+ "const": "ShareAttributeAcceptResponseItem"
6283
+ },
6284
+ "@context": {
6285
+ "type": "string"
6286
+ },
6287
+ "@version": {
6288
+ "type": "string"
6289
+ },
6290
+ "result": {
6291
+ "type": "string",
6292
+ "const": "Accepted"
6293
+ },
6294
+ "attributeId": {
6295
+ "type": "string"
6296
+ }
6297
+ },
6298
+ "required": [
6299
+ "@type",
6300
+ "attributeId",
6301
+ "result"
6302
+ ],
6303
+ "additionalProperties": false
6304
+ },
6305
+ "ProposeAttributeAcceptResponseItemJSON": {
6306
+ "type": "object",
6307
+ "properties": {
6308
+ "@type": {
6309
+ "type": "string",
6310
+ "const": "ProposeAttributeAcceptResponseItem"
6311
+ },
6312
+ "@context": {
6313
+ "type": "string"
6314
+ },
6315
+ "@version": {
6316
+ "type": "string"
6317
+ },
6318
+ "result": {
6319
+ "type": "string",
6320
+ "const": "Accepted"
6321
+ },
6322
+ "attributeId": {
6323
+ "type": "string"
6324
+ },
6325
+ "attribute": {
6326
+ "anyOf": [
6327
+ {
6328
+ "$ref": "#/definitions/IdentityAttributeJSON"
6329
+ },
6330
+ {
6331
+ "$ref": "#/definitions/RelationshipAttributeJSON"
6332
+ }
6333
+ ]
6334
+ }
6335
+ },
6336
+ "required": [
6337
+ "@type",
6338
+ "attribute",
6339
+ "attributeId",
6340
+ "result"
6341
+ ],
6342
+ "additionalProperties": false
6343
+ },
6344
+ "IdentityAttributeJSON": {
6345
+ "type": "object",
6346
+ "properties": {
6347
+ "@type": {
6348
+ "type": "string",
6349
+ "const": "IdentityAttribute"
6350
+ },
6351
+ "@context": {
6352
+ "type": "string"
6353
+ },
6354
+ "@version": {
6355
+ "type": "string"
6356
+ },
6357
+ "owner": {
6358
+ "type": "string"
6359
+ },
6360
+ "validFrom": {
6361
+ "type": "string"
6362
+ },
6363
+ "validTo": {
6364
+ "type": "string"
6365
+ },
6366
+ "value": {
6367
+ "$ref": "#/definitions/AttributeValues.Identity.Json"
6368
+ },
6369
+ "tags": {
6370
+ "type": "array",
6371
+ "items": {
6372
+ "type": "string"
6373
+ }
6374
+ }
6375
+ },
6376
+ "required": [
6377
+ "@type",
6378
+ "owner",
6379
+ "value"
6380
+ ],
6381
+ "additionalProperties": false
6382
+ },
6383
+ "AttributeValues.Identity.Json": {
6384
+ "anyOf": [
6385
+ {
6386
+ "$ref": "#/definitions/AttributeValues.Identity.Editable.Json"
6387
+ },
6388
+ {
6389
+ "$ref": "#/definitions/AttributeValues.Identity.Uneditable.Json"
6390
+ }
6391
+ ]
6392
+ },
6393
+ "AttributeValues.Identity.Editable.Json": {
6394
+ "anyOf": [
6395
+ {
6396
+ "$ref": "#/definitions/AffiliationJSON"
6397
+ },
6398
+ {
6399
+ "$ref": "#/definitions/BirthDateJSON"
6400
+ },
6401
+ {
6402
+ "$ref": "#/definitions/BirthNameJSON"
6403
+ },
6404
+ {
6405
+ "$ref": "#/definitions/BirthPlaceJSON"
6406
+ },
6407
+ {
6408
+ "$ref": "#/definitions/CitizenshipJSON"
6409
+ },
6410
+ {
6411
+ "$ref": "#/definitions/CommunicationLanguageJSON"
6412
+ },
6413
+ {
6414
+ "$ref": "#/definitions/DeliveryBoxAddressJSON"
6415
+ },
6416
+ {
6417
+ "$ref": "#/definitions/DisplayNameJSON"
6418
+ },
6419
+ {
6420
+ "$ref": "#/definitions/EMailAddressJSON"
6421
+ },
6422
+ {
6423
+ "$ref": "#/definitions/FaxNumberJSON"
6424
+ },
6425
+ {
6426
+ "$ref": "#/definitions/FileReferenceJSON"
6427
+ },
6428
+ {
6429
+ "$ref": "#/definitions/JobTitleJSON"
6430
+ },
6431
+ {
6432
+ "$ref": "#/definitions/NationalityJSON"
6433
+ },
6434
+ {
6435
+ "$ref": "#/definitions/PersonNameJSON"
6436
+ },
6437
+ {
6438
+ "$ref": "#/definitions/PhoneNumberJSON"
6439
+ },
6440
+ {
6441
+ "$ref": "#/definitions/PostOfficeBoxAddressJSON"
6442
+ },
6443
+ {
6444
+ "$ref": "#/definitions/PseudonymJSON"
6445
+ },
6446
+ {
6447
+ "$ref": "#/definitions/SexJSON"
6448
+ },
6449
+ {
6450
+ "$ref": "#/definitions/StreetAddressJSON"
6451
+ },
6452
+ {
6453
+ "$ref": "#/definitions/WebsiteJSON"
6454
+ }
6455
+ ]
6456
+ },
6457
+ "AffiliationJSON": {
6458
+ "type": "object",
6459
+ "properties": {
6460
+ "@type": {
6461
+ "type": "string",
6462
+ "const": "Affiliation"
6463
+ },
6464
+ "@context": {
6465
+ "type": "string"
6466
+ },
6467
+ "@version": {
6468
+ "type": "string"
6469
+ },
6470
+ "organization": {
6471
+ "type": "string"
6472
+ },
6473
+ "role": {
6474
+ "type": "string"
6475
+ },
6476
+ "unit": {
6477
+ "type": "string"
6478
+ }
6479
+ },
6480
+ "required": [
6481
+ "@type",
6482
+ "organization"
6483
+ ],
6484
+ "additionalProperties": false
6485
+ },
6486
+ "BirthDateJSON": {
6487
+ "type": "object",
6488
+ "properties": {
6489
+ "@type": {
6490
+ "type": "string",
6491
+ "const": "BirthDate"
6492
+ },
6493
+ "@context": {
6494
+ "type": "string"
6495
+ },
6496
+ "@version": {
6497
+ "type": "string"
6498
+ },
6499
+ "day": {
6500
+ "type": "number"
6501
+ },
6502
+ "month": {
6503
+ "type": "number"
6504
+ },
6505
+ "year": {
6506
+ "type": "number"
6507
+ }
6508
+ },
6509
+ "required": [
6510
+ "@type",
6511
+ "day",
6512
+ "month",
6513
+ "year"
6514
+ ],
6515
+ "additionalProperties": false
6516
+ },
6517
+ "BirthNameJSON": {
6518
+ "type": "object",
6519
+ "properties": {
6520
+ "@type": {
6521
+ "type": "string",
6522
+ "const": "BirthName"
6523
+ },
6524
+ "@context": {
6525
+ "type": "string"
6526
+ },
6527
+ "@version": {
6528
+ "type": "string"
6529
+ },
6530
+ "value": {
6531
+ "type": "string"
6532
+ }
6533
+ },
6534
+ "required": [
6535
+ "@type",
6536
+ "value"
6537
+ ],
6538
+ "additionalProperties": false
6539
+ },
6540
+ "BirthPlaceJSON": {
6541
+ "type": "object",
6542
+ "properties": {
6543
+ "@type": {
6544
+ "type": "string",
6545
+ "const": "BirthPlace"
6546
+ },
6547
+ "@context": {
6548
+ "type": "string"
6549
+ },
6550
+ "@version": {
6551
+ "type": "string"
6552
+ },
6553
+ "city": {
6554
+ "type": "string"
6555
+ },
6556
+ "country": {
6557
+ "type": "string"
6558
+ },
6559
+ "state": {
6560
+ "type": "string"
6561
+ }
6562
+ },
6563
+ "required": [
6564
+ "@type",
6565
+ "city",
6566
+ "country"
6567
+ ],
6568
+ "additionalProperties": false
6569
+ },
6570
+ "CitizenshipJSON": {
6571
+ "type": "object",
6572
+ "properties": {
6573
+ "@type": {
6574
+ "type": "string",
6575
+ "const": "Citizenship"
6576
+ },
6577
+ "@context": {
6578
+ "type": "string"
6579
+ },
6580
+ "@version": {
6581
+ "type": "string"
6582
+ },
6583
+ "value": {
6584
+ "type": "string"
6585
+ }
6586
+ },
6587
+ "required": [
6588
+ "@type",
6589
+ "value"
6590
+ ],
6591
+ "additionalProperties": false
6592
+ },
6593
+ "CommunicationLanguageJSON": {
6594
+ "type": "object",
6595
+ "properties": {
6596
+ "@type": {
6597
+ "type": "string",
6598
+ "const": "CommunicationLanguage"
6599
+ },
6600
+ "@context": {
6601
+ "type": "string"
6602
+ },
6603
+ "@version": {
6604
+ "type": "string"
6605
+ },
6606
+ "value": {
6607
+ "type": "string"
6608
+ }
6609
+ },
6610
+ "required": [
6611
+ "@type",
6612
+ "value"
6613
+ ],
6614
+ "additionalProperties": false
6615
+ },
6616
+ "DeliveryBoxAddressJSON": {
6617
+ "type": "object",
6618
+ "properties": {
6619
+ "@type": {
6620
+ "type": "string",
6621
+ "const": "DeliveryBoxAddress"
6622
+ },
6623
+ "@context": {
6624
+ "type": "string"
6625
+ },
6626
+ "@version": {
6627
+ "type": "string"
6628
+ },
6629
+ "recipient": {
6630
+ "type": "string"
6631
+ },
6632
+ "userId": {
6633
+ "type": "string"
6634
+ },
6635
+ "deliveryBoxId": {
6636
+ "type": "string"
6637
+ },
6638
+ "zipCode": {
6639
+ "type": "string"
6640
+ },
6641
+ "city": {
6642
+ "type": "string"
6643
+ },
6644
+ "country": {
6645
+ "type": "string"
6646
+ },
6647
+ "phoneNumber": {
6648
+ "type": "string"
6649
+ },
6650
+ "state": {
6651
+ "type": "string"
6652
+ }
6653
+ },
6654
+ "required": [
6655
+ "@type",
6656
+ "city",
6657
+ "country",
6658
+ "deliveryBoxId",
6659
+ "recipient",
6660
+ "userId",
6661
+ "zipCode"
6662
+ ],
6663
+ "additionalProperties": false
6664
+ },
6665
+ "DisplayNameJSON": {
6666
+ "type": "object",
6667
+ "properties": {
6668
+ "@type": {
6669
+ "type": "string",
6670
+ "const": "DisplayName"
6671
+ },
6672
+ "@context": {
6673
+ "type": "string"
6674
+ },
6675
+ "@version": {
6676
+ "type": "string"
6677
+ },
6678
+ "value": {
6679
+ "type": "string"
6680
+ }
6681
+ },
6682
+ "required": [
6683
+ "@type",
6684
+ "value"
6685
+ ],
6686
+ "additionalProperties": false
6687
+ },
6688
+ "EMailAddressJSON": {
6689
+ "type": "object",
6690
+ "properties": {
6691
+ "@type": {
6692
+ "type": "string",
6693
+ "const": "EMailAddress"
6694
+ },
6695
+ "@context": {
6696
+ "type": "string"
6697
+ },
6698
+ "@version": {
6699
+ "type": "string"
6700
+ },
6701
+ "value": {
6702
+ "type": "string"
6703
+ }
6704
+ },
6705
+ "required": [
6706
+ "@type",
6707
+ "value"
6708
+ ],
6709
+ "additionalProperties": false
6710
+ },
6711
+ "FaxNumberJSON": {
6712
+ "type": "object",
6713
+ "properties": {
6714
+ "@type": {
6715
+ "type": "string",
6716
+ "const": "FaxNumber"
6717
+ },
6718
+ "@context": {
6719
+ "type": "string"
6720
+ },
6721
+ "@version": {
6722
+ "type": "string"
6723
+ },
6724
+ "value": {
6725
+ "type": "string"
6726
+ }
6727
+ },
6728
+ "required": [
6729
+ "@type",
6730
+ "value"
6731
+ ],
6732
+ "additionalProperties": false
6733
+ },
6734
+ "FileReferenceJSON": {
6735
+ "type": "object",
6736
+ "properties": {
6737
+ "@type": {
6738
+ "type": "string",
6739
+ "const": "FileReference"
6740
+ },
6741
+ "@context": {
6742
+ "type": "string"
6743
+ },
6744
+ "@version": {
6745
+ "type": "string"
6746
+ },
6747
+ "value": {
6748
+ "type": "string"
6749
+ }
6750
+ },
6751
+ "required": [
6752
+ "@type",
6753
+ "value"
6754
+ ],
6755
+ "additionalProperties": false
6756
+ },
6757
+ "JobTitleJSON": {
6758
+ "type": "object",
6759
+ "properties": {
6760
+ "@type": {
6761
+ "type": "string",
6762
+ "const": "JobTitle"
6763
+ },
6764
+ "@context": {
6765
+ "type": "string"
6766
+ },
6767
+ "@version": {
6768
+ "type": "string"
6769
+ },
6770
+ "value": {
6771
+ "type": "string"
6772
+ }
6773
+ },
6774
+ "required": [
6775
+ "@type",
6776
+ "value"
6777
+ ],
6778
+ "additionalProperties": false
6779
+ },
6780
+ "NationalityJSON": {
6781
+ "type": "object",
6782
+ "properties": {
6783
+ "@type": {
6784
+ "type": "string",
6785
+ "const": "Nationality"
6786
+ },
6787
+ "@context": {
6788
+ "type": "string"
6789
+ },
6790
+ "@version": {
6791
+ "type": "string"
6792
+ },
6793
+ "value": {
6794
+ "type": "string"
6795
+ }
6796
+ },
6797
+ "required": [
6798
+ "@type",
6799
+ "value"
6800
+ ],
6801
+ "additionalProperties": false
6802
+ },
6803
+ "PersonNameJSON": {
6804
+ "type": "object",
6805
+ "properties": {
6806
+ "@type": {
6807
+ "type": "string",
6808
+ "const": "PersonName"
6809
+ },
6810
+ "@context": {
6811
+ "type": "string"
6812
+ },
6813
+ "@version": {
6814
+ "type": "string"
6815
+ },
6816
+ "givenName": {
6817
+ "type": "string"
6818
+ },
6819
+ "middleName": {
6820
+ "type": "string"
6821
+ },
6822
+ "surname": {
6823
+ "type": "string"
6824
+ },
6825
+ "honorificSuffix": {
6826
+ "type": "string"
6827
+ },
6828
+ "honorificPrefix": {
6829
+ "type": "string"
6830
+ }
6831
+ },
6832
+ "required": [
6833
+ "@type",
6834
+ "givenName",
6835
+ "surname"
6836
+ ],
6837
+ "additionalProperties": false
6838
+ },
6839
+ "PhoneNumberJSON": {
6840
+ "type": "object",
6841
+ "properties": {
6842
+ "@type": {
6843
+ "type": "string",
6844
+ "const": "PhoneNumber"
6845
+ },
6846
+ "@context": {
6847
+ "type": "string"
6848
+ },
6849
+ "@version": {
6850
+ "type": "string"
6851
+ },
6852
+ "value": {
6853
+ "type": "string"
6854
+ }
6855
+ },
6856
+ "required": [
6857
+ "@type",
6858
+ "value"
6859
+ ],
6860
+ "additionalProperties": false
6861
+ },
6862
+ "PostOfficeBoxAddressJSON": {
6863
+ "type": "object",
6864
+ "properties": {
6865
+ "@type": {
6866
+ "type": "string",
6867
+ "const": "PostOfficeBoxAddress"
6868
+ },
6869
+ "@context": {
6870
+ "type": "string"
6871
+ },
6872
+ "@version": {
6873
+ "type": "string"
6874
+ },
6875
+ "recipient": {
6876
+ "type": "string"
6877
+ },
6878
+ "boxId": {
6879
+ "type": "string"
6880
+ },
6881
+ "zipCode": {
6882
+ "type": "string"
6883
+ },
6884
+ "city": {
6885
+ "type": "string"
6886
+ },
6887
+ "country": {
6888
+ "type": "string"
6889
+ },
6890
+ "state": {
6891
+ "type": "string"
6892
+ }
6893
+ },
6894
+ "required": [
6895
+ "@type",
6896
+ "boxId",
6897
+ "city",
6898
+ "country",
6899
+ "recipient",
6900
+ "zipCode"
6901
+ ],
6902
+ "additionalProperties": false
6903
+ },
6904
+ "PseudonymJSON": {
6905
+ "type": "object",
6906
+ "properties": {
6907
+ "@type": {
6908
+ "type": "string",
6909
+ "const": "Pseudonym"
6910
+ },
6911
+ "@context": {
6912
+ "type": "string"
6913
+ },
6914
+ "@version": {
6915
+ "type": "string"
6916
+ },
6917
+ "value": {
6918
+ "type": "string"
6919
+ }
6920
+ },
6921
+ "required": [
6922
+ "@type",
6923
+ "value"
6924
+ ],
6925
+ "additionalProperties": false
6926
+ },
6927
+ "SexJSON": {
6928
+ "type": "object",
6929
+ "properties": {
6930
+ "@type": {
6931
+ "type": "string",
6932
+ "const": "Sex"
6933
+ },
6934
+ "@context": {
6935
+ "type": "string"
6936
+ },
6937
+ "@version": {
6938
+ "type": "string"
6939
+ },
6940
+ "value": {
6941
+ "type": "string"
6942
+ }
6943
+ },
6944
+ "required": [
6945
+ "@type",
6946
+ "value"
6947
+ ],
6948
+ "additionalProperties": false
6949
+ },
6950
+ "StreetAddressJSON": {
6951
+ "type": "object",
6952
+ "properties": {
6953
+ "@type": {
6954
+ "type": "string",
6955
+ "const": "StreetAddress"
6956
+ },
6957
+ "@context": {
6958
+ "type": "string"
6959
+ },
6960
+ "@version": {
6961
+ "type": "string"
6962
+ },
6963
+ "recipient": {
6964
+ "type": "string"
6965
+ },
6966
+ "street": {
6967
+ "type": "string"
6968
+ },
6969
+ "houseNo": {
6970
+ "type": "string"
6971
+ },
6972
+ "zipCode": {
6973
+ "type": "string"
6974
+ },
6975
+ "city": {
6976
+ "type": "string"
6977
+ },
6978
+ "country": {
6979
+ "type": "string"
6980
+ },
6981
+ "state": {
6982
+ "type": "string"
6983
+ }
6984
+ },
6985
+ "required": [
6986
+ "@type",
6987
+ "city",
6988
+ "country",
6989
+ "houseNo",
6990
+ "recipient",
6991
+ "street",
6992
+ "zipCode"
6993
+ ],
6994
+ "additionalProperties": false
6995
+ },
6996
+ "WebsiteJSON": {
6997
+ "type": "object",
6998
+ "properties": {
6999
+ "@type": {
7000
+ "type": "string",
7001
+ "const": "Website"
7002
+ },
7003
+ "@context": {
7004
+ "type": "string"
7005
+ },
7006
+ "@version": {
7007
+ "type": "string"
7008
+ },
7009
+ "value": {
7010
+ "type": "string"
7011
+ }
7012
+ },
7013
+ "required": [
7014
+ "@type",
7015
+ "value"
7016
+ ],
7017
+ "additionalProperties": false
7018
+ },
7019
+ "AttributeValues.Identity.Uneditable.Json": {
7020
+ "anyOf": [
7021
+ {
7022
+ "$ref": "#/definitions/AffiliationOrganizationJSON"
7023
+ },
7024
+ {
7025
+ "$ref": "#/definitions/AffiliationRoleJSON"
7026
+ },
7027
+ {
7028
+ "$ref": "#/definitions/AffiliationUnitJSON"
7029
+ },
7030
+ {
7031
+ "$ref": "#/definitions/BirthCityJSON"
7032
+ },
7033
+ {
7034
+ "$ref": "#/definitions/BirthCountryJSON"
7035
+ },
7036
+ {
7037
+ "$ref": "#/definitions/BirthDayJSON"
7038
+ },
7039
+ {
7040
+ "$ref": "#/definitions/BirthMonthJSON"
7041
+ },
7042
+ {
7043
+ "$ref": "#/definitions/BirthStateJSON"
7044
+ },
7045
+ {
7046
+ "$ref": "#/definitions/BirthYearJSON"
7047
+ },
7048
+ {
7049
+ "$ref": "#/definitions/CityJSON"
7050
+ },
7051
+ {
7052
+ "$ref": "#/definitions/CountryJSON"
7053
+ },
7054
+ {
7055
+ "$ref": "#/definitions/GivenNameJSON"
7056
+ },
7057
+ {
7058
+ "$ref": "#/definitions/HonorificPrefixJSON"
7059
+ },
7060
+ {
7061
+ "$ref": "#/definitions/HonorificSuffixJSON"
7062
+ },
7063
+ {
7064
+ "$ref": "#/definitions/HouseNumberJSON"
7065
+ },
7066
+ {
7067
+ "$ref": "#/definitions/MiddleNameJSON"
7068
+ },
7069
+ {
7070
+ "$ref": "#/definitions/StateJSON"
7071
+ },
7072
+ {
7073
+ "$ref": "#/definitions/StreetJSON"
7074
+ },
7075
+ {
7076
+ "$ref": "#/definitions/SurnameJSON"
7077
+ },
7078
+ {
7079
+ "$ref": "#/definitions/ZipCodeJSON"
7080
+ }
7081
+ ]
7082
+ },
7083
+ "AffiliationOrganizationJSON": {
7084
+ "type": "object",
7085
+ "properties": {
7086
+ "@type": {
7087
+ "type": "string",
7088
+ "const": "AffiliationOrganization"
7089
+ },
7090
+ "@context": {
7091
+ "type": "string"
7092
+ },
7093
+ "@version": {
7094
+ "type": "string"
7095
+ },
7096
+ "value": {
7097
+ "type": "string"
7098
+ }
7099
+ },
7100
+ "required": [
7101
+ "@type",
7102
+ "value"
7103
+ ],
7104
+ "additionalProperties": false
7105
+ },
7106
+ "AffiliationRoleJSON": {
7107
+ "type": "object",
7108
+ "properties": {
7109
+ "@type": {
7110
+ "type": "string",
7111
+ "const": "AffiliationRole"
7112
+ },
7113
+ "@context": {
7114
+ "type": "string"
7115
+ },
7116
+ "@version": {
7117
+ "type": "string"
7118
+ },
7119
+ "value": {
7120
+ "type": "string"
7121
+ }
7122
+ },
7123
+ "required": [
7124
+ "@type",
7125
+ "value"
7126
+ ],
7127
+ "additionalProperties": false
7128
+ },
7129
+ "AffiliationUnitJSON": {
7130
+ "type": "object",
7131
+ "properties": {
7132
+ "@type": {
7133
+ "type": "string",
7134
+ "const": "AffiliationUnit"
7135
+ },
7136
+ "@context": {
7137
+ "type": "string"
7138
+ },
7139
+ "@version": {
7140
+ "type": "string"
7141
+ },
7142
+ "value": {
7143
+ "type": "string"
7144
+ }
7145
+ },
7146
+ "required": [
7147
+ "@type",
7148
+ "value"
7149
+ ],
7150
+ "additionalProperties": false
7151
+ },
7152
+ "BirthCityJSON": {
7153
+ "type": "object",
7154
+ "properties": {
7155
+ "value": {
7156
+ "type": "string"
7157
+ },
7158
+ "@context": {
7159
+ "type": "string"
7160
+ },
7161
+ "@version": {
7162
+ "type": "string"
7163
+ },
7164
+ "@type": {
7165
+ "type": "string",
7166
+ "const": "BirthCity"
7167
+ }
7168
+ },
7169
+ "required": [
7170
+ "@type",
7171
+ "value"
7172
+ ],
7173
+ "additionalProperties": false
7174
+ },
7175
+ "BirthCountryJSON": {
7176
+ "type": "object",
7177
+ "properties": {
7178
+ "value": {
7179
+ "type": "string"
7180
+ },
7181
+ "@context": {
7182
+ "type": "string"
7183
+ },
7184
+ "@version": {
7185
+ "type": "string"
7186
+ },
7187
+ "@type": {
7188
+ "type": "string",
7189
+ "const": "BirthCountry"
7190
+ }
7191
+ },
7192
+ "required": [
7193
+ "@type",
7194
+ "value"
7195
+ ],
7196
+ "additionalProperties": false
7197
+ },
7198
+ "BirthDayJSON": {
7199
+ "type": "object",
7200
+ "properties": {
7201
+ "@type": {
7202
+ "type": "string",
7203
+ "const": "BirthDay"
7204
+ },
7205
+ "@context": {
7206
+ "type": "string"
7207
+ },
7208
+ "@version": {
7209
+ "type": "string"
7210
+ },
7211
+ "value": {
7212
+ "type": "number"
7213
+ }
7214
+ },
7215
+ "required": [
7216
+ "@type",
7217
+ "value"
7218
+ ],
7219
+ "additionalProperties": false
7220
+ },
7221
+ "BirthMonthJSON": {
7222
+ "type": "object",
7223
+ "properties": {
7224
+ "@type": {
7225
+ "type": "string",
7226
+ "const": "BirthMonth"
7227
+ },
7228
+ "@context": {
7229
+ "type": "string"
7230
+ },
7231
+ "@version": {
7232
+ "type": "string"
7233
+ },
7234
+ "value": {
7235
+ "type": "number",
7236
+ "enum": [
7237
+ 1,
7238
+ 2,
7239
+ 3,
7240
+ 4,
7241
+ 5,
7242
+ 6,
7243
+ 7,
7244
+ 8,
7245
+ 9,
7246
+ 10,
7247
+ 11,
7248
+ 12
7249
+ ],
7250
+ "description": "Month values: 1 (january) - 12 (december)"
7251
+ }
7252
+ },
7253
+ "required": [
7254
+ "@type",
7255
+ "value"
7256
+ ],
7257
+ "additionalProperties": false
7258
+ },
7259
+ "BirthStateJSON": {
7260
+ "type": "object",
7261
+ "properties": {
7262
+ "value": {
7263
+ "type": "string"
7264
+ },
7265
+ "@context": {
7266
+ "type": "string"
7267
+ },
7268
+ "@version": {
7269
+ "type": "string"
7270
+ },
7271
+ "@type": {
7272
+ "type": "string",
7273
+ "const": "BirthState"
7274
+ }
7275
+ },
7276
+ "required": [
7277
+ "@type",
7278
+ "value"
7279
+ ],
7280
+ "additionalProperties": false
7281
+ },
7282
+ "BirthYearJSON": {
7283
+ "type": "object",
7284
+ "properties": {
7285
+ "@type": {
7286
+ "type": "string",
7287
+ "const": "BirthYear"
7288
+ },
7289
+ "@context": {
7290
+ "type": "string"
7291
+ },
7292
+ "@version": {
7293
+ "type": "string"
7294
+ },
7295
+ "value": {
7296
+ "type": "number"
7297
+ }
7298
+ },
7299
+ "required": [
7300
+ "@type",
7301
+ "value"
7302
+ ],
7303
+ "additionalProperties": false
7304
+ },
7305
+ "CityJSON": {
7306
+ "type": "object",
7307
+ "properties": {
7308
+ "@type": {
7309
+ "type": "string",
7310
+ "const": "City"
7311
+ },
7312
+ "@context": {
7313
+ "type": "string"
7314
+ },
7315
+ "@version": {
7316
+ "type": "string"
7317
+ },
7318
+ "value": {
7319
+ "type": "string"
7320
+ }
7321
+ },
7322
+ "required": [
7323
+ "@type",
7324
+ "value"
7325
+ ],
7326
+ "additionalProperties": false
7327
+ },
7328
+ "CountryJSON": {
7329
+ "type": "object",
7330
+ "properties": {
7331
+ "@type": {
7332
+ "type": "string",
7333
+ "const": "Country"
7334
+ },
7335
+ "@context": {
7336
+ "type": "string"
7337
+ },
7338
+ "@version": {
7339
+ "type": "string"
7340
+ },
7341
+ "value": {
7342
+ "type": "string"
7343
+ }
7344
+ },
7345
+ "required": [
7346
+ "@type",
7347
+ "value"
7348
+ ],
7349
+ "additionalProperties": false
7350
+ },
7351
+ "GivenNameJSON": {
7352
+ "type": "object",
7353
+ "properties": {
7354
+ "@type": {
7355
+ "type": "string",
7356
+ "const": "GivenName"
7357
+ },
7358
+ "@context": {
7359
+ "type": "string"
7360
+ },
7361
+ "@version": {
7362
+ "type": "string"
7363
+ },
7364
+ "value": {
7365
+ "type": "string"
7366
+ }
7367
+ },
7368
+ "required": [
7369
+ "@type",
7370
+ "value"
7371
+ ],
7372
+ "additionalProperties": false
7373
+ },
7374
+ "HonorificPrefixJSON": {
7375
+ "type": "object",
7376
+ "properties": {
7377
+ "@type": {
7378
+ "type": "string",
7379
+ "const": "HonorificPrefix"
7380
+ },
7381
+ "@context": {
7382
+ "type": "string"
7383
+ },
7384
+ "@version": {
7385
+ "type": "string"
7386
+ },
7387
+ "value": {
7388
+ "type": "string"
7389
+ }
7390
+ },
7391
+ "required": [
7392
+ "@type",
7393
+ "value"
7394
+ ],
7395
+ "additionalProperties": false
7396
+ },
7397
+ "HonorificSuffixJSON": {
7398
+ "type": "object",
7399
+ "properties": {
7400
+ "@type": {
7401
+ "type": "string",
7402
+ "const": "HonorificSuffix"
7403
+ },
7404
+ "@context": {
7405
+ "type": "string"
7406
+ },
7407
+ "@version": {
7408
+ "type": "string"
7409
+ },
7410
+ "value": {
7411
+ "type": "string"
7412
+ }
7413
+ },
7414
+ "required": [
7415
+ "@type",
7416
+ "value"
7417
+ ],
7418
+ "additionalProperties": false
7419
+ },
7420
+ "HouseNumberJSON": {
7421
+ "type": "object",
7422
+ "properties": {
7423
+ "@type": {
7424
+ "type": "string",
7425
+ "const": "HouseNumber"
7426
+ },
7427
+ "@context": {
7428
+ "type": "string"
7429
+ },
7430
+ "@version": {
7431
+ "type": "string"
7432
+ },
7433
+ "value": {
7434
+ "type": "string"
7435
+ }
7436
+ },
7437
+ "required": [
7438
+ "@type",
7439
+ "value"
7440
+ ],
7441
+ "additionalProperties": false
7442
+ },
7443
+ "MiddleNameJSON": {
7444
+ "type": "object",
7445
+ "properties": {
7446
+ "@type": {
7447
+ "type": "string",
7448
+ "const": "MiddleName"
7449
+ },
7450
+ "@context": {
7451
+ "type": "string"
7452
+ },
7453
+ "@version": {
7454
+ "type": "string"
7455
+ },
7456
+ "value": {
7457
+ "type": "string"
7458
+ }
7459
+ },
7460
+ "required": [
7461
+ "@type",
7462
+ "value"
7463
+ ],
7464
+ "additionalProperties": false
7465
+ },
7466
+ "StateJSON": {
7467
+ "type": "object",
7468
+ "properties": {
7469
+ "@type": {
7470
+ "type": "string",
7471
+ "const": "State"
7472
+ },
7473
+ "@context": {
7474
+ "type": "string"
7475
+ },
7476
+ "@version": {
7477
+ "type": "string"
7478
+ },
7479
+ "value": {
7480
+ "type": "string"
7481
+ }
7482
+ },
7483
+ "required": [
7484
+ "@type",
7485
+ "value"
7486
+ ],
7487
+ "additionalProperties": false
7488
+ },
7489
+ "StreetJSON": {
7490
+ "type": "object",
7491
+ "properties": {
7492
+ "@type": {
7493
+ "type": "string",
7494
+ "const": "Street"
7495
+ },
7496
+ "@context": {
7497
+ "type": "string"
7498
+ },
7499
+ "@version": {
7500
+ "type": "string"
7501
+ },
7502
+ "value": {
7503
+ "type": "string"
7504
+ }
7505
+ },
7506
+ "required": [
7507
+ "@type",
7508
+ "value"
7509
+ ],
7510
+ "additionalProperties": false
7511
+ },
7512
+ "SurnameJSON": {
7513
+ "type": "object",
7514
+ "properties": {
7515
+ "@type": {
7516
+ "type": "string",
7517
+ "const": "Surname"
7518
+ },
7519
+ "@context": {
7520
+ "type": "string"
7521
+ },
7522
+ "@version": {
7523
+ "type": "string"
7524
+ },
7525
+ "value": {
7526
+ "type": "string"
7527
+ }
7528
+ },
7529
+ "required": [
7530
+ "@type",
7531
+ "value"
7532
+ ],
7533
+ "additionalProperties": false
7534
+ },
7535
+ "ZipCodeJSON": {
7536
+ "type": "object",
7537
+ "properties": {
7538
+ "@type": {
7539
+ "type": "string",
7540
+ "const": "ZipCode"
7541
+ },
7542
+ "@context": {
7543
+ "type": "string"
7544
+ },
7545
+ "@version": {
7546
+ "type": "string"
7547
+ },
7548
+ "value": {
7549
+ "type": "string"
7550
+ }
7551
+ },
7552
+ "required": [
7553
+ "@type",
7554
+ "value"
7555
+ ],
7556
+ "additionalProperties": false
7557
+ },
7558
+ "RelationshipAttributeJSON": {
7559
+ "type": "object",
7560
+ "properties": {
7561
+ "@type": {
7562
+ "type": "string",
7563
+ "const": "RelationshipAttribute"
7564
+ },
7565
+ "@context": {
7566
+ "type": "string"
7567
+ },
7568
+ "@version": {
7569
+ "type": "string"
7570
+ },
7571
+ "owner": {
7572
+ "type": "string"
7573
+ },
7574
+ "validFrom": {
7575
+ "type": "string"
7576
+ },
7577
+ "validTo": {
7578
+ "type": "string"
7579
+ },
7580
+ "value": {
7581
+ "$ref": "#/definitions/AttributeValues.Relationship.Json"
7582
+ },
7583
+ "key": {
7584
+ "type": "string"
7585
+ },
7586
+ "isTechnical": {
7587
+ "type": "boolean"
7588
+ },
7589
+ "confidentiality": {
7590
+ "$ref": "#/definitions/RelationshipAttributeConfidentiality"
7591
+ }
7592
+ },
7593
+ "required": [
7594
+ "@type",
7595
+ "confidentiality",
7596
+ "key",
7597
+ "owner",
7598
+ "value"
7599
+ ],
7600
+ "additionalProperties": false
7601
+ },
7602
+ "AttributeValues.Relationship.Json": {
7603
+ "anyOf": [
7604
+ {
7605
+ "$ref": "#/definitions/ProprietaryBooleanJSON"
7606
+ },
7607
+ {
7608
+ "$ref": "#/definitions/ProprietaryCountryJSON"
7609
+ },
7610
+ {
7611
+ "$ref": "#/definitions/ProprietaryEMailAddressJSON"
7612
+ },
7613
+ {
7614
+ "$ref": "#/definitions/ProprietaryFileReferenceJSON"
7615
+ },
7616
+ {
7617
+ "$ref": "#/definitions/ProprietaryFloatJSON"
7618
+ },
7619
+ {
7620
+ "$ref": "#/definitions/ProprietaryHEXColorJSON"
7621
+ },
7622
+ {
7623
+ "$ref": "#/definitions/ProprietaryIntegerJSON"
7624
+ },
7625
+ {
7626
+ "$ref": "#/definitions/ProprietaryLanguageJSON"
7627
+ },
7628
+ {
7629
+ "$ref": "#/definitions/ProprietaryPhoneNumberJSON"
7630
+ },
7631
+ {
7632
+ "$ref": "#/definitions/ProprietaryStringJSON"
7633
+ },
7634
+ {
7635
+ "$ref": "#/definitions/ProprietaryURLJSON"
7636
+ },
7637
+ {
7638
+ "$ref": "#/definitions/ProprietaryJSONJSON"
7639
+ },
7640
+ {
7641
+ "$ref": "#/definitions/ConsentJSON"
7642
+ }
7643
+ ]
7644
+ },
7645
+ "ProprietaryBooleanJSON": {
7646
+ "type": "object",
7647
+ "properties": {
7648
+ "@type": {
7649
+ "type": "string",
7650
+ "const": "ProprietaryBoolean"
7651
+ },
7652
+ "@context": {
7653
+ "type": "string"
7654
+ },
7655
+ "@version": {
7656
+ "type": "string"
7657
+ },
7658
+ "value": {
7659
+ "type": "boolean"
7660
+ },
7661
+ "title": {
7662
+ "type": "string"
7663
+ },
7664
+ "description": {
7665
+ "type": "string"
7666
+ },
7667
+ "valueHintsOverride": {
7668
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7669
+ }
7670
+ },
7671
+ "required": [
7672
+ "@type",
7673
+ "title",
7674
+ "value"
7675
+ ],
7676
+ "additionalProperties": false
7677
+ },
7678
+ "ValueHintsOverrideJSON": {
7679
+ "type": "object",
7680
+ "additionalProperties": false,
7681
+ "properties": {
7682
+ "@type": {
7683
+ "type": "string",
7684
+ "const": "ValueHints"
7685
+ },
7686
+ "editHelp": {
7687
+ "type": "string"
7688
+ },
7689
+ "min": {
7690
+ "type": "number"
7691
+ },
7692
+ "max": {
7693
+ "type": "number"
7694
+ },
7695
+ "pattern": {
7696
+ "type": "string"
7697
+ },
7698
+ "values": {
7699
+ "type": "array",
7700
+ "items": {
7701
+ "$ref": "#/definitions/ValueHintsValueJSON"
7702
+ }
7703
+ },
7704
+ "defaultValue": {
7705
+ "type": [
7706
+ "string",
7707
+ "number",
7708
+ "boolean"
7709
+ ]
7710
+ },
7711
+ "propertyHints": {
7712
+ "type": "object",
7713
+ "additionalProperties": {
7714
+ "$ref": "#/definitions/ValueHintsJSON"
7715
+ }
7716
+ },
7717
+ "@context": {
7718
+ "type": "string"
7719
+ },
7720
+ "@version": {
7721
+ "type": "string"
7722
+ }
7723
+ }
7724
+ },
7725
+ "ValueHintsValueJSON": {
7726
+ "type": "object",
7727
+ "properties": {
7728
+ "key": {
7729
+ "type": [
7730
+ "string",
7731
+ "number",
7732
+ "boolean"
7733
+ ]
7734
+ },
7735
+ "displayName": {
7736
+ "type": "string"
7737
+ }
7738
+ },
7739
+ "required": [
7740
+ "key",
7741
+ "displayName"
7742
+ ],
7743
+ "additionalProperties": false
7744
+ },
7745
+ "ValueHintsJSON": {
7746
+ "type": "object",
7747
+ "properties": {
7748
+ "@type": {
7749
+ "type": "string",
7750
+ "const": "ValueHints"
7751
+ },
7752
+ "@context": {
7753
+ "type": "string"
7754
+ },
7755
+ "@version": {
7756
+ "type": "string"
7757
+ },
7758
+ "editHelp": {
7759
+ "type": "string"
7760
+ },
7761
+ "min": {
7762
+ "type": "number"
7763
+ },
7764
+ "max": {
7765
+ "type": "number"
7766
+ },
7767
+ "pattern": {
7768
+ "type": "string"
7769
+ },
7770
+ "values": {
7771
+ "type": "array",
7772
+ "items": {
7773
+ "$ref": "#/definitions/ValueHintsValueJSON"
7774
+ }
7775
+ },
7776
+ "defaultValue": {
7777
+ "type": [
7778
+ "string",
7779
+ "number",
7780
+ "boolean"
7781
+ ]
7782
+ },
7783
+ "propertyHints": {
7784
+ "type": "object",
7785
+ "additionalProperties": {
7786
+ "$ref": "#/definitions/ValueHintsJSON"
7787
+ }
7788
+ }
7789
+ },
7790
+ "required": [
7791
+ "@type"
7792
+ ],
7793
+ "additionalProperties": false
7794
+ },
7795
+ "ProprietaryCountryJSON": {
7796
+ "type": "object",
7797
+ "properties": {
7798
+ "@type": {
7799
+ "type": "string",
7800
+ "const": "ProprietaryCountry"
7801
+ },
7802
+ "@context": {
7803
+ "type": "string"
7804
+ },
7805
+ "@version": {
7806
+ "type": "string"
7807
+ },
7808
+ "value": {
7809
+ "type": "string"
7810
+ },
7811
+ "title": {
7812
+ "type": "string"
7813
+ },
7814
+ "description": {
7815
+ "type": "string"
7816
+ },
7817
+ "valueHintsOverride": {
7818
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7819
+ }
7820
+ },
7821
+ "required": [
7822
+ "@type",
7823
+ "title",
7824
+ "value"
7825
+ ],
7826
+ "additionalProperties": false
7827
+ },
7828
+ "ProprietaryEMailAddressJSON": {
7829
+ "type": "object",
7830
+ "properties": {
7831
+ "@type": {
7832
+ "type": "string",
7833
+ "const": "ProprietaryEMailAddress"
7834
+ },
7835
+ "@context": {
7836
+ "type": "string"
7837
+ },
7838
+ "@version": {
7839
+ "type": "string"
7840
+ },
7841
+ "value": {
7842
+ "type": "string"
7843
+ },
7844
+ "title": {
7845
+ "type": "string"
7846
+ },
7847
+ "description": {
7848
+ "type": "string"
7849
+ },
7850
+ "valueHintsOverride": {
7851
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7852
+ }
7853
+ },
7854
+ "required": [
7855
+ "@type",
7856
+ "title",
7857
+ "value"
7858
+ ],
7859
+ "additionalProperties": false
7860
+ },
7861
+ "ProprietaryFileReferenceJSON": {
7862
+ "type": "object",
7863
+ "properties": {
7864
+ "@type": {
7865
+ "type": "string",
7866
+ "const": "ProprietaryFileReference"
7867
+ },
7868
+ "@context": {
7869
+ "type": "string"
7870
+ },
7871
+ "@version": {
7872
+ "type": "string"
7873
+ },
7874
+ "value": {
7875
+ "type": "string"
7876
+ },
7877
+ "title": {
7878
+ "type": "string"
7879
+ },
7880
+ "description": {
7881
+ "type": "string"
7882
+ },
7883
+ "valueHintsOverride": {
7884
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7885
+ }
7886
+ },
7887
+ "required": [
7888
+ "@type",
7889
+ "title",
7890
+ "value"
7891
+ ],
7892
+ "additionalProperties": false
7893
+ },
7894
+ "ProprietaryFloatJSON": {
7895
+ "type": "object",
7896
+ "properties": {
7897
+ "@type": {
7898
+ "type": "string",
7899
+ "const": "ProprietaryFloat"
7900
+ },
7901
+ "@context": {
7902
+ "type": "string"
7903
+ },
7904
+ "@version": {
7905
+ "type": "string"
7906
+ },
7907
+ "value": {
7908
+ "type": "number"
7909
+ },
7910
+ "title": {
7911
+ "type": "string"
7912
+ },
7913
+ "description": {
7914
+ "type": "string"
7915
+ },
7916
+ "valueHintsOverride": {
7917
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7918
+ }
7919
+ },
7920
+ "required": [
7921
+ "@type",
7922
+ "title",
7923
+ "value"
7924
+ ],
7925
+ "additionalProperties": false
7926
+ },
7927
+ "ProprietaryHEXColorJSON": {
7928
+ "type": "object",
7929
+ "properties": {
7930
+ "@type": {
7931
+ "type": "string",
7932
+ "const": "ProprietaryHEXColor"
7933
+ },
7934
+ "@context": {
7935
+ "type": "string"
7936
+ },
7937
+ "@version": {
7938
+ "type": "string"
7939
+ },
7940
+ "value": {
7941
+ "type": "string"
7942
+ },
7943
+ "title": {
7944
+ "type": "string"
7945
+ },
7946
+ "description": {
7947
+ "type": "string"
7948
+ },
7949
+ "valueHintsOverride": {
7950
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7951
+ }
7952
+ },
7953
+ "required": [
7954
+ "@type",
7955
+ "title",
7956
+ "value"
7957
+ ],
7958
+ "additionalProperties": false
7959
+ },
7960
+ "ProprietaryIntegerJSON": {
7961
+ "type": "object",
7962
+ "properties": {
7963
+ "@type": {
7964
+ "type": "string",
7965
+ "const": "ProprietaryInteger"
7966
+ },
7967
+ "@context": {
7968
+ "type": "string"
7969
+ },
7970
+ "@version": {
7971
+ "type": "string"
7972
+ },
7973
+ "value": {
7974
+ "type": "number"
7975
+ },
7976
+ "title": {
7977
+ "type": "string"
7978
+ },
7979
+ "description": {
7980
+ "type": "string"
7981
+ },
7982
+ "valueHintsOverride": {
7983
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7984
+ }
7985
+ },
7986
+ "required": [
7987
+ "@type",
7988
+ "title",
7989
+ "value"
7990
+ ],
7991
+ "additionalProperties": false
7992
+ },
7993
+ "ProprietaryLanguageJSON": {
7994
+ "type": "object",
7995
+ "properties": {
7996
+ "@type": {
7997
+ "type": "string",
7998
+ "const": "ProprietaryLanguage"
7999
+ },
8000
+ "@context": {
8001
+ "type": "string"
8002
+ },
8003
+ "@version": {
8004
+ "type": "string"
8005
+ },
8006
+ "value": {
8007
+ "type": "string"
8008
+ },
8009
+ "title": {
8010
+ "type": "string"
8011
+ },
8012
+ "description": {
8013
+ "type": "string"
8014
+ },
8015
+ "valueHintsOverride": {
8016
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
8017
+ }
8018
+ },
8019
+ "required": [
8020
+ "@type",
8021
+ "title",
8022
+ "value"
8023
+ ],
8024
+ "additionalProperties": false
8025
+ },
8026
+ "ProprietaryPhoneNumberJSON": {
8027
+ "type": "object",
8028
+ "properties": {
8029
+ "@type": {
8030
+ "type": "string",
8031
+ "const": "ProprietaryPhoneNumber"
8032
+ },
8033
+ "@context": {
8034
+ "type": "string"
8035
+ },
8036
+ "@version": {
8037
+ "type": "string"
8038
+ },
8039
+ "value": {
8040
+ "type": "string"
8041
+ },
8042
+ "title": {
8043
+ "type": "string"
8044
+ },
8045
+ "description": {
8046
+ "type": "string"
8047
+ },
8048
+ "valueHintsOverride": {
8049
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
8050
+ }
8051
+ },
8052
+ "required": [
8053
+ "@type",
8054
+ "title",
8055
+ "value"
8056
+ ],
8057
+ "additionalProperties": false
8058
+ },
8059
+ "ProprietaryStringJSON": {
8060
+ "type": "object",
8061
+ "properties": {
8062
+ "@type": {
8063
+ "type": "string",
8064
+ "const": "ProprietaryString"
8065
+ },
8066
+ "@context": {
8067
+ "type": "string"
8068
+ },
8069
+ "@version": {
8070
+ "type": "string"
8071
+ },
8072
+ "value": {
8073
+ "type": "string"
8074
+ },
8075
+ "title": {
8076
+ "type": "string"
8077
+ },
8078
+ "description": {
8079
+ "type": "string"
8080
+ },
8081
+ "valueHintsOverride": {
8082
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
8083
+ }
8084
+ },
8085
+ "required": [
8086
+ "@type",
8087
+ "title",
8088
+ "value"
8089
+ ],
8090
+ "additionalProperties": false
8091
+ },
8092
+ "ProprietaryURLJSON": {
8093
+ "type": "object",
8094
+ "properties": {
8095
+ "@type": {
8096
+ "type": "string",
8097
+ "const": "ProprietaryURL"
8098
+ },
8099
+ "@context": {
8100
+ "type": "string"
8101
+ },
8102
+ "@version": {
8103
+ "type": "string"
8104
+ },
8105
+ "value": {
8106
+ "type": "string"
8107
+ },
8108
+ "title": {
8109
+ "type": "string"
8110
+ },
8111
+ "description": {
8112
+ "type": "string"
8113
+ },
8114
+ "valueHintsOverride": {
8115
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
8116
+ }
8117
+ },
8118
+ "required": [
8119
+ "@type",
8120
+ "title",
8121
+ "value"
8122
+ ],
8123
+ "additionalProperties": false
8124
+ },
8125
+ "ProprietaryJSONJSON": {
8126
+ "type": "object",
8127
+ "properties": {
8128
+ "@type": {
8129
+ "type": "string",
8130
+ "const": "ProprietaryJSON"
8131
+ },
8132
+ "@context": {
8133
+ "type": "string"
8134
+ },
8135
+ "@version": {
8136
+ "type": "string"
8137
+ },
8138
+ "title": {
8139
+ "type": "string"
8140
+ },
8141
+ "description": {
8142
+ "type": "string"
8143
+ },
8144
+ "value": {}
8145
+ },
8146
+ "required": [
8147
+ "@type",
8148
+ "title",
8149
+ "value"
8150
+ ],
8151
+ "additionalProperties": false
8152
+ },
8153
+ "ConsentJSON": {
8154
+ "type": "object",
8155
+ "properties": {
8156
+ "@type": {
8157
+ "type": "string"
8158
+ },
8159
+ "@context": {
8160
+ "type": "string"
8161
+ },
8162
+ "@version": {
8163
+ "type": "string"
8164
+ },
8165
+ "consent": {
8166
+ "type": "string"
8167
+ },
8168
+ "link": {
8169
+ "type": "string"
8170
+ }
8171
+ },
8172
+ "required": [
8173
+ "@type",
8174
+ "consent"
8175
+ ],
8176
+ "additionalProperties": false
8177
+ },
8178
+ "RelationshipAttributeConfidentiality": {
8179
+ "type": "string",
8180
+ "enum": [
8181
+ "public",
8182
+ "private",
8183
+ "protected"
8184
+ ]
8185
+ },
8186
+ "ReadAttributeAcceptResponseItemJSON": {
8187
+ "type": "object",
8188
+ "properties": {
8189
+ "@type": {
8190
+ "type": "string",
8191
+ "const": "ReadAttributeAcceptResponseItem"
8192
+ },
8193
+ "@context": {
8194
+ "type": "string"
8195
+ },
8196
+ "@version": {
8197
+ "type": "string"
8198
+ },
8199
+ "result": {
8200
+ "type": "string",
8201
+ "const": "Accepted"
8202
+ },
8203
+ "attributeId": {
8204
+ "type": "string"
8205
+ },
8206
+ "attribute": {
8207
+ "anyOf": [
8208
+ {
8209
+ "$ref": "#/definitions/IdentityAttributeJSON"
8210
+ },
8211
+ {
8212
+ "$ref": "#/definitions/RelationshipAttributeJSON"
8213
+ }
8214
+ ]
8215
+ }
8216
+ },
8217
+ "required": [
8218
+ "@type",
8219
+ "attribute",
8220
+ "attributeId",
8221
+ "result"
8222
+ ],
8223
+ "additionalProperties": false
8224
+ },
8225
+ "RegisterAttributeListenerAcceptResponseItemJSON": {
8226
+ "type": "object",
8227
+ "properties": {
8228
+ "@type": {
8229
+ "type": "string",
8230
+ "const": "RegisterAttributeListenerAcceptResponseItem"
8231
+ },
8232
+ "@context": {
8233
+ "type": "string"
8234
+ },
8235
+ "@version": {
8236
+ "type": "string"
8237
+ },
8238
+ "result": {
8239
+ "type": "string",
8240
+ "const": "Accepted"
8241
+ },
8242
+ "listenerId": {
8243
+ "type": "string"
8244
+ }
8245
+ },
8246
+ "required": [
8247
+ "@type",
8248
+ "listenerId",
8249
+ "result"
8250
+ ],
8251
+ "additionalProperties": false
8252
+ },
8253
+ "SucceedAttributeAcceptResponseItemJSON": {
8254
+ "type": "object",
8255
+ "properties": {
8256
+ "@type": {
8257
+ "type": "string",
8258
+ "const": "SucceedAttributeAcceptResponseItem"
8259
+ },
8260
+ "@context": {
8261
+ "type": "string"
8262
+ },
8263
+ "@version": {
8264
+ "type": "string"
8265
+ },
8266
+ "result": {
8267
+ "type": "string",
8268
+ "const": "Accepted"
8269
+ },
8270
+ "attributeId": {
8271
+ "type": "string"
8272
+ }
8273
+ },
8274
+ "required": [
8275
+ "@type",
8276
+ "attributeId",
8277
+ "result"
8278
+ ],
8279
+ "additionalProperties": false
8280
+ },
8281
+ "RejectResponseItemJSONDerivations": {
8282
+ "$ref": "#/definitions/RejectResponseItemJSON"
8283
+ },
8284
+ "RejectResponseItemJSON": {
8285
+ "type": "object",
8286
+ "properties": {
8287
+ "@type": {
8288
+ "type": "string",
8289
+ "const": "RejectResponseItem"
8290
+ },
8291
+ "@context": {
8292
+ "type": "string"
8293
+ },
8294
+ "@version": {
8295
+ "type": "string"
8296
+ },
8297
+ "result": {
8298
+ "type": "string",
8299
+ "const": "Rejected"
8300
+ },
8301
+ "code": {
8302
+ "type": "string"
8303
+ },
8304
+ "message": {
8305
+ "type": "string"
8306
+ }
8307
+ },
8308
+ "required": [
8309
+ "@type",
8310
+ "result"
8311
+ ],
8312
+ "additionalProperties": false
8313
+ },
8314
+ "ErrorResponseItemJSONDerivations": {
8315
+ "$ref": "#/definitions/ErrorResponseItemJSON"
8316
+ },
8317
+ "ErrorResponseItemJSON": {
8318
+ "type": "object",
8319
+ "properties": {
8320
+ "@type": {
8321
+ "type": "string",
8322
+ "const": "ErrorResponseItem"
8323
+ },
8324
+ "@context": {
8325
+ "type": "string"
8326
+ },
8327
+ "@version": {
8328
+ "type": "string"
8329
+ },
8330
+ "result": {
8331
+ "type": "string",
8332
+ "const": "Error"
8333
+ },
8334
+ "code": {
8335
+ "type": "string"
8336
+ },
8337
+ "message": {
8338
+ "type": "string"
8339
+ }
8340
+ },
8341
+ "required": [
8342
+ "@type",
8343
+ "code",
8344
+ "message",
8345
+ "result"
5974
8346
  ],
5975
8347
  "additionalProperties": false
5976
8348
  },
5977
- "RequestIdString": {
8349
+ "MessageIdString": {
5978
8350
  "type": "string",
5979
- "pattern": "REQ[A-Za-z0-9]{17}"
8351
+ "pattern": "MSG[A-Za-z0-9]{17}"
5980
8352
  }
5981
8353
  }
5982
8354
  };
5983
- exports.CompleteIncomingRequestRequest = {
8355
+ exports.CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponseRequest = {
5984
8356
  "$schema": "http://json-schema.org/draft-07/schema#",
5985
- "$ref": "#/definitions/CompleteIncomingRequestRequest",
8357
+ "$ref": "#/definitions/CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponseRequest",
5986
8358
  "definitions": {
5987
- "CompleteIncomingRequestRequest": {
8359
+ "CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponseRequest": {
5988
8360
  "type": "object",
5989
8361
  "properties": {
5990
- "requestId": {
5991
- "$ref": "#/definitions/RequestIdString"
8362
+ "templateId": {
8363
+ "$ref": "#/definitions/RelationshipTemplateIdString"
5992
8364
  },
5993
8365
  "responseSourceId": {
5994
8366
  "anyOf": [
5995
8367
  {
5996
- "$ref": "#/definitions/MessageIdString"
8368
+ "$ref": "#/definitions/RelationshipChangeIdString"
5997
8369
  },
5998
8370
  {
5999
- "$ref": "#/definitions/RelationshipChangeIdString"
8371
+ "$ref": "#/definitions/MessageIdString"
6000
8372
  }
6001
8373
  ]
8374
+ },
8375
+ "response": {
8376
+ "$ref": "#/definitions/ResponseJSON"
6002
8377
  }
6003
8378
  },
6004
8379
  "required": [
6005
- "requestId"
8380
+ "templateId",
8381
+ "responseSourceId",
8382
+ "response"
6006
8383
  ],
6007
8384
  "additionalProperties": false
6008
8385
  },
6009
- "RequestIdString": {
6010
- "type": "string",
6011
- "pattern": "REQ[A-Za-z0-9]{17}"
6012
- },
6013
- "MessageIdString": {
8386
+ "RelationshipTemplateIdString": {
6014
8387
  "type": "string",
6015
- "pattern": "MSG[A-Za-z0-9]{17}"
8388
+ "pattern": "RLT[A-Za-z0-9]{17}"
6016
8389
  },
6017
8390
  "RelationshipChangeIdString": {
6018
8391
  "type": "string",
6019
8392
  "pattern": "RCH[A-Za-z0-9]{17}"
6020
- }
6021
- }
6022
- };
6023
- exports.CompleteOutgoingRequestRequest = {
6024
- "$schema": "http://json-schema.org/draft-07/schema#",
6025
- "$ref": "#/definitions/CompleteOutgoingRequestRequest",
6026
- "definitions": {
6027
- "CompleteOutgoingRequestRequest": {
6028
- "type": "object",
6029
- "properties": {
6030
- "receivedResponse": {
6031
- "$ref": "#/definitions/ResponseJSON"
6032
- },
6033
- "messageId": {
6034
- "$ref": "#/definitions/MessageIdString"
6035
- }
6036
- },
6037
- "required": [
6038
- "receivedResponse",
6039
- "messageId"
6040
- ],
6041
- "additionalProperties": false
8393
+ },
8394
+ "MessageIdString": {
8395
+ "type": "string",
8396
+ "pattern": "MSG[A-Za-z0-9]{17}"
6042
8397
  },
6043
8398
  "ResponseJSON": {
6044
8399
  "type": "object",
@@ -6146,6 +8501,9 @@ exports.CompleteOutgoingRequestRequest = {
6146
8501
  },
6147
8502
  {
6148
8503
  "$ref": "#/definitions/RegisterAttributeListenerAcceptResponseItemJSON"
8504
+ },
8505
+ {
8506
+ "$ref": "#/definitions/SucceedAttributeAcceptResponseItemJSON"
6149
8507
  }
6150
8508
  ]
6151
8509
  },
@@ -8176,6 +10534,34 @@ exports.CompleteOutgoingRequestRequest = {
8176
10534
  ],
8177
10535
  "additionalProperties": false
8178
10536
  },
10537
+ "SucceedAttributeAcceptResponseItemJSON": {
10538
+ "type": "object",
10539
+ "properties": {
10540
+ "@type": {
10541
+ "type": "string",
10542
+ "const": "SucceedAttributeAcceptResponseItem"
10543
+ },
10544
+ "@context": {
10545
+ "type": "string"
10546
+ },
10547
+ "@version": {
10548
+ "type": "string"
10549
+ },
10550
+ "result": {
10551
+ "type": "string",
10552
+ "const": "Accepted"
10553
+ },
10554
+ "attributeId": {
10555
+ "type": "string"
10556
+ }
10557
+ },
10558
+ "required": [
10559
+ "@type",
10560
+ "attributeId",
10561
+ "result"
10562
+ ],
10563
+ "additionalProperties": false
10564
+ },
8179
10565
  "RejectResponseItemJSONDerivations": {
8180
10566
  "$ref": "#/definitions/RejectResponseItemJSON"
8181
10567
  },
@@ -8243,51 +10629,6 @@ exports.CompleteOutgoingRequestRequest = {
8243
10629
  "result"
8244
10630
  ],
8245
10631
  "additionalProperties": false
8246
- },
8247
- "MessageIdString": {
8248
- "type": "string",
8249
- "pattern": "MSG[A-Za-z0-9]{17}"
8250
- }
8251
- }
8252
- };
8253
- exports.CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponseRequest = {
8254
- "$schema": "http://json-schema.org/draft-07/schema#",
8255
- "$ref": "#/definitions/CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponseRequest",
8256
- "definitions": {
8257
- "CreateAndCompleteOutgoingRequestFromRelationshipTemplateResponseRequest": {
8258
- "type": "object",
8259
- "properties": {
8260
- "templateId": {
8261
- "$ref": "#/definitions/RelationshipTemplateIdString"
8262
- },
8263
- "responseSourceId": {
8264
- "anyOf": [
8265
- {
8266
- "$ref": "#/definitions/RelationshipChangeIdString"
8267
- },
8268
- {
8269
- "$ref": "#/definitions/MessageIdString"
8270
- }
8271
- ]
8272
- }
8273
- },
8274
- "required": [
8275
- "templateId",
8276
- "responseSourceId"
8277
- ],
8278
- "additionalProperties": false
8279
- },
8280
- "RelationshipTemplateIdString": {
8281
- "type": "string",
8282
- "pattern": "RLT[A-Za-z0-9]{17}"
8283
- },
8284
- "RelationshipChangeIdString": {
8285
- "type": "string",
8286
- "pattern": "RCH[A-Za-z0-9]{17}"
8287
- },
8288
- "MessageIdString": {
8289
- "type": "string",
8290
- "pattern": "MSG[A-Za-z0-9]{17}"
8291
10632
  }
8292
10633
  }
8293
10634
  };
@@ -8421,6 +10762,9 @@ exports.CreateOutgoingRequestRequest = {
8421
10762
  },
8422
10763
  {
8423
10764
  "$ref": "#/definitions/RegisterAttributeListenerRequestItemJSON"
10765
+ },
10766
+ {
10767
+ "$ref": "#/definitions/SucceedAttributeRequestItemJSON"
8424
10768
  }
8425
10769
  ]
8426
10770
  },
@@ -10881,6 +13225,74 @@ exports.CreateOutgoingRequestRequest = {
10881
13225
  ],
10882
13226
  "additionalProperties": false
10883
13227
  },
13228
+ "SucceedAttributeRequestItemJSON": {
13229
+ "type": "object",
13230
+ "properties": {
13231
+ "@type": {
13232
+ "type": "string"
13233
+ },
13234
+ "@context": {
13235
+ "type": "string"
13236
+ },
13237
+ "@version": {
13238
+ "type": "string"
13239
+ },
13240
+ "title": {
13241
+ "type": "string",
13242
+ "description": "The human-readable title of this item."
13243
+ },
13244
+ "description": {
13245
+ "type": "string",
13246
+ "description": "The human-readable description of this item."
13247
+ },
13248
+ "metadata": {
13249
+ "type": "object",
13250
+ "description": "This property can be used to add some arbitrary metadata to this item. The content of this property will be copied into the response on the side of the recipient, so the sender can use it to identify the group content as they receive the response."
13251
+ },
13252
+ "mustBeAccepted": {
13253
+ "type": "boolean",
13254
+ "description": "If set to `true`, the recipient has to accept this group if he wants to accept the Request. If set to `false`, the recipient can decide whether he wants to accept it or not.\n\nCaution: this setting does not take effect in case it is inside of a\n {@link RequestItemGroupJSON RequestItemGroup } , which is not accepted by the recipient, since a {@link RequestItemJSON RequestItem } can only be accepted if the parent group is accepted as well."
13255
+ },
13256
+ "requireManualDecision": {
13257
+ "type": "boolean",
13258
+ "description": "If set to `true`, it advices the recipient of this RequestItem to carefully consider their decision and especially do not decide based on some automation rules."
13259
+ },
13260
+ "succeededId": {
13261
+ "type": "string",
13262
+ "description": "The id of the Attribute to be succeeded."
13263
+ },
13264
+ "succeededAttribute": {
13265
+ "anyOf": [
13266
+ {
13267
+ "$ref": "#/definitions/IdentityAttributeJSON"
13268
+ },
13269
+ {
13270
+ "$ref": "#/definitions/RelationshipAttributeJSON"
13271
+ }
13272
+ ],
13273
+ "description": "The succeeded Attribute with the updated validTo date. Its validTo date must be lower than the validFrom date of the new Attribute."
13274
+ },
13275
+ "newAttribute": {
13276
+ "anyOf": [
13277
+ {
13278
+ "$ref": "#/definitions/IdentityAttributeJSON"
13279
+ },
13280
+ {
13281
+ "$ref": "#/definitions/RelationshipAttributeJSON"
13282
+ }
13283
+ ],
13284
+ "description": "The new Attribute. Its validFrom date must be greater than the validTo date of the succeeded Attribute."
13285
+ }
13286
+ },
13287
+ "required": [
13288
+ "@type",
13289
+ "mustBeAccepted",
13290
+ "newAttribute",
13291
+ "succeededAttribute",
13292
+ "succeededId"
13293
+ ],
13294
+ "additionalProperties": false
13295
+ },
10884
13296
  "AddressString": {
10885
13297
  "type": "string",
10886
13298
  "pattern": "id1[A-Za-z0-9]{32,33}"
@@ -11510,6 +13922,9 @@ exports.ReceivedIncomingRequestRequest = {
11510
13922
  },
11511
13923
  {
11512
13924
  "$ref": "#/definitions/RegisterAttributeListenerRequestItemJSON"
13925
+ },
13926
+ {
13927
+ "$ref": "#/definitions/SucceedAttributeRequestItemJSON"
11513
13928
  }
11514
13929
  ]
11515
13930
  },
@@ -13970,6 +16385,74 @@ exports.ReceivedIncomingRequestRequest = {
13970
16385
  ],
13971
16386
  "additionalProperties": false
13972
16387
  },
16388
+ "SucceedAttributeRequestItemJSON": {
16389
+ "type": "object",
16390
+ "properties": {
16391
+ "@type": {
16392
+ "type": "string"
16393
+ },
16394
+ "@context": {
16395
+ "type": "string"
16396
+ },
16397
+ "@version": {
16398
+ "type": "string"
16399
+ },
16400
+ "title": {
16401
+ "type": "string",
16402
+ "description": "The human-readable title of this item."
16403
+ },
16404
+ "description": {
16405
+ "type": "string",
16406
+ "description": "The human-readable description of this item."
16407
+ },
16408
+ "metadata": {
16409
+ "type": "object",
16410
+ "description": "This property can be used to add some arbitrary metadata to this item. The content of this property will be copied into the response on the side of the recipient, so the sender can use it to identify the group content as they receive the response."
16411
+ },
16412
+ "mustBeAccepted": {
16413
+ "type": "boolean",
16414
+ "description": "If set to `true`, the recipient has to accept this group if he wants to accept the Request. If set to `false`, the recipient can decide whether he wants to accept it or not.\n\nCaution: this setting does not take effect in case it is inside of a\n {@link RequestItemGroupJSON RequestItemGroup } , which is not accepted by the recipient, since a {@link RequestItemJSON RequestItem } can only be accepted if the parent group is accepted as well."
16415
+ },
16416
+ "requireManualDecision": {
16417
+ "type": "boolean",
16418
+ "description": "If set to `true`, it advices the recipient of this RequestItem to carefully consider their decision and especially do not decide based on some automation rules."
16419
+ },
16420
+ "succeededId": {
16421
+ "type": "string",
16422
+ "description": "The id of the Attribute to be succeeded."
16423
+ },
16424
+ "succeededAttribute": {
16425
+ "anyOf": [
16426
+ {
16427
+ "$ref": "#/definitions/IdentityAttributeJSON"
16428
+ },
16429
+ {
16430
+ "$ref": "#/definitions/RelationshipAttributeJSON"
16431
+ }
16432
+ ],
16433
+ "description": "The succeeded Attribute with the updated validTo date. Its validTo date must be lower than the validFrom date of the new Attribute."
16434
+ },
16435
+ "newAttribute": {
16436
+ "anyOf": [
16437
+ {
16438
+ "$ref": "#/definitions/IdentityAttributeJSON"
16439
+ },
16440
+ {
16441
+ "$ref": "#/definitions/RelationshipAttributeJSON"
16442
+ }
16443
+ ],
16444
+ "description": "The new Attribute. Its validFrom date must be greater than the validTo date of the succeeded Attribute."
16445
+ }
16446
+ },
16447
+ "required": [
16448
+ "@type",
16449
+ "mustBeAccepted",
16450
+ "newAttribute",
16451
+ "succeededAttribute",
16452
+ "succeededId"
16453
+ ],
16454
+ "additionalProperties": false
16455
+ },
13973
16456
  "MessageIdString": {
13974
16457
  "type": "string",
13975
16458
  "pattern": "MSG[A-Za-z0-9]{17}"