@nmshd/runtime 2.0.2 → 2.1.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.
- package/dist/Runtime.js +12 -12
- package/dist/Runtime.js.map +1 -1
- package/dist/buildInformation.js +5 -5
- package/dist/dataViews/DataViewExpander.js +5 -21
- package/dist/dataViews/DataViewExpander.js.map +1 -1
- package/dist/dataViews/consumption/LocalAttributeDVO.d.ts +1 -1
- package/dist/dataViews/content/AttributeDVOs.d.ts +1 -1
- package/dist/extensibility/facades/consumption/AttributesFacade.d.ts +1 -1
- package/dist/modules/AttributeListenerModule.js +11 -5
- package/dist/modules/AttributeListenerModule.js.map +1 -1
- package/dist/useCases/common/Schemas.js +1118 -263
- package/dist/useCases/common/Schemas.js.map +1 -1
- package/dist/useCases/common/validation/ValidatableStrings.d.ts +18 -18
- package/dist/useCases/consumption/attributes/ExecuteThirdPartyRelationshipAttributeQuery.d.ts +2 -2
- package/dist/useCases/consumption/attributes/ExecuteThirdPartyRelationshipAttributeQuery.js +1 -4
- package/dist/useCases/consumption/attributes/ExecuteThirdPartyRelationshipAttributeQuery.js.map +1 -1
- package/dist/useCases/transport/account/LoadItemFromTruncatedReference.d.ts +1 -1
- package/dist/useCases/transport/challenges/CreateChallenge.d.ts +1 -1
- package/dist/useCases/transport/files/GetOrLoadFile.d.ts +1 -1
- package/dist/useCases/transport/files/UploadOwnFile.js +3 -3
- package/dist/useCases/transport/files/UploadOwnFile.js.map +1 -1
- package/dist/useCases/transport/relationshipTemplates/LoadPeerRelationshipTemplate.d.ts +1 -1
- package/dist/useCases/transport/tokens/LoadPeerToken.d.ts +1 -1
- package/lib-web/nmshd.runtime.js +1112 -266
- package/lib-web/nmshd.runtime.js.map +1 -1
- package/lib-web/nmshd.runtime.min.js +3 -3
- package/lib-web/nmshd.runtime.min.js.map +1 -1
- package/package.json +11 -11
|
@@ -1417,6 +1417,9 @@ exports.CreateAttributeRequest = {
|
|
|
1417
1417
|
},
|
|
1418
1418
|
"description": {
|
|
1419
1419
|
"type": "string"
|
|
1420
|
+
},
|
|
1421
|
+
"valueHintsOverride": {
|
|
1422
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1420
1423
|
}
|
|
1421
1424
|
},
|
|
1422
1425
|
"required": [
|
|
@@ -1426,6 +1429,123 @@ exports.CreateAttributeRequest = {
|
|
|
1426
1429
|
],
|
|
1427
1430
|
"additionalProperties": false
|
|
1428
1431
|
},
|
|
1432
|
+
"ValueHintsOverrideJSON": {
|
|
1433
|
+
"type": "object",
|
|
1434
|
+
"additionalProperties": false,
|
|
1435
|
+
"properties": {
|
|
1436
|
+
"@type": {
|
|
1437
|
+
"type": "string",
|
|
1438
|
+
"const": "ValueHints"
|
|
1439
|
+
},
|
|
1440
|
+
"editHelp": {
|
|
1441
|
+
"type": "string"
|
|
1442
|
+
},
|
|
1443
|
+
"min": {
|
|
1444
|
+
"type": "number"
|
|
1445
|
+
},
|
|
1446
|
+
"max": {
|
|
1447
|
+
"type": "number"
|
|
1448
|
+
},
|
|
1449
|
+
"pattern": {
|
|
1450
|
+
"type": "string"
|
|
1451
|
+
},
|
|
1452
|
+
"values": {
|
|
1453
|
+
"type": "array",
|
|
1454
|
+
"items": {
|
|
1455
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1458
|
+
"defaultValue": {
|
|
1459
|
+
"type": [
|
|
1460
|
+
"string",
|
|
1461
|
+
"number",
|
|
1462
|
+
"boolean"
|
|
1463
|
+
]
|
|
1464
|
+
},
|
|
1465
|
+
"propertyHints": {
|
|
1466
|
+
"type": "object",
|
|
1467
|
+
"additionalProperties": {
|
|
1468
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"@context": {
|
|
1472
|
+
"type": "string"
|
|
1473
|
+
},
|
|
1474
|
+
"@version": {
|
|
1475
|
+
"type": "string"
|
|
1476
|
+
}
|
|
1477
|
+
}
|
|
1478
|
+
},
|
|
1479
|
+
"ValueHintsValueJSON": {
|
|
1480
|
+
"type": "object",
|
|
1481
|
+
"properties": {
|
|
1482
|
+
"key": {
|
|
1483
|
+
"type": [
|
|
1484
|
+
"string",
|
|
1485
|
+
"number",
|
|
1486
|
+
"boolean"
|
|
1487
|
+
]
|
|
1488
|
+
},
|
|
1489
|
+
"displayName": {
|
|
1490
|
+
"type": "string"
|
|
1491
|
+
}
|
|
1492
|
+
},
|
|
1493
|
+
"required": [
|
|
1494
|
+
"key",
|
|
1495
|
+
"displayName"
|
|
1496
|
+
],
|
|
1497
|
+
"additionalProperties": false
|
|
1498
|
+
},
|
|
1499
|
+
"ValueHintsJSON": {
|
|
1500
|
+
"type": "object",
|
|
1501
|
+
"properties": {
|
|
1502
|
+
"@type": {
|
|
1503
|
+
"type": "string",
|
|
1504
|
+
"const": "ValueHints"
|
|
1505
|
+
},
|
|
1506
|
+
"@context": {
|
|
1507
|
+
"type": "string"
|
|
1508
|
+
},
|
|
1509
|
+
"@version": {
|
|
1510
|
+
"type": "string"
|
|
1511
|
+
},
|
|
1512
|
+
"editHelp": {
|
|
1513
|
+
"type": "string"
|
|
1514
|
+
},
|
|
1515
|
+
"min": {
|
|
1516
|
+
"type": "number"
|
|
1517
|
+
},
|
|
1518
|
+
"max": {
|
|
1519
|
+
"type": "number"
|
|
1520
|
+
},
|
|
1521
|
+
"pattern": {
|
|
1522
|
+
"type": "string"
|
|
1523
|
+
},
|
|
1524
|
+
"values": {
|
|
1525
|
+
"type": "array",
|
|
1526
|
+
"items": {
|
|
1527
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
1528
|
+
}
|
|
1529
|
+
},
|
|
1530
|
+
"defaultValue": {
|
|
1531
|
+
"type": [
|
|
1532
|
+
"string",
|
|
1533
|
+
"number",
|
|
1534
|
+
"boolean"
|
|
1535
|
+
]
|
|
1536
|
+
},
|
|
1537
|
+
"propertyHints": {
|
|
1538
|
+
"type": "object",
|
|
1539
|
+
"additionalProperties": {
|
|
1540
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
},
|
|
1544
|
+
"required": [
|
|
1545
|
+
"@type"
|
|
1546
|
+
],
|
|
1547
|
+
"additionalProperties": false
|
|
1548
|
+
},
|
|
1429
1549
|
"ProprietaryCountryJSON": {
|
|
1430
1550
|
"type": "object",
|
|
1431
1551
|
"properties": {
|
|
@@ -1447,6 +1567,9 @@ exports.CreateAttributeRequest = {
|
|
|
1447
1567
|
},
|
|
1448
1568
|
"description": {
|
|
1449
1569
|
"type": "string"
|
|
1570
|
+
},
|
|
1571
|
+
"valueHintsOverride": {
|
|
1572
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1450
1573
|
}
|
|
1451
1574
|
},
|
|
1452
1575
|
"required": [
|
|
@@ -1477,6 +1600,9 @@ exports.CreateAttributeRequest = {
|
|
|
1477
1600
|
},
|
|
1478
1601
|
"description": {
|
|
1479
1602
|
"type": "string"
|
|
1603
|
+
},
|
|
1604
|
+
"valueHintsOverride": {
|
|
1605
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1480
1606
|
}
|
|
1481
1607
|
},
|
|
1482
1608
|
"required": [
|
|
@@ -1507,6 +1633,9 @@ exports.CreateAttributeRequest = {
|
|
|
1507
1633
|
},
|
|
1508
1634
|
"description": {
|
|
1509
1635
|
"type": "string"
|
|
1636
|
+
},
|
|
1637
|
+
"valueHintsOverride": {
|
|
1638
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1510
1639
|
}
|
|
1511
1640
|
},
|
|
1512
1641
|
"required": [
|
|
@@ -1537,6 +1666,9 @@ exports.CreateAttributeRequest = {
|
|
|
1537
1666
|
},
|
|
1538
1667
|
"description": {
|
|
1539
1668
|
"type": "string"
|
|
1669
|
+
},
|
|
1670
|
+
"valueHintsOverride": {
|
|
1671
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1540
1672
|
}
|
|
1541
1673
|
},
|
|
1542
1674
|
"required": [
|
|
@@ -1567,6 +1699,9 @@ exports.CreateAttributeRequest = {
|
|
|
1567
1699
|
},
|
|
1568
1700
|
"description": {
|
|
1569
1701
|
"type": "string"
|
|
1702
|
+
},
|
|
1703
|
+
"valueHintsOverride": {
|
|
1704
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1570
1705
|
}
|
|
1571
1706
|
},
|
|
1572
1707
|
"required": [
|
|
@@ -1597,6 +1732,9 @@ exports.CreateAttributeRequest = {
|
|
|
1597
1732
|
},
|
|
1598
1733
|
"description": {
|
|
1599
1734
|
"type": "string"
|
|
1735
|
+
},
|
|
1736
|
+
"valueHintsOverride": {
|
|
1737
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1600
1738
|
}
|
|
1601
1739
|
},
|
|
1602
1740
|
"required": [
|
|
@@ -1627,6 +1765,9 @@ exports.CreateAttributeRequest = {
|
|
|
1627
1765
|
},
|
|
1628
1766
|
"description": {
|
|
1629
1767
|
"type": "string"
|
|
1768
|
+
},
|
|
1769
|
+
"valueHintsOverride": {
|
|
1770
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1630
1771
|
}
|
|
1631
1772
|
},
|
|
1632
1773
|
"required": [
|
|
@@ -1657,6 +1798,9 @@ exports.CreateAttributeRequest = {
|
|
|
1657
1798
|
},
|
|
1658
1799
|
"description": {
|
|
1659
1800
|
"type": "string"
|
|
1801
|
+
},
|
|
1802
|
+
"valueHintsOverride": {
|
|
1803
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1660
1804
|
}
|
|
1661
1805
|
},
|
|
1662
1806
|
"required": [
|
|
@@ -1687,6 +1831,9 @@ exports.CreateAttributeRequest = {
|
|
|
1687
1831
|
},
|
|
1688
1832
|
"description": {
|
|
1689
1833
|
"type": "string"
|
|
1834
|
+
},
|
|
1835
|
+
"valueHintsOverride": {
|
|
1836
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1690
1837
|
}
|
|
1691
1838
|
},
|
|
1692
1839
|
"required": [
|
|
@@ -1717,6 +1864,9 @@ exports.CreateAttributeRequest = {
|
|
|
1717
1864
|
},
|
|
1718
1865
|
"description": {
|
|
1719
1866
|
"type": "string"
|
|
1867
|
+
},
|
|
1868
|
+
"valueHintsOverride": {
|
|
1869
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
1720
1870
|
}
|
|
1721
1871
|
},
|
|
1722
1872
|
"required": [
|
|
@@ -2361,7 +2511,10 @@ exports.ExecuteThirdPartyRelationshipAttributeQueryRequest = {
|
|
|
2361
2511
|
"$ref": "#/definitions/ICoreAddress"
|
|
2362
2512
|
},
|
|
2363
2513
|
"thirdParty": {
|
|
2364
|
-
"
|
|
2514
|
+
"type": "array",
|
|
2515
|
+
"items": {
|
|
2516
|
+
"$ref": "#/definitions/ICoreAddress"
|
|
2517
|
+
}
|
|
2365
2518
|
}
|
|
2366
2519
|
},
|
|
2367
2520
|
"required": [
|
|
@@ -2421,7 +2574,10 @@ exports.ExecuteThirdPartyRelationshipAttributeQueryRequest = {
|
|
|
2421
2574
|
"type": "string"
|
|
2422
2575
|
},
|
|
2423
2576
|
"thirdParty": {
|
|
2424
|
-
"type": "
|
|
2577
|
+
"type": "array",
|
|
2578
|
+
"items": {
|
|
2579
|
+
"type": "string"
|
|
2580
|
+
}
|
|
2425
2581
|
}
|
|
2426
2582
|
},
|
|
2427
2583
|
"required": [
|
|
@@ -3439,6 +3595,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3439
3595
|
},
|
|
3440
3596
|
"description": {
|
|
3441
3597
|
"type": "string"
|
|
3598
|
+
},
|
|
3599
|
+
"valueHintsOverride": {
|
|
3600
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3442
3601
|
}
|
|
3443
3602
|
},
|
|
3444
3603
|
"required": [
|
|
@@ -3448,6 +3607,123 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3448
3607
|
],
|
|
3449
3608
|
"additionalProperties": false
|
|
3450
3609
|
},
|
|
3610
|
+
"ValueHintsOverrideJSON": {
|
|
3611
|
+
"type": "object",
|
|
3612
|
+
"additionalProperties": false,
|
|
3613
|
+
"properties": {
|
|
3614
|
+
"@type": {
|
|
3615
|
+
"type": "string",
|
|
3616
|
+
"const": "ValueHints"
|
|
3617
|
+
},
|
|
3618
|
+
"editHelp": {
|
|
3619
|
+
"type": "string"
|
|
3620
|
+
},
|
|
3621
|
+
"min": {
|
|
3622
|
+
"type": "number"
|
|
3623
|
+
},
|
|
3624
|
+
"max": {
|
|
3625
|
+
"type": "number"
|
|
3626
|
+
},
|
|
3627
|
+
"pattern": {
|
|
3628
|
+
"type": "string"
|
|
3629
|
+
},
|
|
3630
|
+
"values": {
|
|
3631
|
+
"type": "array",
|
|
3632
|
+
"items": {
|
|
3633
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
3634
|
+
}
|
|
3635
|
+
},
|
|
3636
|
+
"defaultValue": {
|
|
3637
|
+
"type": [
|
|
3638
|
+
"string",
|
|
3639
|
+
"number",
|
|
3640
|
+
"boolean"
|
|
3641
|
+
]
|
|
3642
|
+
},
|
|
3643
|
+
"propertyHints": {
|
|
3644
|
+
"type": "object",
|
|
3645
|
+
"additionalProperties": {
|
|
3646
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
3647
|
+
}
|
|
3648
|
+
},
|
|
3649
|
+
"@context": {
|
|
3650
|
+
"type": "string"
|
|
3651
|
+
},
|
|
3652
|
+
"@version": {
|
|
3653
|
+
"type": "string"
|
|
3654
|
+
}
|
|
3655
|
+
}
|
|
3656
|
+
},
|
|
3657
|
+
"ValueHintsValueJSON": {
|
|
3658
|
+
"type": "object",
|
|
3659
|
+
"properties": {
|
|
3660
|
+
"key": {
|
|
3661
|
+
"type": [
|
|
3662
|
+
"string",
|
|
3663
|
+
"number",
|
|
3664
|
+
"boolean"
|
|
3665
|
+
]
|
|
3666
|
+
},
|
|
3667
|
+
"displayName": {
|
|
3668
|
+
"type": "string"
|
|
3669
|
+
}
|
|
3670
|
+
},
|
|
3671
|
+
"required": [
|
|
3672
|
+
"key",
|
|
3673
|
+
"displayName"
|
|
3674
|
+
],
|
|
3675
|
+
"additionalProperties": false
|
|
3676
|
+
},
|
|
3677
|
+
"ValueHintsJSON": {
|
|
3678
|
+
"type": "object",
|
|
3679
|
+
"properties": {
|
|
3680
|
+
"@type": {
|
|
3681
|
+
"type": "string",
|
|
3682
|
+
"const": "ValueHints"
|
|
3683
|
+
},
|
|
3684
|
+
"@context": {
|
|
3685
|
+
"type": "string"
|
|
3686
|
+
},
|
|
3687
|
+
"@version": {
|
|
3688
|
+
"type": "string"
|
|
3689
|
+
},
|
|
3690
|
+
"editHelp": {
|
|
3691
|
+
"type": "string"
|
|
3692
|
+
},
|
|
3693
|
+
"min": {
|
|
3694
|
+
"type": "number"
|
|
3695
|
+
},
|
|
3696
|
+
"max": {
|
|
3697
|
+
"type": "number"
|
|
3698
|
+
},
|
|
3699
|
+
"pattern": {
|
|
3700
|
+
"type": "string"
|
|
3701
|
+
},
|
|
3702
|
+
"values": {
|
|
3703
|
+
"type": "array",
|
|
3704
|
+
"items": {
|
|
3705
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
3706
|
+
}
|
|
3707
|
+
},
|
|
3708
|
+
"defaultValue": {
|
|
3709
|
+
"type": [
|
|
3710
|
+
"string",
|
|
3711
|
+
"number",
|
|
3712
|
+
"boolean"
|
|
3713
|
+
]
|
|
3714
|
+
},
|
|
3715
|
+
"propertyHints": {
|
|
3716
|
+
"type": "object",
|
|
3717
|
+
"additionalProperties": {
|
|
3718
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
3719
|
+
}
|
|
3720
|
+
}
|
|
3721
|
+
},
|
|
3722
|
+
"required": [
|
|
3723
|
+
"@type"
|
|
3724
|
+
],
|
|
3725
|
+
"additionalProperties": false
|
|
3726
|
+
},
|
|
3451
3727
|
"ProprietaryCountryJSON": {
|
|
3452
3728
|
"type": "object",
|
|
3453
3729
|
"properties": {
|
|
@@ -3469,6 +3745,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3469
3745
|
},
|
|
3470
3746
|
"description": {
|
|
3471
3747
|
"type": "string"
|
|
3748
|
+
},
|
|
3749
|
+
"valueHintsOverride": {
|
|
3750
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3472
3751
|
}
|
|
3473
3752
|
},
|
|
3474
3753
|
"required": [
|
|
@@ -3499,6 +3778,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3499
3778
|
},
|
|
3500
3779
|
"description": {
|
|
3501
3780
|
"type": "string"
|
|
3781
|
+
},
|
|
3782
|
+
"valueHintsOverride": {
|
|
3783
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3502
3784
|
}
|
|
3503
3785
|
},
|
|
3504
3786
|
"required": [
|
|
@@ -3529,6 +3811,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3529
3811
|
},
|
|
3530
3812
|
"description": {
|
|
3531
3813
|
"type": "string"
|
|
3814
|
+
},
|
|
3815
|
+
"valueHintsOverride": {
|
|
3816
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3532
3817
|
}
|
|
3533
3818
|
},
|
|
3534
3819
|
"required": [
|
|
@@ -3559,6 +3844,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3559
3844
|
},
|
|
3560
3845
|
"description": {
|
|
3561
3846
|
"type": "string"
|
|
3847
|
+
},
|
|
3848
|
+
"valueHintsOverride": {
|
|
3849
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3562
3850
|
}
|
|
3563
3851
|
},
|
|
3564
3852
|
"required": [
|
|
@@ -3589,6 +3877,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3589
3877
|
},
|
|
3590
3878
|
"description": {
|
|
3591
3879
|
"type": "string"
|
|
3880
|
+
},
|
|
3881
|
+
"valueHintsOverride": {
|
|
3882
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3592
3883
|
}
|
|
3593
3884
|
},
|
|
3594
3885
|
"required": [
|
|
@@ -3619,6 +3910,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3619
3910
|
},
|
|
3620
3911
|
"description": {
|
|
3621
3912
|
"type": "string"
|
|
3913
|
+
},
|
|
3914
|
+
"valueHintsOverride": {
|
|
3915
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3622
3916
|
}
|
|
3623
3917
|
},
|
|
3624
3918
|
"required": [
|
|
@@ -3649,6 +3943,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3649
3943
|
},
|
|
3650
3944
|
"description": {
|
|
3651
3945
|
"type": "string"
|
|
3946
|
+
},
|
|
3947
|
+
"valueHintsOverride": {
|
|
3948
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3652
3949
|
}
|
|
3653
3950
|
},
|
|
3654
3951
|
"required": [
|
|
@@ -3679,6 +3976,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3679
3976
|
},
|
|
3680
3977
|
"description": {
|
|
3681
3978
|
"type": "string"
|
|
3979
|
+
},
|
|
3980
|
+
"valueHintsOverride": {
|
|
3981
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3682
3982
|
}
|
|
3683
3983
|
},
|
|
3684
3984
|
"required": [
|
|
@@ -3709,6 +4009,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3709
4009
|
},
|
|
3710
4010
|
"description": {
|
|
3711
4011
|
"type": "string"
|
|
4012
|
+
},
|
|
4013
|
+
"valueHintsOverride": {
|
|
4014
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3712
4015
|
}
|
|
3713
4016
|
},
|
|
3714
4017
|
"required": [
|
|
@@ -3739,6 +4042,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
3739
4042
|
},
|
|
3740
4043
|
"description": {
|
|
3741
4044
|
"type": "string"
|
|
4045
|
+
},
|
|
4046
|
+
"valueHintsOverride": {
|
|
4047
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
3742
4048
|
}
|
|
3743
4049
|
},
|
|
3744
4050
|
"required": [
|
|
@@ -5316,76 +5622,6 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
5316
5622
|
"Consent"
|
|
5317
5623
|
]
|
|
5318
5624
|
},
|
|
5319
|
-
"ValueHintsJSON": {
|
|
5320
|
-
"type": "object",
|
|
5321
|
-
"properties": {
|
|
5322
|
-
"@type": {
|
|
5323
|
-
"type": "string",
|
|
5324
|
-
"const": "ValueHints"
|
|
5325
|
-
},
|
|
5326
|
-
"@context": {
|
|
5327
|
-
"type": "string"
|
|
5328
|
-
},
|
|
5329
|
-
"@version": {
|
|
5330
|
-
"type": "string"
|
|
5331
|
-
},
|
|
5332
|
-
"editHelp": {
|
|
5333
|
-
"type": "string"
|
|
5334
|
-
},
|
|
5335
|
-
"min": {
|
|
5336
|
-
"type": "number"
|
|
5337
|
-
},
|
|
5338
|
-
"max": {
|
|
5339
|
-
"type": "number"
|
|
5340
|
-
},
|
|
5341
|
-
"pattern": {
|
|
5342
|
-
"type": "string"
|
|
5343
|
-
},
|
|
5344
|
-
"values": {
|
|
5345
|
-
"type": "array",
|
|
5346
|
-
"items": {
|
|
5347
|
-
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
5348
|
-
}
|
|
5349
|
-
},
|
|
5350
|
-
"defaultValue": {
|
|
5351
|
-
"type": [
|
|
5352
|
-
"string",
|
|
5353
|
-
"number",
|
|
5354
|
-
"boolean"
|
|
5355
|
-
]
|
|
5356
|
-
},
|
|
5357
|
-
"propertyHints": {
|
|
5358
|
-
"type": "object",
|
|
5359
|
-
"additionalProperties": {
|
|
5360
|
-
"$ref": "#/definitions/ValueHintsJSON"
|
|
5361
|
-
}
|
|
5362
|
-
}
|
|
5363
|
-
},
|
|
5364
|
-
"required": [
|
|
5365
|
-
"@type"
|
|
5366
|
-
],
|
|
5367
|
-
"additionalProperties": false
|
|
5368
|
-
},
|
|
5369
|
-
"ValueHintsValueJSON": {
|
|
5370
|
-
"type": "object",
|
|
5371
|
-
"properties": {
|
|
5372
|
-
"key": {
|
|
5373
|
-
"type": [
|
|
5374
|
-
"string",
|
|
5375
|
-
"number",
|
|
5376
|
-
"boolean"
|
|
5377
|
-
]
|
|
5378
|
-
},
|
|
5379
|
-
"displayName": {
|
|
5380
|
-
"type": "string"
|
|
5381
|
-
}
|
|
5382
|
-
},
|
|
5383
|
-
"required": [
|
|
5384
|
-
"key",
|
|
5385
|
-
"displayName"
|
|
5386
|
-
],
|
|
5387
|
-
"additionalProperties": false
|
|
5388
|
-
},
|
|
5389
5625
|
"ReadAttributeRequestItemJSON": {
|
|
5390
5626
|
"type": "object",
|
|
5391
5627
|
"properties": {
|
|
@@ -5466,7 +5702,10 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
5466
5702
|
"type": "string"
|
|
5467
5703
|
},
|
|
5468
5704
|
"thirdParty": {
|
|
5469
|
-
"type": "
|
|
5705
|
+
"type": "array",
|
|
5706
|
+
"items": {
|
|
5707
|
+
"type": "string"
|
|
5708
|
+
}
|
|
5470
5709
|
}
|
|
5471
5710
|
},
|
|
5472
5711
|
"required": [
|
|
@@ -7339,14 +7578,134 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7339
7578
|
"title": {
|
|
7340
7579
|
"type": "string"
|
|
7341
7580
|
},
|
|
7342
|
-
"description": {
|
|
7343
|
-
"type": "string"
|
|
7581
|
+
"description": {
|
|
7582
|
+
"type": "string"
|
|
7583
|
+
},
|
|
7584
|
+
"valueHintsOverride": {
|
|
7585
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7586
|
+
}
|
|
7587
|
+
},
|
|
7588
|
+
"required": [
|
|
7589
|
+
"@type",
|
|
7590
|
+
"title",
|
|
7591
|
+
"value"
|
|
7592
|
+
],
|
|
7593
|
+
"additionalProperties": false
|
|
7594
|
+
},
|
|
7595
|
+
"ValueHintsOverrideJSON": {
|
|
7596
|
+
"type": "object",
|
|
7597
|
+
"additionalProperties": false,
|
|
7598
|
+
"properties": {
|
|
7599
|
+
"@type": {
|
|
7600
|
+
"type": "string",
|
|
7601
|
+
"const": "ValueHints"
|
|
7602
|
+
},
|
|
7603
|
+
"editHelp": {
|
|
7604
|
+
"type": "string"
|
|
7605
|
+
},
|
|
7606
|
+
"min": {
|
|
7607
|
+
"type": "number"
|
|
7608
|
+
},
|
|
7609
|
+
"max": {
|
|
7610
|
+
"type": "number"
|
|
7611
|
+
},
|
|
7612
|
+
"pattern": {
|
|
7613
|
+
"type": "string"
|
|
7614
|
+
},
|
|
7615
|
+
"values": {
|
|
7616
|
+
"type": "array",
|
|
7617
|
+
"items": {
|
|
7618
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
7619
|
+
}
|
|
7620
|
+
},
|
|
7621
|
+
"defaultValue": {
|
|
7622
|
+
"type": [
|
|
7623
|
+
"string",
|
|
7624
|
+
"number",
|
|
7625
|
+
"boolean"
|
|
7626
|
+
]
|
|
7627
|
+
},
|
|
7628
|
+
"propertyHints": {
|
|
7629
|
+
"type": "object",
|
|
7630
|
+
"additionalProperties": {
|
|
7631
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
7632
|
+
}
|
|
7633
|
+
},
|
|
7634
|
+
"@context": {
|
|
7635
|
+
"type": "string"
|
|
7636
|
+
},
|
|
7637
|
+
"@version": {
|
|
7638
|
+
"type": "string"
|
|
7639
|
+
}
|
|
7640
|
+
}
|
|
7641
|
+
},
|
|
7642
|
+
"ValueHintsValueJSON": {
|
|
7643
|
+
"type": "object",
|
|
7644
|
+
"properties": {
|
|
7645
|
+
"key": {
|
|
7646
|
+
"type": [
|
|
7647
|
+
"string",
|
|
7648
|
+
"number",
|
|
7649
|
+
"boolean"
|
|
7650
|
+
]
|
|
7651
|
+
},
|
|
7652
|
+
"displayName": {
|
|
7653
|
+
"type": "string"
|
|
7654
|
+
}
|
|
7655
|
+
},
|
|
7656
|
+
"required": [
|
|
7657
|
+
"key",
|
|
7658
|
+
"displayName"
|
|
7659
|
+
],
|
|
7660
|
+
"additionalProperties": false
|
|
7661
|
+
},
|
|
7662
|
+
"ValueHintsJSON": {
|
|
7663
|
+
"type": "object",
|
|
7664
|
+
"properties": {
|
|
7665
|
+
"@type": {
|
|
7666
|
+
"type": "string",
|
|
7667
|
+
"const": "ValueHints"
|
|
7668
|
+
},
|
|
7669
|
+
"@context": {
|
|
7670
|
+
"type": "string"
|
|
7671
|
+
},
|
|
7672
|
+
"@version": {
|
|
7673
|
+
"type": "string"
|
|
7674
|
+
},
|
|
7675
|
+
"editHelp": {
|
|
7676
|
+
"type": "string"
|
|
7677
|
+
},
|
|
7678
|
+
"min": {
|
|
7679
|
+
"type": "number"
|
|
7680
|
+
},
|
|
7681
|
+
"max": {
|
|
7682
|
+
"type": "number"
|
|
7683
|
+
},
|
|
7684
|
+
"pattern": {
|
|
7685
|
+
"type": "string"
|
|
7686
|
+
},
|
|
7687
|
+
"values": {
|
|
7688
|
+
"type": "array",
|
|
7689
|
+
"items": {
|
|
7690
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
7691
|
+
}
|
|
7692
|
+
},
|
|
7693
|
+
"defaultValue": {
|
|
7694
|
+
"type": [
|
|
7695
|
+
"string",
|
|
7696
|
+
"number",
|
|
7697
|
+
"boolean"
|
|
7698
|
+
]
|
|
7699
|
+
},
|
|
7700
|
+
"propertyHints": {
|
|
7701
|
+
"type": "object",
|
|
7702
|
+
"additionalProperties": {
|
|
7703
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
7704
|
+
}
|
|
7344
7705
|
}
|
|
7345
7706
|
},
|
|
7346
7707
|
"required": [
|
|
7347
|
-
"@type"
|
|
7348
|
-
"title",
|
|
7349
|
-
"value"
|
|
7708
|
+
"@type"
|
|
7350
7709
|
],
|
|
7351
7710
|
"additionalProperties": false
|
|
7352
7711
|
},
|
|
@@ -7371,6 +7730,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7371
7730
|
},
|
|
7372
7731
|
"description": {
|
|
7373
7732
|
"type": "string"
|
|
7733
|
+
},
|
|
7734
|
+
"valueHintsOverride": {
|
|
7735
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7374
7736
|
}
|
|
7375
7737
|
},
|
|
7376
7738
|
"required": [
|
|
@@ -7401,6 +7763,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7401
7763
|
},
|
|
7402
7764
|
"description": {
|
|
7403
7765
|
"type": "string"
|
|
7766
|
+
},
|
|
7767
|
+
"valueHintsOverride": {
|
|
7768
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7404
7769
|
}
|
|
7405
7770
|
},
|
|
7406
7771
|
"required": [
|
|
@@ -7431,6 +7796,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7431
7796
|
},
|
|
7432
7797
|
"description": {
|
|
7433
7798
|
"type": "string"
|
|
7799
|
+
},
|
|
7800
|
+
"valueHintsOverride": {
|
|
7801
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7434
7802
|
}
|
|
7435
7803
|
},
|
|
7436
7804
|
"required": [
|
|
@@ -7461,6 +7829,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7461
7829
|
},
|
|
7462
7830
|
"description": {
|
|
7463
7831
|
"type": "string"
|
|
7832
|
+
},
|
|
7833
|
+
"valueHintsOverride": {
|
|
7834
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7464
7835
|
}
|
|
7465
7836
|
},
|
|
7466
7837
|
"required": [
|
|
@@ -7491,6 +7862,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7491
7862
|
},
|
|
7492
7863
|
"description": {
|
|
7493
7864
|
"type": "string"
|
|
7865
|
+
},
|
|
7866
|
+
"valueHintsOverride": {
|
|
7867
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7494
7868
|
}
|
|
7495
7869
|
},
|
|
7496
7870
|
"required": [
|
|
@@ -7521,6 +7895,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7521
7895
|
},
|
|
7522
7896
|
"description": {
|
|
7523
7897
|
"type": "string"
|
|
7898
|
+
},
|
|
7899
|
+
"valueHintsOverride": {
|
|
7900
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7524
7901
|
}
|
|
7525
7902
|
},
|
|
7526
7903
|
"required": [
|
|
@@ -7551,6 +7928,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7551
7928
|
},
|
|
7552
7929
|
"description": {
|
|
7553
7930
|
"type": "string"
|
|
7931
|
+
},
|
|
7932
|
+
"valueHintsOverride": {
|
|
7933
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7554
7934
|
}
|
|
7555
7935
|
},
|
|
7556
7936
|
"required": [
|
|
@@ -7581,6 +7961,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7581
7961
|
},
|
|
7582
7962
|
"description": {
|
|
7583
7963
|
"type": "string"
|
|
7964
|
+
},
|
|
7965
|
+
"valueHintsOverride": {
|
|
7966
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7584
7967
|
}
|
|
7585
7968
|
},
|
|
7586
7969
|
"required": [
|
|
@@ -7611,6 +7994,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7611
7994
|
},
|
|
7612
7995
|
"description": {
|
|
7613
7996
|
"type": "string"
|
|
7997
|
+
},
|
|
7998
|
+
"valueHintsOverride": {
|
|
7999
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7614
8000
|
}
|
|
7615
8001
|
},
|
|
7616
8002
|
"required": [
|
|
@@ -7641,6 +8027,9 @@ exports.CompleteOutgoingRequestRequest = {
|
|
|
7641
8027
|
},
|
|
7642
8028
|
"description": {
|
|
7643
8029
|
"type": "string"
|
|
8030
|
+
},
|
|
8031
|
+
"valueHintsOverride": {
|
|
8032
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
7644
8033
|
}
|
|
7645
8034
|
},
|
|
7646
8035
|
"required": [
|
|
@@ -8213,6 +8602,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8213
8602
|
},
|
|
8214
8603
|
"description": {
|
|
8215
8604
|
"type": "string"
|
|
8605
|
+
},
|
|
8606
|
+
"valueHintsOverride": {
|
|
8607
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8216
8608
|
}
|
|
8217
8609
|
},
|
|
8218
8610
|
"required": [
|
|
@@ -8222,6 +8614,123 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8222
8614
|
],
|
|
8223
8615
|
"additionalProperties": false
|
|
8224
8616
|
},
|
|
8617
|
+
"ValueHintsOverrideJSON": {
|
|
8618
|
+
"type": "object",
|
|
8619
|
+
"additionalProperties": false,
|
|
8620
|
+
"properties": {
|
|
8621
|
+
"@type": {
|
|
8622
|
+
"type": "string",
|
|
8623
|
+
"const": "ValueHints"
|
|
8624
|
+
},
|
|
8625
|
+
"editHelp": {
|
|
8626
|
+
"type": "string"
|
|
8627
|
+
},
|
|
8628
|
+
"min": {
|
|
8629
|
+
"type": "number"
|
|
8630
|
+
},
|
|
8631
|
+
"max": {
|
|
8632
|
+
"type": "number"
|
|
8633
|
+
},
|
|
8634
|
+
"pattern": {
|
|
8635
|
+
"type": "string"
|
|
8636
|
+
},
|
|
8637
|
+
"values": {
|
|
8638
|
+
"type": "array",
|
|
8639
|
+
"items": {
|
|
8640
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
8641
|
+
}
|
|
8642
|
+
},
|
|
8643
|
+
"defaultValue": {
|
|
8644
|
+
"type": [
|
|
8645
|
+
"string",
|
|
8646
|
+
"number",
|
|
8647
|
+
"boolean"
|
|
8648
|
+
]
|
|
8649
|
+
},
|
|
8650
|
+
"propertyHints": {
|
|
8651
|
+
"type": "object",
|
|
8652
|
+
"additionalProperties": {
|
|
8653
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
8654
|
+
}
|
|
8655
|
+
},
|
|
8656
|
+
"@context": {
|
|
8657
|
+
"type": "string"
|
|
8658
|
+
},
|
|
8659
|
+
"@version": {
|
|
8660
|
+
"type": "string"
|
|
8661
|
+
}
|
|
8662
|
+
}
|
|
8663
|
+
},
|
|
8664
|
+
"ValueHintsValueJSON": {
|
|
8665
|
+
"type": "object",
|
|
8666
|
+
"properties": {
|
|
8667
|
+
"key": {
|
|
8668
|
+
"type": [
|
|
8669
|
+
"string",
|
|
8670
|
+
"number",
|
|
8671
|
+
"boolean"
|
|
8672
|
+
]
|
|
8673
|
+
},
|
|
8674
|
+
"displayName": {
|
|
8675
|
+
"type": "string"
|
|
8676
|
+
}
|
|
8677
|
+
},
|
|
8678
|
+
"required": [
|
|
8679
|
+
"key",
|
|
8680
|
+
"displayName"
|
|
8681
|
+
],
|
|
8682
|
+
"additionalProperties": false
|
|
8683
|
+
},
|
|
8684
|
+
"ValueHintsJSON": {
|
|
8685
|
+
"type": "object",
|
|
8686
|
+
"properties": {
|
|
8687
|
+
"@type": {
|
|
8688
|
+
"type": "string",
|
|
8689
|
+
"const": "ValueHints"
|
|
8690
|
+
},
|
|
8691
|
+
"@context": {
|
|
8692
|
+
"type": "string"
|
|
8693
|
+
},
|
|
8694
|
+
"@version": {
|
|
8695
|
+
"type": "string"
|
|
8696
|
+
},
|
|
8697
|
+
"editHelp": {
|
|
8698
|
+
"type": "string"
|
|
8699
|
+
},
|
|
8700
|
+
"min": {
|
|
8701
|
+
"type": "number"
|
|
8702
|
+
},
|
|
8703
|
+
"max": {
|
|
8704
|
+
"type": "number"
|
|
8705
|
+
},
|
|
8706
|
+
"pattern": {
|
|
8707
|
+
"type": "string"
|
|
8708
|
+
},
|
|
8709
|
+
"values": {
|
|
8710
|
+
"type": "array",
|
|
8711
|
+
"items": {
|
|
8712
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
8713
|
+
}
|
|
8714
|
+
},
|
|
8715
|
+
"defaultValue": {
|
|
8716
|
+
"type": [
|
|
8717
|
+
"string",
|
|
8718
|
+
"number",
|
|
8719
|
+
"boolean"
|
|
8720
|
+
]
|
|
8721
|
+
},
|
|
8722
|
+
"propertyHints": {
|
|
8723
|
+
"type": "object",
|
|
8724
|
+
"additionalProperties": {
|
|
8725
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
8726
|
+
}
|
|
8727
|
+
}
|
|
8728
|
+
},
|
|
8729
|
+
"required": [
|
|
8730
|
+
"@type"
|
|
8731
|
+
],
|
|
8732
|
+
"additionalProperties": false
|
|
8733
|
+
},
|
|
8225
8734
|
"ProprietaryCountryJSON": {
|
|
8226
8735
|
"type": "object",
|
|
8227
8736
|
"properties": {
|
|
@@ -8243,6 +8752,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8243
8752
|
},
|
|
8244
8753
|
"description": {
|
|
8245
8754
|
"type": "string"
|
|
8755
|
+
},
|
|
8756
|
+
"valueHintsOverride": {
|
|
8757
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8246
8758
|
}
|
|
8247
8759
|
},
|
|
8248
8760
|
"required": [
|
|
@@ -8273,6 +8785,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8273
8785
|
},
|
|
8274
8786
|
"description": {
|
|
8275
8787
|
"type": "string"
|
|
8788
|
+
},
|
|
8789
|
+
"valueHintsOverride": {
|
|
8790
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8276
8791
|
}
|
|
8277
8792
|
},
|
|
8278
8793
|
"required": [
|
|
@@ -8303,6 +8818,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8303
8818
|
},
|
|
8304
8819
|
"description": {
|
|
8305
8820
|
"type": "string"
|
|
8821
|
+
},
|
|
8822
|
+
"valueHintsOverride": {
|
|
8823
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8306
8824
|
}
|
|
8307
8825
|
},
|
|
8308
8826
|
"required": [
|
|
@@ -8333,6 +8851,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8333
8851
|
},
|
|
8334
8852
|
"description": {
|
|
8335
8853
|
"type": "string"
|
|
8854
|
+
},
|
|
8855
|
+
"valueHintsOverride": {
|
|
8856
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8336
8857
|
}
|
|
8337
8858
|
},
|
|
8338
8859
|
"required": [
|
|
@@ -8363,6 +8884,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8363
8884
|
},
|
|
8364
8885
|
"description": {
|
|
8365
8886
|
"type": "string"
|
|
8887
|
+
},
|
|
8888
|
+
"valueHintsOverride": {
|
|
8889
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8366
8890
|
}
|
|
8367
8891
|
},
|
|
8368
8892
|
"required": [
|
|
@@ -8393,6 +8917,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8393
8917
|
},
|
|
8394
8918
|
"description": {
|
|
8395
8919
|
"type": "string"
|
|
8920
|
+
},
|
|
8921
|
+
"valueHintsOverride": {
|
|
8922
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8396
8923
|
}
|
|
8397
8924
|
},
|
|
8398
8925
|
"required": [
|
|
@@ -8423,6 +8950,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8423
8950
|
},
|
|
8424
8951
|
"description": {
|
|
8425
8952
|
"type": "string"
|
|
8953
|
+
},
|
|
8954
|
+
"valueHintsOverride": {
|
|
8955
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8426
8956
|
}
|
|
8427
8957
|
},
|
|
8428
8958
|
"required": [
|
|
@@ -8453,6 +8983,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8453
8983
|
},
|
|
8454
8984
|
"description": {
|
|
8455
8985
|
"type": "string"
|
|
8986
|
+
},
|
|
8987
|
+
"valueHintsOverride": {
|
|
8988
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8456
8989
|
}
|
|
8457
8990
|
},
|
|
8458
8991
|
"required": [
|
|
@@ -8483,6 +9016,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8483
9016
|
},
|
|
8484
9017
|
"description": {
|
|
8485
9018
|
"type": "string"
|
|
9019
|
+
},
|
|
9020
|
+
"valueHintsOverride": {
|
|
9021
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8486
9022
|
}
|
|
8487
9023
|
},
|
|
8488
9024
|
"required": [
|
|
@@ -8513,6 +9049,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
8513
9049
|
},
|
|
8514
9050
|
"description": {
|
|
8515
9051
|
"type": "string"
|
|
9052
|
+
},
|
|
9053
|
+
"valueHintsOverride": {
|
|
9054
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
8516
9055
|
}
|
|
8517
9056
|
},
|
|
8518
9057
|
"required": [
|
|
@@ -10031,135 +10570,65 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
10031
10570
|
"key": {
|
|
10032
10571
|
"type": "string"
|
|
10033
10572
|
},
|
|
10034
|
-
"owner": {
|
|
10035
|
-
"type": "string"
|
|
10036
|
-
},
|
|
10037
|
-
"attributeCreationHints": {
|
|
10038
|
-
"$ref": "#/definitions/RelationshipAttributeCreationHintsJSON"
|
|
10039
|
-
}
|
|
10040
|
-
},
|
|
10041
|
-
"required": [
|
|
10042
|
-
"@type",
|
|
10043
|
-
"attributeCreationHints",
|
|
10044
|
-
"key",
|
|
10045
|
-
"owner"
|
|
10046
|
-
],
|
|
10047
|
-
"additionalProperties": false
|
|
10048
|
-
},
|
|
10049
|
-
"RelationshipAttributeCreationHintsJSON": {
|
|
10050
|
-
"type": "object",
|
|
10051
|
-
"properties": {
|
|
10052
|
-
"title": {
|
|
10053
|
-
"type": "string"
|
|
10054
|
-
},
|
|
10055
|
-
"valueType": {
|
|
10056
|
-
"$ref": "#/definitions/AttributeValues.Relationship.TypeName"
|
|
10057
|
-
},
|
|
10058
|
-
"description": {
|
|
10059
|
-
"type": "string"
|
|
10060
|
-
},
|
|
10061
|
-
"valueHints": {
|
|
10062
|
-
"$ref": "#/definitions/ValueHintsJSON"
|
|
10063
|
-
},
|
|
10064
|
-
"confidentiality": {
|
|
10065
|
-
"$ref": "#/definitions/RelationshipAttributeConfidentiality"
|
|
10066
|
-
}
|
|
10067
|
-
},
|
|
10068
|
-
"required": [
|
|
10069
|
-
"title",
|
|
10070
|
-
"valueType",
|
|
10071
|
-
"confidentiality"
|
|
10072
|
-
],
|
|
10073
|
-
"additionalProperties": false
|
|
10074
|
-
},
|
|
10075
|
-
"AttributeValues.Relationship.TypeName": {
|
|
10076
|
-
"type": "string",
|
|
10077
|
-
"enum": [
|
|
10078
|
-
"ProprietaryBoolean",
|
|
10079
|
-
"ProprietaryCountry",
|
|
10080
|
-
"ProprietaryEMailAddress",
|
|
10081
|
-
"ProprietaryFileReference",
|
|
10082
|
-
"ProprietaryFloat",
|
|
10083
|
-
"ProprietaryHEXColor",
|
|
10084
|
-
"ProprietaryInteger",
|
|
10085
|
-
"ProprietaryLanguage",
|
|
10086
|
-
"ProprietaryPhoneNumber",
|
|
10087
|
-
"ProprietaryString",
|
|
10088
|
-
"ProprietaryURL",
|
|
10089
|
-
"ProprietaryJSON",
|
|
10090
|
-
"Consent"
|
|
10091
|
-
]
|
|
10092
|
-
},
|
|
10093
|
-
"ValueHintsJSON": {
|
|
10094
|
-
"type": "object",
|
|
10095
|
-
"properties": {
|
|
10096
|
-
"@type": {
|
|
10097
|
-
"type": "string",
|
|
10098
|
-
"const": "ValueHints"
|
|
10099
|
-
},
|
|
10100
|
-
"@context": {
|
|
10101
|
-
"type": "string"
|
|
10102
|
-
},
|
|
10103
|
-
"@version": {
|
|
10104
|
-
"type": "string"
|
|
10105
|
-
},
|
|
10106
|
-
"editHelp": {
|
|
10107
|
-
"type": "string"
|
|
10108
|
-
},
|
|
10109
|
-
"min": {
|
|
10110
|
-
"type": "number"
|
|
10111
|
-
},
|
|
10112
|
-
"max": {
|
|
10113
|
-
"type": "number"
|
|
10114
|
-
},
|
|
10115
|
-
"pattern": {
|
|
10116
|
-
"type": "string"
|
|
10117
|
-
},
|
|
10118
|
-
"values": {
|
|
10119
|
-
"type": "array",
|
|
10120
|
-
"items": {
|
|
10121
|
-
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
10122
|
-
}
|
|
10123
|
-
},
|
|
10124
|
-
"defaultValue": {
|
|
10125
|
-
"type": [
|
|
10126
|
-
"string",
|
|
10127
|
-
"number",
|
|
10128
|
-
"boolean"
|
|
10129
|
-
]
|
|
10130
|
-
},
|
|
10131
|
-
"propertyHints": {
|
|
10132
|
-
"type": "object",
|
|
10133
|
-
"additionalProperties": {
|
|
10134
|
-
"$ref": "#/definitions/ValueHintsJSON"
|
|
10135
|
-
}
|
|
10573
|
+
"owner": {
|
|
10574
|
+
"type": "string"
|
|
10575
|
+
},
|
|
10576
|
+
"attributeCreationHints": {
|
|
10577
|
+
"$ref": "#/definitions/RelationshipAttributeCreationHintsJSON"
|
|
10136
10578
|
}
|
|
10137
10579
|
},
|
|
10138
10580
|
"required": [
|
|
10139
|
-
"@type"
|
|
10581
|
+
"@type",
|
|
10582
|
+
"attributeCreationHints",
|
|
10583
|
+
"key",
|
|
10584
|
+
"owner"
|
|
10140
10585
|
],
|
|
10141
10586
|
"additionalProperties": false
|
|
10142
10587
|
},
|
|
10143
|
-
"
|
|
10588
|
+
"RelationshipAttributeCreationHintsJSON": {
|
|
10144
10589
|
"type": "object",
|
|
10145
10590
|
"properties": {
|
|
10146
|
-
"
|
|
10147
|
-
"type":
|
|
10148
|
-
"string",
|
|
10149
|
-
"number",
|
|
10150
|
-
"boolean"
|
|
10151
|
-
]
|
|
10591
|
+
"title": {
|
|
10592
|
+
"type": "string"
|
|
10152
10593
|
},
|
|
10153
|
-
"
|
|
10594
|
+
"valueType": {
|
|
10595
|
+
"$ref": "#/definitions/AttributeValues.Relationship.TypeName"
|
|
10596
|
+
},
|
|
10597
|
+
"description": {
|
|
10154
10598
|
"type": "string"
|
|
10599
|
+
},
|
|
10600
|
+
"valueHints": {
|
|
10601
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
10602
|
+
},
|
|
10603
|
+
"confidentiality": {
|
|
10604
|
+
"$ref": "#/definitions/RelationshipAttributeConfidentiality"
|
|
10155
10605
|
}
|
|
10156
10606
|
},
|
|
10157
10607
|
"required": [
|
|
10158
|
-
"
|
|
10159
|
-
"
|
|
10608
|
+
"title",
|
|
10609
|
+
"valueType",
|
|
10610
|
+
"confidentiality"
|
|
10160
10611
|
],
|
|
10161
10612
|
"additionalProperties": false
|
|
10162
10613
|
},
|
|
10614
|
+
"AttributeValues.Relationship.TypeName": {
|
|
10615
|
+
"type": "string",
|
|
10616
|
+
"enum": [
|
|
10617
|
+
"ProprietaryBoolean",
|
|
10618
|
+
"ProprietaryCountry",
|
|
10619
|
+
"ProprietaryEMailAddress",
|
|
10620
|
+
"ProprietaryFileReference",
|
|
10621
|
+
"ProprietaryFloat",
|
|
10622
|
+
"ProprietaryHEXColor",
|
|
10623
|
+
"ProprietaryInteger",
|
|
10624
|
+
"ProprietaryLanguage",
|
|
10625
|
+
"ProprietaryPhoneNumber",
|
|
10626
|
+
"ProprietaryString",
|
|
10627
|
+
"ProprietaryURL",
|
|
10628
|
+
"ProprietaryJSON",
|
|
10629
|
+
"Consent"
|
|
10630
|
+
]
|
|
10631
|
+
},
|
|
10163
10632
|
"ReadAttributeRequestItemJSON": {
|
|
10164
10633
|
"type": "object",
|
|
10165
10634
|
"properties": {
|
|
@@ -10240,7 +10709,10 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
10240
10709
|
"type": "string"
|
|
10241
10710
|
},
|
|
10242
10711
|
"thirdParty": {
|
|
10243
|
-
"type": "
|
|
10712
|
+
"type": "array",
|
|
10713
|
+
"items": {
|
|
10714
|
+
"type": "string"
|
|
10715
|
+
}
|
|
10244
10716
|
}
|
|
10245
10717
|
},
|
|
10246
10718
|
"required": [
|
|
@@ -11219,6 +11691,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11219
11691
|
},
|
|
11220
11692
|
"description": {
|
|
11221
11693
|
"type": "string"
|
|
11694
|
+
},
|
|
11695
|
+
"valueHintsOverride": {
|
|
11696
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11222
11697
|
}
|
|
11223
11698
|
},
|
|
11224
11699
|
"required": [
|
|
@@ -11228,6 +11703,123 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11228
11703
|
],
|
|
11229
11704
|
"additionalProperties": false
|
|
11230
11705
|
},
|
|
11706
|
+
"ValueHintsOverrideJSON": {
|
|
11707
|
+
"type": "object",
|
|
11708
|
+
"additionalProperties": false,
|
|
11709
|
+
"properties": {
|
|
11710
|
+
"@type": {
|
|
11711
|
+
"type": "string",
|
|
11712
|
+
"const": "ValueHints"
|
|
11713
|
+
},
|
|
11714
|
+
"editHelp": {
|
|
11715
|
+
"type": "string"
|
|
11716
|
+
},
|
|
11717
|
+
"min": {
|
|
11718
|
+
"type": "number"
|
|
11719
|
+
},
|
|
11720
|
+
"max": {
|
|
11721
|
+
"type": "number"
|
|
11722
|
+
},
|
|
11723
|
+
"pattern": {
|
|
11724
|
+
"type": "string"
|
|
11725
|
+
},
|
|
11726
|
+
"values": {
|
|
11727
|
+
"type": "array",
|
|
11728
|
+
"items": {
|
|
11729
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
11730
|
+
}
|
|
11731
|
+
},
|
|
11732
|
+
"defaultValue": {
|
|
11733
|
+
"type": [
|
|
11734
|
+
"string",
|
|
11735
|
+
"number",
|
|
11736
|
+
"boolean"
|
|
11737
|
+
]
|
|
11738
|
+
},
|
|
11739
|
+
"propertyHints": {
|
|
11740
|
+
"type": "object",
|
|
11741
|
+
"additionalProperties": {
|
|
11742
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
11743
|
+
}
|
|
11744
|
+
},
|
|
11745
|
+
"@context": {
|
|
11746
|
+
"type": "string"
|
|
11747
|
+
},
|
|
11748
|
+
"@version": {
|
|
11749
|
+
"type": "string"
|
|
11750
|
+
}
|
|
11751
|
+
}
|
|
11752
|
+
},
|
|
11753
|
+
"ValueHintsValueJSON": {
|
|
11754
|
+
"type": "object",
|
|
11755
|
+
"properties": {
|
|
11756
|
+
"key": {
|
|
11757
|
+
"type": [
|
|
11758
|
+
"string",
|
|
11759
|
+
"number",
|
|
11760
|
+
"boolean"
|
|
11761
|
+
]
|
|
11762
|
+
},
|
|
11763
|
+
"displayName": {
|
|
11764
|
+
"type": "string"
|
|
11765
|
+
}
|
|
11766
|
+
},
|
|
11767
|
+
"required": [
|
|
11768
|
+
"key",
|
|
11769
|
+
"displayName"
|
|
11770
|
+
],
|
|
11771
|
+
"additionalProperties": false
|
|
11772
|
+
},
|
|
11773
|
+
"ValueHintsJSON": {
|
|
11774
|
+
"type": "object",
|
|
11775
|
+
"properties": {
|
|
11776
|
+
"@type": {
|
|
11777
|
+
"type": "string",
|
|
11778
|
+
"const": "ValueHints"
|
|
11779
|
+
},
|
|
11780
|
+
"@context": {
|
|
11781
|
+
"type": "string"
|
|
11782
|
+
},
|
|
11783
|
+
"@version": {
|
|
11784
|
+
"type": "string"
|
|
11785
|
+
},
|
|
11786
|
+
"editHelp": {
|
|
11787
|
+
"type": "string"
|
|
11788
|
+
},
|
|
11789
|
+
"min": {
|
|
11790
|
+
"type": "number"
|
|
11791
|
+
},
|
|
11792
|
+
"max": {
|
|
11793
|
+
"type": "number"
|
|
11794
|
+
},
|
|
11795
|
+
"pattern": {
|
|
11796
|
+
"type": "string"
|
|
11797
|
+
},
|
|
11798
|
+
"values": {
|
|
11799
|
+
"type": "array",
|
|
11800
|
+
"items": {
|
|
11801
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
11802
|
+
}
|
|
11803
|
+
},
|
|
11804
|
+
"defaultValue": {
|
|
11805
|
+
"type": [
|
|
11806
|
+
"string",
|
|
11807
|
+
"number",
|
|
11808
|
+
"boolean"
|
|
11809
|
+
]
|
|
11810
|
+
},
|
|
11811
|
+
"propertyHints": {
|
|
11812
|
+
"type": "object",
|
|
11813
|
+
"additionalProperties": {
|
|
11814
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
11815
|
+
}
|
|
11816
|
+
}
|
|
11817
|
+
},
|
|
11818
|
+
"required": [
|
|
11819
|
+
"@type"
|
|
11820
|
+
],
|
|
11821
|
+
"additionalProperties": false
|
|
11822
|
+
},
|
|
11231
11823
|
"ProprietaryCountryJSON": {
|
|
11232
11824
|
"type": "object",
|
|
11233
11825
|
"properties": {
|
|
@@ -11249,6 +11841,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11249
11841
|
},
|
|
11250
11842
|
"description": {
|
|
11251
11843
|
"type": "string"
|
|
11844
|
+
},
|
|
11845
|
+
"valueHintsOverride": {
|
|
11846
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11252
11847
|
}
|
|
11253
11848
|
},
|
|
11254
11849
|
"required": [
|
|
@@ -11279,6 +11874,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11279
11874
|
},
|
|
11280
11875
|
"description": {
|
|
11281
11876
|
"type": "string"
|
|
11877
|
+
},
|
|
11878
|
+
"valueHintsOverride": {
|
|
11879
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11282
11880
|
}
|
|
11283
11881
|
},
|
|
11284
11882
|
"required": [
|
|
@@ -11309,6 +11907,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11309
11907
|
},
|
|
11310
11908
|
"description": {
|
|
11311
11909
|
"type": "string"
|
|
11910
|
+
},
|
|
11911
|
+
"valueHintsOverride": {
|
|
11912
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11312
11913
|
}
|
|
11313
11914
|
},
|
|
11314
11915
|
"required": [
|
|
@@ -11339,6 +11940,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11339
11940
|
},
|
|
11340
11941
|
"description": {
|
|
11341
11942
|
"type": "string"
|
|
11943
|
+
},
|
|
11944
|
+
"valueHintsOverride": {
|
|
11945
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11342
11946
|
}
|
|
11343
11947
|
},
|
|
11344
11948
|
"required": [
|
|
@@ -11369,6 +11973,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11369
11973
|
},
|
|
11370
11974
|
"description": {
|
|
11371
11975
|
"type": "string"
|
|
11976
|
+
},
|
|
11977
|
+
"valueHintsOverride": {
|
|
11978
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11372
11979
|
}
|
|
11373
11980
|
},
|
|
11374
11981
|
"required": [
|
|
@@ -11399,6 +12006,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11399
12006
|
},
|
|
11400
12007
|
"description": {
|
|
11401
12008
|
"type": "string"
|
|
12009
|
+
},
|
|
12010
|
+
"valueHintsOverride": {
|
|
12011
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11402
12012
|
}
|
|
11403
12013
|
},
|
|
11404
12014
|
"required": [
|
|
@@ -11429,6 +12039,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11429
12039
|
},
|
|
11430
12040
|
"description": {
|
|
11431
12041
|
"type": "string"
|
|
12042
|
+
},
|
|
12043
|
+
"valueHintsOverride": {
|
|
12044
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11432
12045
|
}
|
|
11433
12046
|
},
|
|
11434
12047
|
"required": [
|
|
@@ -11459,6 +12072,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11459
12072
|
},
|
|
11460
12073
|
"description": {
|
|
11461
12074
|
"type": "string"
|
|
12075
|
+
},
|
|
12076
|
+
"valueHintsOverride": {
|
|
12077
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11462
12078
|
}
|
|
11463
12079
|
},
|
|
11464
12080
|
"required": [
|
|
@@ -11489,6 +12105,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11489
12105
|
},
|
|
11490
12106
|
"description": {
|
|
11491
12107
|
"type": "string"
|
|
12108
|
+
},
|
|
12109
|
+
"valueHintsOverride": {
|
|
12110
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11492
12111
|
}
|
|
11493
12112
|
},
|
|
11494
12113
|
"required": [
|
|
@@ -11519,6 +12138,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
11519
12138
|
},
|
|
11520
12139
|
"description": {
|
|
11521
12140
|
"type": "string"
|
|
12141
|
+
},
|
|
12142
|
+
"valueHintsOverride": {
|
|
12143
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
11522
12144
|
}
|
|
11523
12145
|
},
|
|
11524
12146
|
"required": [
|
|
@@ -13096,76 +13718,6 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
13096
13718
|
"Consent"
|
|
13097
13719
|
]
|
|
13098
13720
|
},
|
|
13099
|
-
"ValueHintsJSON": {
|
|
13100
|
-
"type": "object",
|
|
13101
|
-
"properties": {
|
|
13102
|
-
"@type": {
|
|
13103
|
-
"type": "string",
|
|
13104
|
-
"const": "ValueHints"
|
|
13105
|
-
},
|
|
13106
|
-
"@context": {
|
|
13107
|
-
"type": "string"
|
|
13108
|
-
},
|
|
13109
|
-
"@version": {
|
|
13110
|
-
"type": "string"
|
|
13111
|
-
},
|
|
13112
|
-
"editHelp": {
|
|
13113
|
-
"type": "string"
|
|
13114
|
-
},
|
|
13115
|
-
"min": {
|
|
13116
|
-
"type": "number"
|
|
13117
|
-
},
|
|
13118
|
-
"max": {
|
|
13119
|
-
"type": "number"
|
|
13120
|
-
},
|
|
13121
|
-
"pattern": {
|
|
13122
|
-
"type": "string"
|
|
13123
|
-
},
|
|
13124
|
-
"values": {
|
|
13125
|
-
"type": "array",
|
|
13126
|
-
"items": {
|
|
13127
|
-
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
13128
|
-
}
|
|
13129
|
-
},
|
|
13130
|
-
"defaultValue": {
|
|
13131
|
-
"type": [
|
|
13132
|
-
"string",
|
|
13133
|
-
"number",
|
|
13134
|
-
"boolean"
|
|
13135
|
-
]
|
|
13136
|
-
},
|
|
13137
|
-
"propertyHints": {
|
|
13138
|
-
"type": "object",
|
|
13139
|
-
"additionalProperties": {
|
|
13140
|
-
"$ref": "#/definitions/ValueHintsJSON"
|
|
13141
|
-
}
|
|
13142
|
-
}
|
|
13143
|
-
},
|
|
13144
|
-
"required": [
|
|
13145
|
-
"@type"
|
|
13146
|
-
],
|
|
13147
|
-
"additionalProperties": false
|
|
13148
|
-
},
|
|
13149
|
-
"ValueHintsValueJSON": {
|
|
13150
|
-
"type": "object",
|
|
13151
|
-
"properties": {
|
|
13152
|
-
"key": {
|
|
13153
|
-
"type": [
|
|
13154
|
-
"string",
|
|
13155
|
-
"number",
|
|
13156
|
-
"boolean"
|
|
13157
|
-
]
|
|
13158
|
-
},
|
|
13159
|
-
"displayName": {
|
|
13160
|
-
"type": "string"
|
|
13161
|
-
}
|
|
13162
|
-
},
|
|
13163
|
-
"required": [
|
|
13164
|
-
"key",
|
|
13165
|
-
"displayName"
|
|
13166
|
-
],
|
|
13167
|
-
"additionalProperties": false
|
|
13168
|
-
},
|
|
13169
13721
|
"ReadAttributeRequestItemJSON": {
|
|
13170
13722
|
"type": "object",
|
|
13171
13723
|
"properties": {
|
|
@@ -13246,7 +13798,10 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
13246
13798
|
"type": "string"
|
|
13247
13799
|
},
|
|
13248
13800
|
"thirdParty": {
|
|
13249
|
-
"type": "
|
|
13801
|
+
"type": "array",
|
|
13802
|
+
"items": {
|
|
13803
|
+
"type": "string"
|
|
13804
|
+
}
|
|
13250
13805
|
}
|
|
13251
13806
|
},
|
|
13252
13807
|
"required": [
|
|
@@ -14849,6 +15404,9 @@ exports.SucceedAttributeRequest = {
|
|
|
14849
15404
|
},
|
|
14850
15405
|
"description": {
|
|
14851
15406
|
"type": "string"
|
|
15407
|
+
},
|
|
15408
|
+
"valueHintsOverride": {
|
|
15409
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
14852
15410
|
}
|
|
14853
15411
|
},
|
|
14854
15412
|
"required": [
|
|
@@ -14858,6 +15416,123 @@ exports.SucceedAttributeRequest = {
|
|
|
14858
15416
|
],
|
|
14859
15417
|
"additionalProperties": false
|
|
14860
15418
|
},
|
|
15419
|
+
"ValueHintsOverrideJSON": {
|
|
15420
|
+
"type": "object",
|
|
15421
|
+
"additionalProperties": false,
|
|
15422
|
+
"properties": {
|
|
15423
|
+
"@type": {
|
|
15424
|
+
"type": "string",
|
|
15425
|
+
"const": "ValueHints"
|
|
15426
|
+
},
|
|
15427
|
+
"editHelp": {
|
|
15428
|
+
"type": "string"
|
|
15429
|
+
},
|
|
15430
|
+
"min": {
|
|
15431
|
+
"type": "number"
|
|
15432
|
+
},
|
|
15433
|
+
"max": {
|
|
15434
|
+
"type": "number"
|
|
15435
|
+
},
|
|
15436
|
+
"pattern": {
|
|
15437
|
+
"type": "string"
|
|
15438
|
+
},
|
|
15439
|
+
"values": {
|
|
15440
|
+
"type": "array",
|
|
15441
|
+
"items": {
|
|
15442
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
15443
|
+
}
|
|
15444
|
+
},
|
|
15445
|
+
"defaultValue": {
|
|
15446
|
+
"type": [
|
|
15447
|
+
"string",
|
|
15448
|
+
"number",
|
|
15449
|
+
"boolean"
|
|
15450
|
+
]
|
|
15451
|
+
},
|
|
15452
|
+
"propertyHints": {
|
|
15453
|
+
"type": "object",
|
|
15454
|
+
"additionalProperties": {
|
|
15455
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
15456
|
+
}
|
|
15457
|
+
},
|
|
15458
|
+
"@context": {
|
|
15459
|
+
"type": "string"
|
|
15460
|
+
},
|
|
15461
|
+
"@version": {
|
|
15462
|
+
"type": "string"
|
|
15463
|
+
}
|
|
15464
|
+
}
|
|
15465
|
+
},
|
|
15466
|
+
"ValueHintsValueJSON": {
|
|
15467
|
+
"type": "object",
|
|
15468
|
+
"properties": {
|
|
15469
|
+
"key": {
|
|
15470
|
+
"type": [
|
|
15471
|
+
"string",
|
|
15472
|
+
"number",
|
|
15473
|
+
"boolean"
|
|
15474
|
+
]
|
|
15475
|
+
},
|
|
15476
|
+
"displayName": {
|
|
15477
|
+
"type": "string"
|
|
15478
|
+
}
|
|
15479
|
+
},
|
|
15480
|
+
"required": [
|
|
15481
|
+
"key",
|
|
15482
|
+
"displayName"
|
|
15483
|
+
],
|
|
15484
|
+
"additionalProperties": false
|
|
15485
|
+
},
|
|
15486
|
+
"ValueHintsJSON": {
|
|
15487
|
+
"type": "object",
|
|
15488
|
+
"properties": {
|
|
15489
|
+
"@type": {
|
|
15490
|
+
"type": "string",
|
|
15491
|
+
"const": "ValueHints"
|
|
15492
|
+
},
|
|
15493
|
+
"@context": {
|
|
15494
|
+
"type": "string"
|
|
15495
|
+
},
|
|
15496
|
+
"@version": {
|
|
15497
|
+
"type": "string"
|
|
15498
|
+
},
|
|
15499
|
+
"editHelp": {
|
|
15500
|
+
"type": "string"
|
|
15501
|
+
},
|
|
15502
|
+
"min": {
|
|
15503
|
+
"type": "number"
|
|
15504
|
+
},
|
|
15505
|
+
"max": {
|
|
15506
|
+
"type": "number"
|
|
15507
|
+
},
|
|
15508
|
+
"pattern": {
|
|
15509
|
+
"type": "string"
|
|
15510
|
+
},
|
|
15511
|
+
"values": {
|
|
15512
|
+
"type": "array",
|
|
15513
|
+
"items": {
|
|
15514
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
15515
|
+
}
|
|
15516
|
+
},
|
|
15517
|
+
"defaultValue": {
|
|
15518
|
+
"type": [
|
|
15519
|
+
"string",
|
|
15520
|
+
"number",
|
|
15521
|
+
"boolean"
|
|
15522
|
+
]
|
|
15523
|
+
},
|
|
15524
|
+
"propertyHints": {
|
|
15525
|
+
"type": "object",
|
|
15526
|
+
"additionalProperties": {
|
|
15527
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
15528
|
+
}
|
|
15529
|
+
}
|
|
15530
|
+
},
|
|
15531
|
+
"required": [
|
|
15532
|
+
"@type"
|
|
15533
|
+
],
|
|
15534
|
+
"additionalProperties": false
|
|
15535
|
+
},
|
|
14861
15536
|
"ProprietaryCountryJSON": {
|
|
14862
15537
|
"type": "object",
|
|
14863
15538
|
"properties": {
|
|
@@ -14879,6 +15554,9 @@ exports.SucceedAttributeRequest = {
|
|
|
14879
15554
|
},
|
|
14880
15555
|
"description": {
|
|
14881
15556
|
"type": "string"
|
|
15557
|
+
},
|
|
15558
|
+
"valueHintsOverride": {
|
|
15559
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
14882
15560
|
}
|
|
14883
15561
|
},
|
|
14884
15562
|
"required": [
|
|
@@ -14909,6 +15587,9 @@ exports.SucceedAttributeRequest = {
|
|
|
14909
15587
|
},
|
|
14910
15588
|
"description": {
|
|
14911
15589
|
"type": "string"
|
|
15590
|
+
},
|
|
15591
|
+
"valueHintsOverride": {
|
|
15592
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
14912
15593
|
}
|
|
14913
15594
|
},
|
|
14914
15595
|
"required": [
|
|
@@ -14939,6 +15620,9 @@ exports.SucceedAttributeRequest = {
|
|
|
14939
15620
|
},
|
|
14940
15621
|
"description": {
|
|
14941
15622
|
"type": "string"
|
|
15623
|
+
},
|
|
15624
|
+
"valueHintsOverride": {
|
|
15625
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
14942
15626
|
}
|
|
14943
15627
|
},
|
|
14944
15628
|
"required": [
|
|
@@ -14969,6 +15653,9 @@ exports.SucceedAttributeRequest = {
|
|
|
14969
15653
|
},
|
|
14970
15654
|
"description": {
|
|
14971
15655
|
"type": "string"
|
|
15656
|
+
},
|
|
15657
|
+
"valueHintsOverride": {
|
|
15658
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
14972
15659
|
}
|
|
14973
15660
|
},
|
|
14974
15661
|
"required": [
|
|
@@ -14999,6 +15686,9 @@ exports.SucceedAttributeRequest = {
|
|
|
14999
15686
|
},
|
|
15000
15687
|
"description": {
|
|
15001
15688
|
"type": "string"
|
|
15689
|
+
},
|
|
15690
|
+
"valueHintsOverride": {
|
|
15691
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
15002
15692
|
}
|
|
15003
15693
|
},
|
|
15004
15694
|
"required": [
|
|
@@ -15029,6 +15719,9 @@ exports.SucceedAttributeRequest = {
|
|
|
15029
15719
|
},
|
|
15030
15720
|
"description": {
|
|
15031
15721
|
"type": "string"
|
|
15722
|
+
},
|
|
15723
|
+
"valueHintsOverride": {
|
|
15724
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
15032
15725
|
}
|
|
15033
15726
|
},
|
|
15034
15727
|
"required": [
|
|
@@ -15059,6 +15752,9 @@ exports.SucceedAttributeRequest = {
|
|
|
15059
15752
|
},
|
|
15060
15753
|
"description": {
|
|
15061
15754
|
"type": "string"
|
|
15755
|
+
},
|
|
15756
|
+
"valueHintsOverride": {
|
|
15757
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
15062
15758
|
}
|
|
15063
15759
|
},
|
|
15064
15760
|
"required": [
|
|
@@ -15089,6 +15785,9 @@ exports.SucceedAttributeRequest = {
|
|
|
15089
15785
|
},
|
|
15090
15786
|
"description": {
|
|
15091
15787
|
"type": "string"
|
|
15788
|
+
},
|
|
15789
|
+
"valueHintsOverride": {
|
|
15790
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
15092
15791
|
}
|
|
15093
15792
|
},
|
|
15094
15793
|
"required": [
|
|
@@ -15119,6 +15818,9 @@ exports.SucceedAttributeRequest = {
|
|
|
15119
15818
|
},
|
|
15120
15819
|
"description": {
|
|
15121
15820
|
"type": "string"
|
|
15821
|
+
},
|
|
15822
|
+
"valueHintsOverride": {
|
|
15823
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
15122
15824
|
}
|
|
15123
15825
|
},
|
|
15124
15826
|
"required": [
|
|
@@ -15149,6 +15851,9 @@ exports.SucceedAttributeRequest = {
|
|
|
15149
15851
|
},
|
|
15150
15852
|
"description": {
|
|
15151
15853
|
"type": "string"
|
|
15854
|
+
},
|
|
15855
|
+
"valueHintsOverride": {
|
|
15856
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
15152
15857
|
}
|
|
15153
15858
|
},
|
|
15154
15859
|
"required": [
|
|
@@ -16578,6 +17283,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16578
17283
|
},
|
|
16579
17284
|
"description": {
|
|
16580
17285
|
"type": "string"
|
|
17286
|
+
},
|
|
17287
|
+
"valueHintsOverride": {
|
|
17288
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16581
17289
|
}
|
|
16582
17290
|
},
|
|
16583
17291
|
"required": [
|
|
@@ -16587,6 +17295,123 @@ exports.UpdateAttributeRequest = {
|
|
|
16587
17295
|
],
|
|
16588
17296
|
"additionalProperties": false
|
|
16589
17297
|
},
|
|
17298
|
+
"ValueHintsOverrideJSON": {
|
|
17299
|
+
"type": "object",
|
|
17300
|
+
"additionalProperties": false,
|
|
17301
|
+
"properties": {
|
|
17302
|
+
"@type": {
|
|
17303
|
+
"type": "string",
|
|
17304
|
+
"const": "ValueHints"
|
|
17305
|
+
},
|
|
17306
|
+
"editHelp": {
|
|
17307
|
+
"type": "string"
|
|
17308
|
+
},
|
|
17309
|
+
"min": {
|
|
17310
|
+
"type": "number"
|
|
17311
|
+
},
|
|
17312
|
+
"max": {
|
|
17313
|
+
"type": "number"
|
|
17314
|
+
},
|
|
17315
|
+
"pattern": {
|
|
17316
|
+
"type": "string"
|
|
17317
|
+
},
|
|
17318
|
+
"values": {
|
|
17319
|
+
"type": "array",
|
|
17320
|
+
"items": {
|
|
17321
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
17322
|
+
}
|
|
17323
|
+
},
|
|
17324
|
+
"defaultValue": {
|
|
17325
|
+
"type": [
|
|
17326
|
+
"string",
|
|
17327
|
+
"number",
|
|
17328
|
+
"boolean"
|
|
17329
|
+
]
|
|
17330
|
+
},
|
|
17331
|
+
"propertyHints": {
|
|
17332
|
+
"type": "object",
|
|
17333
|
+
"additionalProperties": {
|
|
17334
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
17335
|
+
}
|
|
17336
|
+
},
|
|
17337
|
+
"@context": {
|
|
17338
|
+
"type": "string"
|
|
17339
|
+
},
|
|
17340
|
+
"@version": {
|
|
17341
|
+
"type": "string"
|
|
17342
|
+
}
|
|
17343
|
+
}
|
|
17344
|
+
},
|
|
17345
|
+
"ValueHintsValueJSON": {
|
|
17346
|
+
"type": "object",
|
|
17347
|
+
"properties": {
|
|
17348
|
+
"key": {
|
|
17349
|
+
"type": [
|
|
17350
|
+
"string",
|
|
17351
|
+
"number",
|
|
17352
|
+
"boolean"
|
|
17353
|
+
]
|
|
17354
|
+
},
|
|
17355
|
+
"displayName": {
|
|
17356
|
+
"type": "string"
|
|
17357
|
+
}
|
|
17358
|
+
},
|
|
17359
|
+
"required": [
|
|
17360
|
+
"key",
|
|
17361
|
+
"displayName"
|
|
17362
|
+
],
|
|
17363
|
+
"additionalProperties": false
|
|
17364
|
+
},
|
|
17365
|
+
"ValueHintsJSON": {
|
|
17366
|
+
"type": "object",
|
|
17367
|
+
"properties": {
|
|
17368
|
+
"@type": {
|
|
17369
|
+
"type": "string",
|
|
17370
|
+
"const": "ValueHints"
|
|
17371
|
+
},
|
|
17372
|
+
"@context": {
|
|
17373
|
+
"type": "string"
|
|
17374
|
+
},
|
|
17375
|
+
"@version": {
|
|
17376
|
+
"type": "string"
|
|
17377
|
+
},
|
|
17378
|
+
"editHelp": {
|
|
17379
|
+
"type": "string"
|
|
17380
|
+
},
|
|
17381
|
+
"min": {
|
|
17382
|
+
"type": "number"
|
|
17383
|
+
},
|
|
17384
|
+
"max": {
|
|
17385
|
+
"type": "number"
|
|
17386
|
+
},
|
|
17387
|
+
"pattern": {
|
|
17388
|
+
"type": "string"
|
|
17389
|
+
},
|
|
17390
|
+
"values": {
|
|
17391
|
+
"type": "array",
|
|
17392
|
+
"items": {
|
|
17393
|
+
"$ref": "#/definitions/ValueHintsValueJSON"
|
|
17394
|
+
}
|
|
17395
|
+
},
|
|
17396
|
+
"defaultValue": {
|
|
17397
|
+
"type": [
|
|
17398
|
+
"string",
|
|
17399
|
+
"number",
|
|
17400
|
+
"boolean"
|
|
17401
|
+
]
|
|
17402
|
+
},
|
|
17403
|
+
"propertyHints": {
|
|
17404
|
+
"type": "object",
|
|
17405
|
+
"additionalProperties": {
|
|
17406
|
+
"$ref": "#/definitions/ValueHintsJSON"
|
|
17407
|
+
}
|
|
17408
|
+
}
|
|
17409
|
+
},
|
|
17410
|
+
"required": [
|
|
17411
|
+
"@type"
|
|
17412
|
+
],
|
|
17413
|
+
"additionalProperties": false
|
|
17414
|
+
},
|
|
16590
17415
|
"ProprietaryCountryJSON": {
|
|
16591
17416
|
"type": "object",
|
|
16592
17417
|
"properties": {
|
|
@@ -16608,6 +17433,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16608
17433
|
},
|
|
16609
17434
|
"description": {
|
|
16610
17435
|
"type": "string"
|
|
17436
|
+
},
|
|
17437
|
+
"valueHintsOverride": {
|
|
17438
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16611
17439
|
}
|
|
16612
17440
|
},
|
|
16613
17441
|
"required": [
|
|
@@ -16638,6 +17466,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16638
17466
|
},
|
|
16639
17467
|
"description": {
|
|
16640
17468
|
"type": "string"
|
|
17469
|
+
},
|
|
17470
|
+
"valueHintsOverride": {
|
|
17471
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16641
17472
|
}
|
|
16642
17473
|
},
|
|
16643
17474
|
"required": [
|
|
@@ -16668,6 +17499,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16668
17499
|
},
|
|
16669
17500
|
"description": {
|
|
16670
17501
|
"type": "string"
|
|
17502
|
+
},
|
|
17503
|
+
"valueHintsOverride": {
|
|
17504
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16671
17505
|
}
|
|
16672
17506
|
},
|
|
16673
17507
|
"required": [
|
|
@@ -16698,6 +17532,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16698
17532
|
},
|
|
16699
17533
|
"description": {
|
|
16700
17534
|
"type": "string"
|
|
17535
|
+
},
|
|
17536
|
+
"valueHintsOverride": {
|
|
17537
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16701
17538
|
}
|
|
16702
17539
|
},
|
|
16703
17540
|
"required": [
|
|
@@ -16728,6 +17565,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16728
17565
|
},
|
|
16729
17566
|
"description": {
|
|
16730
17567
|
"type": "string"
|
|
17568
|
+
},
|
|
17569
|
+
"valueHintsOverride": {
|
|
17570
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16731
17571
|
}
|
|
16732
17572
|
},
|
|
16733
17573
|
"required": [
|
|
@@ -16758,6 +17598,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16758
17598
|
},
|
|
16759
17599
|
"description": {
|
|
16760
17600
|
"type": "string"
|
|
17601
|
+
},
|
|
17602
|
+
"valueHintsOverride": {
|
|
17603
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16761
17604
|
}
|
|
16762
17605
|
},
|
|
16763
17606
|
"required": [
|
|
@@ -16788,6 +17631,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16788
17631
|
},
|
|
16789
17632
|
"description": {
|
|
16790
17633
|
"type": "string"
|
|
17634
|
+
},
|
|
17635
|
+
"valueHintsOverride": {
|
|
17636
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16791
17637
|
}
|
|
16792
17638
|
},
|
|
16793
17639
|
"required": [
|
|
@@ -16818,6 +17664,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16818
17664
|
},
|
|
16819
17665
|
"description": {
|
|
16820
17666
|
"type": "string"
|
|
17667
|
+
},
|
|
17668
|
+
"valueHintsOverride": {
|
|
17669
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16821
17670
|
}
|
|
16822
17671
|
},
|
|
16823
17672
|
"required": [
|
|
@@ -16848,6 +17697,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16848
17697
|
},
|
|
16849
17698
|
"description": {
|
|
16850
17699
|
"type": "string"
|
|
17700
|
+
},
|
|
17701
|
+
"valueHintsOverride": {
|
|
17702
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16851
17703
|
}
|
|
16852
17704
|
},
|
|
16853
17705
|
"required": [
|
|
@@ -16878,6 +17730,9 @@ exports.UpdateAttributeRequest = {
|
|
|
16878
17730
|
},
|
|
16879
17731
|
"description": {
|
|
16880
17732
|
"type": "string"
|
|
17733
|
+
},
|
|
17734
|
+
"valueHintsOverride": {
|
|
17735
|
+
"$ref": "#/definitions/ValueHintsOverrideJSON"
|
|
16881
17736
|
}
|
|
16882
17737
|
},
|
|
16883
17738
|
"required": [
|