@pdtf/schemas 3.6.0-dev.15 → 3.6.0-dev.17
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/index.js +191 -0
- package/package.json +1 -1
- package/src/schemas/v3/combined.json +130 -323
- package/src/schemas/v3/compactSkeleton.txt +10 -51
- package/src/schemas/v3/overlays/baspi4.json +9 -0
- package/src/schemas/v3/overlays/baspi5.json +9 -0
- package/src/schemas/v3/overlays/piq.json +9 -0
- package/src/schemas/v3/overlays/ta6ed6.json +55 -129
- package/src/schemas/v3/overlays/ta6ed6v2.json +55 -129
- package/src/schemas/v3/pdtf-transaction.json +124 -289
- package/src/schemas/v3/skeleton.json +17 -53
|
@@ -45,6 +45,32 @@
|
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
+
"metadata": {
|
|
49
|
+
"title": "Metadata",
|
|
50
|
+
"description": "Flexible container for vendor-specific metadata items relating to the transaction. Keys are vendor-defined; values may be strings, numbers, booleans or nested objects.",
|
|
51
|
+
"type": "object",
|
|
52
|
+
"patternProperties": {
|
|
53
|
+
".*": {
|
|
54
|
+
"oneOf": [
|
|
55
|
+
{
|
|
56
|
+
"type": "string"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"type": "number"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"type": "boolean"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"type": "object",
|
|
66
|
+
"patternProperties": {
|
|
67
|
+
".*": {}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
},
|
|
48
74
|
"status": {
|
|
49
75
|
"type": "string",
|
|
50
76
|
"enum": [
|
|
@@ -204,6 +230,7 @@
|
|
|
204
230
|
"Prospective Buyer",
|
|
205
231
|
"Buyer",
|
|
206
232
|
"Buyer's Conveyancer",
|
|
233
|
+
"Gift Donor",
|
|
207
234
|
"Estate Agent",
|
|
208
235
|
"Buyer's Agent",
|
|
209
236
|
"Surveyor",
|
|
@@ -585,6 +612,58 @@
|
|
|
585
612
|
"sellersCapacity",
|
|
586
613
|
"dateBecameOwnerOrAuthority"
|
|
587
614
|
]
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"properties": {
|
|
618
|
+
"role": {
|
|
619
|
+
"enum": ["Gift Donor"]
|
|
620
|
+
},
|
|
621
|
+
"offerId": {
|
|
622
|
+
"title": "Reference to an offer in the offers object",
|
|
623
|
+
"type": "string",
|
|
624
|
+
"pattern": "^[A-Za-z0-9][A-Za-z0-9._:+-]*$"
|
|
625
|
+
},
|
|
626
|
+
"giftDetails": {
|
|
627
|
+
"title": "Details of the gift being made towards the purchase",
|
|
628
|
+
"description": "The terms on which a gift donor is contributing funds. These are the questions a conveyancer must resolve before reporting to a lender: whether the money is truly a gift rather than a loan, and whether the donor acquires any interest in or occupation of the property.",
|
|
629
|
+
"type": "object",
|
|
630
|
+
"properties": {
|
|
631
|
+
"amount": {
|
|
632
|
+
"title": "Amount being gifted",
|
|
633
|
+
"type": "number",
|
|
634
|
+
"minimum": 0
|
|
635
|
+
},
|
|
636
|
+
"currency": {
|
|
637
|
+
"title": "Currency of the gift",
|
|
638
|
+
"type": "string",
|
|
639
|
+
"default": "GBP"
|
|
640
|
+
},
|
|
641
|
+
"relationshipToBuyer": {
|
|
642
|
+
"title": "Donor's relationship to the buyer",
|
|
643
|
+
"type": "string"
|
|
644
|
+
},
|
|
645
|
+
"fundsTransferred": {
|
|
646
|
+
"title": "Whether the gift has been paid to the buyer yet",
|
|
647
|
+
"type": "string",
|
|
648
|
+
"enum": ["None", "Part", "All"]
|
|
649
|
+
},
|
|
650
|
+
"repayable": {
|
|
651
|
+
"title": "Whether the buyer must repay the money",
|
|
652
|
+
"description": "If true the funds are a loan rather than a gift, which most lenders treat differently.",
|
|
653
|
+
"type": "boolean"
|
|
654
|
+
},
|
|
655
|
+
"confersBeneficialInterest": {
|
|
656
|
+
"title": "Whether the donor acquires an interest in the property",
|
|
657
|
+
"type": "boolean"
|
|
658
|
+
},
|
|
659
|
+
"willOccupyProperty": {
|
|
660
|
+
"title": "Whether the donor will live in the property after completion",
|
|
661
|
+
"description": "An adult occupier who is not a legal owner may be required to sign a deed of consent or waiver of rights.",
|
|
662
|
+
"type": "boolean"
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
}
|
|
588
667
|
}
|
|
589
668
|
]
|
|
590
669
|
}
|
|
@@ -1351,11 +1430,6 @@
|
|
|
1351
1430
|
"type": "string",
|
|
1352
1431
|
"title": "Is the property located in a building which includes commercial property E.g. shops, offices etc?",
|
|
1353
1432
|
"enum": ["Yes", "No"]
|
|
1354
|
-
},
|
|
1355
|
-
"detailsAnalysis": {
|
|
1356
|
-
"type": "object",
|
|
1357
|
-
"additionalProperties": true,
|
|
1358
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
1359
1433
|
}
|
|
1360
1434
|
},
|
|
1361
1435
|
"required": ["isLocatedOverCommercialPremises"],
|
|
@@ -7887,11 +7961,6 @@
|
|
|
7887
7961
|
"type": "string",
|
|
7888
7962
|
"title": "",
|
|
7889
7963
|
"enum": ["Yes", "No"]
|
|
7890
|
-
},
|
|
7891
|
-
"detailsAnalysis": {
|
|
7892
|
-
"type": "object",
|
|
7893
|
-
"additionalProperties": true,
|
|
7894
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
7895
7964
|
}
|
|
7896
7965
|
},
|
|
7897
7966
|
"lpe1Required": ["yesNo"],
|
|
@@ -7993,11 +8062,6 @@
|
|
|
7993
8062
|
"type": "string",
|
|
7994
8063
|
"title": "",
|
|
7995
8064
|
"enum": ["Yes", "No"]
|
|
7996
|
-
},
|
|
7997
|
-
"detailsAnalysis": {
|
|
7998
|
-
"type": "object",
|
|
7999
|
-
"additionalProperties": true,
|
|
8000
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
8001
8065
|
}
|
|
8002
8066
|
},
|
|
8003
8067
|
"lpe1Required": ["yesNo"],
|
|
@@ -8156,11 +8220,6 @@
|
|
|
8156
8220
|
"Anticipated",
|
|
8157
8221
|
"Not applicable"
|
|
8158
8222
|
]
|
|
8159
|
-
},
|
|
8160
|
-
"detailsAnalysis": {
|
|
8161
|
-
"type": "object",
|
|
8162
|
-
"additionalProperties": true,
|
|
8163
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
8164
8223
|
}
|
|
8165
8224
|
},
|
|
8166
8225
|
"lpe1Required": ["yesNo"],
|
|
@@ -8204,11 +8263,6 @@
|
|
|
8204
8263
|
"type": "string",
|
|
8205
8264
|
"title": "",
|
|
8206
8265
|
"enum": ["Yes", "No"]
|
|
8207
|
-
},
|
|
8208
|
-
"detailsAnalysis": {
|
|
8209
|
-
"type": "object",
|
|
8210
|
-
"additionalProperties": true,
|
|
8211
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
8212
8266
|
}
|
|
8213
8267
|
},
|
|
8214
8268
|
"lpe1Required": ["yesNo"],
|
|
@@ -9131,11 +9185,6 @@
|
|
|
9131
9185
|
"type": "string",
|
|
9132
9186
|
"title": "",
|
|
9133
9187
|
"enum": ["Yes", "No"]
|
|
9134
|
-
},
|
|
9135
|
-
"detailsAnalysis": {
|
|
9136
|
-
"type": "object",
|
|
9137
|
-
"additionalProperties": true,
|
|
9138
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
9139
9188
|
}
|
|
9140
9189
|
},
|
|
9141
9190
|
"lpe1Required": ["yesNo"],
|
|
@@ -9175,11 +9224,6 @@
|
|
|
9175
9224
|
"type": "string",
|
|
9176
9225
|
"title": "",
|
|
9177
9226
|
"enum": ["Yes", "No"]
|
|
9178
|
-
},
|
|
9179
|
-
"detailsAnalysis": {
|
|
9180
|
-
"type": "object",
|
|
9181
|
-
"additionalProperties": true,
|
|
9182
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
9183
9227
|
}
|
|
9184
9228
|
},
|
|
9185
9229
|
"lpe1Required": ["yesNo"],
|
|
@@ -9396,11 +9440,6 @@
|
|
|
9396
9440
|
"type": "string",
|
|
9397
9441
|
"title": "",
|
|
9398
9442
|
"enum": ["Yes", "No"]
|
|
9399
|
-
},
|
|
9400
|
-
"detailsAnalysis": {
|
|
9401
|
-
"type": "object",
|
|
9402
|
-
"additionalProperties": true,
|
|
9403
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
9404
9443
|
}
|
|
9405
9444
|
},
|
|
9406
9445
|
"lpe1Required": ["yesNo"],
|
|
@@ -10930,11 +10969,6 @@
|
|
|
10930
10969
|
"nts2Enum": ["Yes", "No"],
|
|
10931
10970
|
"ntslEnum": ["Yes", "No"],
|
|
10932
10971
|
"ntsl2Enum": ["Yes", "No"]
|
|
10933
|
-
},
|
|
10934
|
-
"detailsAnalysis": {
|
|
10935
|
-
"type": "object",
|
|
10936
|
-
"additionalProperties": true,
|
|
10937
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
10938
10972
|
}
|
|
10939
10973
|
},
|
|
10940
10974
|
"baspi4Required": ["yesNo"],
|
|
@@ -11173,11 +11207,6 @@
|
|
|
11173
11207
|
"type": "string",
|
|
11174
11208
|
"title": "",
|
|
11175
11209
|
"enum": ["Yes", "No", "Not known"]
|
|
11176
|
-
},
|
|
11177
|
-
"detailsAnalysis": {
|
|
11178
|
-
"type": "object",
|
|
11179
|
-
"additionalProperties": true,
|
|
11180
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
11181
11210
|
}
|
|
11182
11211
|
},
|
|
11183
11212
|
"baspi4Required": ["yesNo"],
|
|
@@ -11321,11 +11350,6 @@
|
|
|
11321
11350
|
"type": "string",
|
|
11322
11351
|
"title": "",
|
|
11323
11352
|
"enum": ["Yes", "No"]
|
|
11324
|
-
},
|
|
11325
|
-
"detailsAnalysis": {
|
|
11326
|
-
"type": "object",
|
|
11327
|
-
"additionalProperties": true,
|
|
11328
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
11329
11353
|
}
|
|
11330
11354
|
},
|
|
11331
11355
|
"baspi4Required": ["yesNo"],
|
|
@@ -11421,11 +11445,6 @@
|
|
|
11421
11445
|
"nts2Enum": ["Yes", "No"],
|
|
11422
11446
|
"ntslEnum": ["Yes", "No"],
|
|
11423
11447
|
"ntsl2Enum": ["Yes", "No"]
|
|
11424
|
-
},
|
|
11425
|
-
"detailsAnalysis": {
|
|
11426
|
-
"type": "object",
|
|
11427
|
-
"additionalProperties": true,
|
|
11428
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
11429
11448
|
}
|
|
11430
11449
|
},
|
|
11431
11450
|
"ntsRequired": ["yesNo"],
|
|
@@ -11563,11 +11582,6 @@
|
|
|
11563
11582
|
"type": "string",
|
|
11564
11583
|
"title": "",
|
|
11565
11584
|
"enum": ["Yes", "No"]
|
|
11566
|
-
},
|
|
11567
|
-
"detailsAnalysis": {
|
|
11568
|
-
"type": "object",
|
|
11569
|
-
"additionalProperties": true,
|
|
11570
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
11571
11585
|
}
|
|
11572
11586
|
},
|
|
11573
11587
|
"discriminator": {
|
|
@@ -11629,11 +11643,6 @@
|
|
|
11629
11643
|
"type": "string",
|
|
11630
11644
|
"title": "",
|
|
11631
11645
|
"enum": ["Yes", "No"]
|
|
11632
|
-
},
|
|
11633
|
-
"detailsAnalysis": {
|
|
11634
|
-
"type": "object",
|
|
11635
|
-
"additionalProperties": true,
|
|
11636
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
11637
11646
|
}
|
|
11638
11647
|
},
|
|
11639
11648
|
"baspi4Required": ["hasSprayFoamInstalled"],
|
|
@@ -12370,11 +12379,6 @@
|
|
|
12370
12379
|
"type": "string",
|
|
12371
12380
|
"title": "",
|
|
12372
12381
|
"enum": ["Yes", "No"]
|
|
12373
|
-
},
|
|
12374
|
-
"detailsAnalysis": {
|
|
12375
|
-
"type": "object",
|
|
12376
|
-
"additionalProperties": true,
|
|
12377
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
12378
12382
|
}
|
|
12379
12383
|
},
|
|
12380
12384
|
"baspi4Required": ["yesNo"],
|
|
@@ -12441,11 +12445,6 @@
|
|
|
12441
12445
|
"type": "string",
|
|
12442
12446
|
"title": "",
|
|
12443
12447
|
"enum": ["Yes", "No"]
|
|
12444
|
-
},
|
|
12445
|
-
"detailsAnalysis": {
|
|
12446
|
-
"type": "object",
|
|
12447
|
-
"additionalProperties": true,
|
|
12448
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
12449
12448
|
}
|
|
12450
12449
|
},
|
|
12451
12450
|
"baspi4Required": ["yesNo"],
|
|
@@ -12579,11 +12578,6 @@
|
|
|
12579
12578
|
"type": "string",
|
|
12580
12579
|
"title": "",
|
|
12581
12580
|
"enum": ["Yes", "No"]
|
|
12582
|
-
},
|
|
12583
|
-
"detailsAnalysis": {
|
|
12584
|
-
"type": "object",
|
|
12585
|
-
"additionalProperties": true,
|
|
12586
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
12587
12581
|
}
|
|
12588
12582
|
},
|
|
12589
12583
|
"baspi4Required": ["yesNo"],
|
|
@@ -12708,11 +12702,6 @@
|
|
|
12708
12702
|
"type": "string",
|
|
12709
12703
|
"title": "",
|
|
12710
12704
|
"enum": ["Yes", "No", "Not required"]
|
|
12711
|
-
},
|
|
12712
|
-
"detailsAnalysis": {
|
|
12713
|
-
"type": "object",
|
|
12714
|
-
"additionalProperties": true,
|
|
12715
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
12716
12705
|
}
|
|
12717
12706
|
},
|
|
12718
12707
|
"baspi4Required": ["yesNo"],
|
|
@@ -12776,11 +12765,6 @@
|
|
|
12776
12765
|
"type": "string",
|
|
12777
12766
|
"title": "",
|
|
12778
12767
|
"enum": ["Yes", "No", "Not required"]
|
|
12779
|
-
},
|
|
12780
|
-
"detailsAnalysis": {
|
|
12781
|
-
"type": "object",
|
|
12782
|
-
"additionalProperties": true,
|
|
12783
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
12784
12768
|
}
|
|
12785
12769
|
},
|
|
12786
12770
|
"baspi4Required": ["yesNo"],
|
|
@@ -12977,11 +12961,6 @@
|
|
|
12977
12961
|
"type": "string",
|
|
12978
12962
|
"title": "",
|
|
12979
12963
|
"enum": ["Yes", "No"]
|
|
12980
|
-
},
|
|
12981
|
-
"detailsAnalysis": {
|
|
12982
|
-
"type": "object",
|
|
12983
|
-
"additionalProperties": true,
|
|
12984
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
12985
12964
|
}
|
|
12986
12965
|
},
|
|
12987
12966
|
"baspi4Required": ["yesNo"],
|
|
@@ -13036,11 +13015,6 @@
|
|
|
13036
13015
|
"type": "string",
|
|
13037
13016
|
"title": "",
|
|
13038
13017
|
"enum": ["Yes", "No", "Not required"]
|
|
13039
|
-
},
|
|
13040
|
-
"detailsAnalysis": {
|
|
13041
|
-
"type": "object",
|
|
13042
|
-
"additionalProperties": true,
|
|
13043
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
13044
13018
|
}
|
|
13045
13019
|
},
|
|
13046
13020
|
"baspi4Required": ["yesNo"],
|
|
@@ -13367,11 +13341,6 @@
|
|
|
13367
13341
|
"type": "string",
|
|
13368
13342
|
"title": "",
|
|
13369
13343
|
"enum": ["Yes", "No"]
|
|
13370
|
-
},
|
|
13371
|
-
"detailsAnalysis": {
|
|
13372
|
-
"type": "object",
|
|
13373
|
-
"additionalProperties": true,
|
|
13374
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
13375
13344
|
}
|
|
13376
13345
|
},
|
|
13377
13346
|
"baspi4Required": ["yesNo"],
|
|
@@ -13429,11 +13398,6 @@
|
|
|
13429
13398
|
"type": "string",
|
|
13430
13399
|
"title": "",
|
|
13431
13400
|
"enum": ["Yes", "No", "Not required"]
|
|
13432
|
-
},
|
|
13433
|
-
"detailsAnalysis": {
|
|
13434
|
-
"type": "object",
|
|
13435
|
-
"additionalProperties": true,
|
|
13436
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
13437
13401
|
}
|
|
13438
13402
|
},
|
|
13439
13403
|
"baspi4Required": ["yesNo"],
|
|
@@ -13956,11 +13920,6 @@
|
|
|
13956
13920
|
"type": "string",
|
|
13957
13921
|
"title": "",
|
|
13958
13922
|
"enum": ["Yes", "No"]
|
|
13959
|
-
},
|
|
13960
|
-
"detailsAnalysis": {
|
|
13961
|
-
"type": "object",
|
|
13962
|
-
"additionalProperties": true,
|
|
13963
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
13964
13923
|
}
|
|
13965
13924
|
},
|
|
13966
13925
|
"baspi4Required": ["yesNo"],
|
|
@@ -14020,11 +13979,6 @@
|
|
|
14020
13979
|
"type": "string",
|
|
14021
13980
|
"title": "",
|
|
14022
13981
|
"enum": ["Yes", "No", "Not required"]
|
|
14023
|
-
},
|
|
14024
|
-
"detailsAnalysis": {
|
|
14025
|
-
"type": "object",
|
|
14026
|
-
"additionalProperties": true,
|
|
14027
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
14028
13982
|
}
|
|
14029
13983
|
},
|
|
14030
13984
|
"baspi4Required": ["yesNo"],
|
|
@@ -15482,11 +15436,6 @@
|
|
|
15482
15436
|
"type": "string",
|
|
15483
15437
|
"title": "",
|
|
15484
15438
|
"enum": ["Yes", "No"]
|
|
15485
|
-
},
|
|
15486
|
-
"detailsAnalysis": {
|
|
15487
|
-
"type": "object",
|
|
15488
|
-
"additionalProperties": true,
|
|
15489
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
15490
15439
|
}
|
|
15491
15440
|
},
|
|
15492
15441
|
"baspi4Required": ["yesNo"],
|
|
@@ -15554,11 +15503,6 @@
|
|
|
15554
15503
|
"type": "string",
|
|
15555
15504
|
"title": "",
|
|
15556
15505
|
"enum": ["Yes", "No"]
|
|
15557
|
-
},
|
|
15558
|
-
"detailsAnalysis": {
|
|
15559
|
-
"type": "object",
|
|
15560
|
-
"additionalProperties": true,
|
|
15561
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
15562
15506
|
}
|
|
15563
15507
|
},
|
|
15564
15508
|
"baspi4Required": ["yesNo"],
|
|
@@ -15649,11 +15593,6 @@
|
|
|
15649
15593
|
"type": "string",
|
|
15650
15594
|
"title": "",
|
|
15651
15595
|
"enum": ["Yes", "No"]
|
|
15652
|
-
},
|
|
15653
|
-
"detailsAnalysis": {
|
|
15654
|
-
"type": "object",
|
|
15655
|
-
"additionalProperties": true,
|
|
15656
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
15657
15596
|
}
|
|
15658
15597
|
},
|
|
15659
15598
|
"baspi4Required": ["yesNo"],
|
|
@@ -16168,11 +16107,6 @@
|
|
|
16168
16107
|
"type": "string",
|
|
16169
16108
|
"title": "",
|
|
16170
16109
|
"enum": ["Yes", "No"]
|
|
16171
|
-
},
|
|
16172
|
-
"detailsAnalysis": {
|
|
16173
|
-
"type": "object",
|
|
16174
|
-
"additionalProperties": true,
|
|
16175
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
16176
16110
|
}
|
|
16177
16111
|
},
|
|
16178
16112
|
"baspi4Required": ["yesNo"],
|
|
@@ -16212,6 +16146,8 @@
|
|
|
16212
16146
|
"baspi4Ref": "A4.6.3",
|
|
16213
16147
|
"baspi5Ref": "A4.6.3",
|
|
16214
16148
|
"ta6Ref": "1.6.3",
|
|
16149
|
+
"ta6ed6Ref": "2.5.3",
|
|
16150
|
+
"ta6ed6v2Ref": "2.5.3",
|
|
16215
16151
|
"title": "Attachments",
|
|
16216
16152
|
"type": "string",
|
|
16217
16153
|
"enum": ["Attached", "To follow"]
|
|
@@ -16659,11 +16595,6 @@
|
|
|
16659
16595
|
"type": "string",
|
|
16660
16596
|
"title": "",
|
|
16661
16597
|
"enum": ["Yes", "No"]
|
|
16662
|
-
},
|
|
16663
|
-
"detailsAnalysis": {
|
|
16664
|
-
"type": "object",
|
|
16665
|
-
"additionalProperties": true,
|
|
16666
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
16667
16598
|
}
|
|
16668
16599
|
},
|
|
16669
16600
|
"baspi4Required": ["yesNo"],
|
|
@@ -22267,11 +22198,6 @@
|
|
|
22267
22198
|
"type": "string",
|
|
22268
22199
|
"title": "",
|
|
22269
22200
|
"enum": ["Yes", "No"]
|
|
22270
|
-
},
|
|
22271
|
-
"detailsAnalysis": {
|
|
22272
|
-
"type": "object",
|
|
22273
|
-
"additionalProperties": true,
|
|
22274
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
22275
22201
|
}
|
|
22276
22202
|
},
|
|
22277
22203
|
"baspi4Required": ["yesNo"],
|
|
@@ -22378,11 +22304,6 @@
|
|
|
22378
22304
|
"type": "string",
|
|
22379
22305
|
"title": "",
|
|
22380
22306
|
"enum": ["Yes", "No"]
|
|
22381
|
-
},
|
|
22382
|
-
"detailsAnalysis": {
|
|
22383
|
-
"type": "object",
|
|
22384
|
-
"additionalProperties": true,
|
|
22385
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
22386
22307
|
}
|
|
22387
22308
|
},
|
|
22388
22309
|
"baspi4Required": ["yesNo"],
|
|
@@ -25094,11 +25015,6 @@
|
|
|
25094
25015
|
"Room heaters only",
|
|
25095
25016
|
"None"
|
|
25096
25017
|
]
|
|
25097
|
-
},
|
|
25098
|
-
"detailsAnalysis": {
|
|
25099
|
-
"type": "object",
|
|
25100
|
-
"additionalProperties": true,
|
|
25101
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
25102
25018
|
}
|
|
25103
25019
|
},
|
|
25104
25020
|
"discriminator": {
|
|
@@ -26355,11 +26271,6 @@
|
|
|
26355
26271
|
"type": "string",
|
|
26356
26272
|
"title": "",
|
|
26357
26273
|
"enum": ["Yes", "No"]
|
|
26358
|
-
},
|
|
26359
|
-
"detailsAnalysis": {
|
|
26360
|
-
"type": "object",
|
|
26361
|
-
"additionalProperties": true,
|
|
26362
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
26363
26274
|
}
|
|
26364
26275
|
},
|
|
26365
26276
|
"baspi4Required": ["yesNo"],
|
|
@@ -26423,11 +26334,6 @@
|
|
|
26423
26334
|
"type": "string",
|
|
26424
26335
|
"title": "",
|
|
26425
26336
|
"enum": ["Yes", "No"]
|
|
26426
|
-
},
|
|
26427
|
-
"detailsAnalysis": {
|
|
26428
|
-
"type": "object",
|
|
26429
|
-
"additionalProperties": true,
|
|
26430
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
26431
26337
|
}
|
|
26432
26338
|
},
|
|
26433
26339
|
"baspi4Required": ["yesNo"],
|
|
@@ -26491,11 +26397,6 @@
|
|
|
26491
26397
|
"type": "string",
|
|
26492
26398
|
"title": "",
|
|
26493
26399
|
"enum": ["Yes", "No"]
|
|
26494
|
-
},
|
|
26495
|
-
"detailsAnalysis": {
|
|
26496
|
-
"type": "object",
|
|
26497
|
-
"additionalProperties": true,
|
|
26498
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
26499
26400
|
}
|
|
26500
26401
|
},
|
|
26501
26402
|
"baspi4Required": ["yesNo"],
|
|
@@ -26559,11 +26460,6 @@
|
|
|
26559
26460
|
"type": "string",
|
|
26560
26461
|
"title": "",
|
|
26561
26462
|
"enum": ["Yes", "No"]
|
|
26562
|
-
},
|
|
26563
|
-
"detailsAnalysis": {
|
|
26564
|
-
"type": "object",
|
|
26565
|
-
"additionalProperties": true,
|
|
26566
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
26567
26463
|
}
|
|
26568
26464
|
},
|
|
26569
26465
|
"baspi4Required": ["yesNo"],
|
|
@@ -26694,11 +26590,6 @@
|
|
|
26694
26590
|
"type": "string",
|
|
26695
26591
|
"title": "",
|
|
26696
26592
|
"enum": ["Yes", "No"]
|
|
26697
|
-
},
|
|
26698
|
-
"detailsAnalysis": {
|
|
26699
|
-
"type": "object",
|
|
26700
|
-
"additionalProperties": true,
|
|
26701
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
26702
26593
|
}
|
|
26703
26594
|
},
|
|
26704
26595
|
"baspi4Required": ["yesNo"],
|
|
@@ -26875,20 +26766,14 @@
|
|
|
26875
26766
|
"minLength": 1
|
|
26876
26767
|
},
|
|
26877
26768
|
"disagreementOrComplaint": {
|
|
26878
|
-
"ta6ed6Ref": "9.3",
|
|
26879
|
-
"ta6ed6v2Ref": "9.3",
|
|
26880
26769
|
"title": "Are you aware of any disagreement or complaint about any such right or arrangement?",
|
|
26881
26770
|
"type": "object",
|
|
26882
26771
|
"properties": {
|
|
26883
26772
|
"yesNo": {
|
|
26884
|
-
"ta6ed6Ref": "9.3.1",
|
|
26885
|
-
"ta6ed6v2Ref": "9.3.1",
|
|
26886
26773
|
"type": "string",
|
|
26887
26774
|
"enum": ["Yes", "No", "Not known"]
|
|
26888
26775
|
}
|
|
26889
26776
|
},
|
|
26890
|
-
"ta6ed6Required": ["yesNo"],
|
|
26891
|
-
"ta6ed6v2Required": ["yesNo"],
|
|
26892
26777
|
"discriminator": {
|
|
26893
26778
|
"propertyName": "yesNo"
|
|
26894
26779
|
},
|
|
@@ -26907,14 +26792,10 @@
|
|
|
26907
26792
|
},
|
|
26908
26793
|
"details": {
|
|
26909
26794
|
"title": "Provide details",
|
|
26910
|
-
"ta6ed6Ref": "9.3.2",
|
|
26911
|
-
"ta6ed6v2Ref": "9.3.2",
|
|
26912
26795
|
"type": "string",
|
|
26913
26796
|
"minLength": 1
|
|
26914
26797
|
}
|
|
26915
|
-
}
|
|
26916
|
-
"ta6ed6Required": ["details"],
|
|
26917
|
-
"ta6ed6v2Required": ["details"]
|
|
26798
|
+
}
|
|
26918
26799
|
}
|
|
26919
26800
|
]
|
|
26920
26801
|
}
|
|
@@ -26922,8 +26803,8 @@
|
|
|
26922
26803
|
"baspi4Required": ["details"],
|
|
26923
26804
|
"baspi5Required": ["details"],
|
|
26924
26805
|
"ta6Required": ["details"],
|
|
26925
|
-
"ta6ed6Required": ["details"
|
|
26926
|
-
"ta6ed6v2Required": ["details"
|
|
26806
|
+
"ta6ed6Required": ["details"],
|
|
26807
|
+
"ta6ed6v2Required": ["details"]
|
|
26927
26808
|
}
|
|
26928
26809
|
]
|
|
26929
26810
|
},
|
|
@@ -26950,6 +26831,49 @@
|
|
|
26950
26831
|
"type": "string",
|
|
26951
26832
|
"title": "",
|
|
26952
26833
|
"enum": ["Yes", "No"]
|
|
26834
|
+
},
|
|
26835
|
+
"disagreementOrComplaint": {
|
|
26836
|
+
"ta6ed6Ref": "9.3",
|
|
26837
|
+
"ta6ed6v2Ref": "9.3",
|
|
26838
|
+
"title": "Are you aware of any disagreement or complaint about any such right or arrangement?",
|
|
26839
|
+
"type": "object",
|
|
26840
|
+
"properties": {
|
|
26841
|
+
"yesNo": {
|
|
26842
|
+
"ta6ed6Ref": "9.3.1",
|
|
26843
|
+
"ta6ed6v2Ref": "9.3.1",
|
|
26844
|
+
"type": "string",
|
|
26845
|
+
"enum": ["Yes", "No", "Not known"]
|
|
26846
|
+
}
|
|
26847
|
+
},
|
|
26848
|
+
"ta6ed6Required": ["yesNo"],
|
|
26849
|
+
"ta6ed6v2Required": ["yesNo"],
|
|
26850
|
+
"discriminator": {
|
|
26851
|
+
"propertyName": "yesNo"
|
|
26852
|
+
},
|
|
26853
|
+
"oneOf": [
|
|
26854
|
+
{
|
|
26855
|
+
"properties": {
|
|
26856
|
+
"yesNo": {
|
|
26857
|
+
"enum": ["No", "Not known"]
|
|
26858
|
+
}
|
|
26859
|
+
}
|
|
26860
|
+
},
|
|
26861
|
+
{
|
|
26862
|
+
"properties": {
|
|
26863
|
+
"yesNo": {
|
|
26864
|
+
"enum": ["Yes"]
|
|
26865
|
+
},
|
|
26866
|
+
"details": {
|
|
26867
|
+
"ta6ed6Ref": "9.3.2",
|
|
26868
|
+
"ta6ed6v2Ref": "9.3.2",
|
|
26869
|
+
"type": "string",
|
|
26870
|
+
"minLength": 1
|
|
26871
|
+
}
|
|
26872
|
+
},
|
|
26873
|
+
"ta6ed6Required": ["details"],
|
|
26874
|
+
"ta6ed6v2Required": ["details"]
|
|
26875
|
+
}
|
|
26876
|
+
]
|
|
26953
26877
|
}
|
|
26954
26878
|
},
|
|
26955
26879
|
"baspi4Required": ["yesNo"],
|
|
@@ -26986,49 +26910,6 @@
|
|
|
26986
26910
|
"type": "string",
|
|
26987
26911
|
"minLength": 1
|
|
26988
26912
|
},
|
|
26989
|
-
"disagreementOrComplaint": {
|
|
26990
|
-
"ta6ed6Ref": "9.3",
|
|
26991
|
-
"ta6ed6v2Ref": "9.3",
|
|
26992
|
-
"title": "Are you aware of any disagreement or complaint about any such right or arrangement?",
|
|
26993
|
-
"type": "object",
|
|
26994
|
-
"properties": {
|
|
26995
|
-
"yesNo": {
|
|
26996
|
-
"ta6ed6Ref": "9.3.1",
|
|
26997
|
-
"ta6ed6v2Ref": "9.3.1",
|
|
26998
|
-
"type": "string",
|
|
26999
|
-
"enum": ["Yes", "No", "Not known"]
|
|
27000
|
-
}
|
|
27001
|
-
},
|
|
27002
|
-
"ta6ed6Required": ["yesNo"],
|
|
27003
|
-
"ta6ed6v2Required": ["yesNo"],
|
|
27004
|
-
"discriminator": {
|
|
27005
|
-
"propertyName": "yesNo"
|
|
27006
|
-
},
|
|
27007
|
-
"oneOf": [
|
|
27008
|
-
{
|
|
27009
|
-
"properties": {
|
|
27010
|
-
"yesNo": {
|
|
27011
|
-
"enum": ["No", "Not known"]
|
|
27012
|
-
}
|
|
27013
|
-
}
|
|
27014
|
-
},
|
|
27015
|
-
{
|
|
27016
|
-
"properties": {
|
|
27017
|
-
"yesNo": {
|
|
27018
|
-
"enum": ["Yes"]
|
|
27019
|
-
},
|
|
27020
|
-
"details": {
|
|
27021
|
-
"ta6ed6Ref": "9.3.2",
|
|
27022
|
-
"ta6ed6v2Ref": "9.3.2",
|
|
27023
|
-
"type": "string",
|
|
27024
|
-
"minLength": 1
|
|
27025
|
-
}
|
|
27026
|
-
},
|
|
27027
|
-
"ta6ed6Required": ["details"],
|
|
27028
|
-
"ta6ed6v2Required": ["details"]
|
|
27029
|
-
}
|
|
27030
|
-
]
|
|
27031
|
-
},
|
|
27032
26913
|
"attachments": {
|
|
27033
26914
|
"baspi4Ref": "A10.2.3",
|
|
27034
26915
|
"baspi5Ref": "A10.2.3",
|
|
@@ -27831,22 +27712,14 @@
|
|
|
27831
27712
|
"minLength": 1
|
|
27832
27713
|
},
|
|
27833
27714
|
"disagreementOrComplaint": {
|
|
27834
|
-
"ta6ed6Ref": "9.6",
|
|
27835
|
-
"ta6ed6v2Ref": "9.6",
|
|
27836
27715
|
"title": "Are you aware of any disagreement or complaint about any such arrangements?",
|
|
27837
|
-
"ta6ed6Title": "Are you aware of any disagreement or complaint about any such right or arrangement?",
|
|
27838
|
-
"ta6ed6v2Title": "Are you aware of any disagreement or complaint about any such right or arrangement?",
|
|
27839
27716
|
"type": "object",
|
|
27840
27717
|
"properties": {
|
|
27841
27718
|
"yesNo": {
|
|
27842
|
-
"ta6ed6Ref": "9.6.1",
|
|
27843
|
-
"ta6ed6v2Ref": "9.6.1",
|
|
27844
27719
|
"type": "string",
|
|
27845
27720
|
"enum": ["Yes", "No", "Not known"]
|
|
27846
27721
|
}
|
|
27847
27722
|
},
|
|
27848
|
-
"ta6ed6Required": ["yesNo"],
|
|
27849
|
-
"ta6ed6v2Required": ["yesNo"],
|
|
27850
27723
|
"discriminator": {
|
|
27851
27724
|
"propertyName": "yesNo"
|
|
27852
27725
|
},
|
|
@@ -27864,22 +27737,16 @@
|
|
|
27864
27737
|
"enum": ["Yes"]
|
|
27865
27738
|
},
|
|
27866
27739
|
"details": {
|
|
27867
|
-
"ta6ed6Ref": "9.6.2",
|
|
27868
|
-
"ta6ed6v2Ref": "9.6.2",
|
|
27869
|
-
"ta6ed6Title": "Please give details",
|
|
27870
|
-
"ta6ed6v2Title": "Please give details",
|
|
27871
27740
|
"type": "string",
|
|
27872
27741
|
"minLength": 1
|
|
27873
27742
|
}
|
|
27874
|
-
}
|
|
27875
|
-
"ta6ed6Required": ["details"],
|
|
27876
|
-
"ta6ed6v2Required": ["details"]
|
|
27743
|
+
}
|
|
27877
27744
|
}
|
|
27878
27745
|
]
|
|
27879
27746
|
}
|
|
27880
27747
|
},
|
|
27881
|
-
"ta6ed6Required": ["details"
|
|
27882
|
-
"ta6ed6v2Required": ["details"
|
|
27748
|
+
"ta6ed6Required": ["details"],
|
|
27749
|
+
"ta6ed6v2Required": ["details"]
|
|
27883
27750
|
}
|
|
27884
27751
|
]
|
|
27885
27752
|
}
|
|
@@ -30275,11 +30142,6 @@
|
|
|
30275
30142
|
"type": "string",
|
|
30276
30143
|
"title": "",
|
|
30277
30144
|
"enum": ["Yes", "No"]
|
|
30278
|
-
},
|
|
30279
|
-
"detailsAnalysis": {
|
|
30280
|
-
"type": "object",
|
|
30281
|
-
"additionalProperties": true,
|
|
30282
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
30283
30145
|
}
|
|
30284
30146
|
},
|
|
30285
30147
|
"baspi4Required": ["yesNo"],
|
|
@@ -30327,11 +30189,6 @@
|
|
|
30327
30189
|
"type": "string",
|
|
30328
30190
|
"title": "",
|
|
30329
30191
|
"enum": ["Yes", "No"]
|
|
30330
|
-
},
|
|
30331
|
-
"detailsAnalysis": {
|
|
30332
|
-
"type": "object",
|
|
30333
|
-
"additionalProperties": true,
|
|
30334
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
30335
30192
|
}
|
|
30336
30193
|
},
|
|
30337
30194
|
"baspi4Required": ["yesNo"],
|
|
@@ -30378,11 +30235,6 @@
|
|
|
30378
30235
|
"type": "string",
|
|
30379
30236
|
"title": "",
|
|
30380
30237
|
"enum": ["Yes", "No"]
|
|
30381
|
-
},
|
|
30382
|
-
"detailsAnalysis": {
|
|
30383
|
-
"type": "object",
|
|
30384
|
-
"additionalProperties": true,
|
|
30385
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
30386
30238
|
}
|
|
30387
30239
|
},
|
|
30388
30240
|
"baspi4Required": ["yesNo"],
|
|
@@ -30438,11 +30290,6 @@
|
|
|
30438
30290
|
"type": "string",
|
|
30439
30291
|
"title": "",
|
|
30440
30292
|
"enum": ["Yes", "No"]
|
|
30441
|
-
},
|
|
30442
|
-
"detailsAnalysis": {
|
|
30443
|
-
"type": "object",
|
|
30444
|
-
"additionalProperties": true,
|
|
30445
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
30446
30293
|
}
|
|
30447
30294
|
},
|
|
30448
30295
|
"baspi4Required": ["yesNo"],
|
|
@@ -30595,11 +30442,6 @@
|
|
|
30595
30442
|
"title": "Attachments",
|
|
30596
30443
|
"type": "string",
|
|
30597
30444
|
"enum": ["Attached", "To follow"]
|
|
30598
|
-
},
|
|
30599
|
-
"detailsAnalysis": {
|
|
30600
|
-
"type": "object",
|
|
30601
|
-
"additionalProperties": true,
|
|
30602
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
30603
30445
|
}
|
|
30604
30446
|
}
|
|
30605
30447
|
},
|
|
@@ -30629,11 +30471,6 @@
|
|
|
30629
30471
|
"type": "string",
|
|
30630
30472
|
"title": "",
|
|
30631
30473
|
"enum": ["Yes", "No", "Not applicable"]
|
|
30632
|
-
},
|
|
30633
|
-
"detailsAnalysis": {
|
|
30634
|
-
"type": "object",
|
|
30635
|
-
"additionalProperties": true,
|
|
30636
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
30637
30474
|
}
|
|
30638
30475
|
},
|
|
30639
30476
|
"baspi4Required": ["yesNo"],
|
|
@@ -30700,11 +30537,6 @@
|
|
|
30700
30537
|
"type": "string",
|
|
30701
30538
|
"title": "",
|
|
30702
30539
|
"enum": ["Yes", "No", "Not applicable"]
|
|
30703
|
-
},
|
|
30704
|
-
"detailsAnalysis": {
|
|
30705
|
-
"type": "object",
|
|
30706
|
-
"additionalProperties": true,
|
|
30707
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
30708
30540
|
}
|
|
30709
30541
|
},
|
|
30710
30542
|
"baspi4Required": ["yesNo"],
|
|
@@ -30772,11 +30604,6 @@
|
|
|
30772
30604
|
"type": "string",
|
|
30773
30605
|
"title": "",
|
|
30774
30606
|
"enum": ["Yes", "No", "Not applicable", "Not known"]
|
|
30775
|
-
},
|
|
30776
|
-
"detailsAnalysis": {
|
|
30777
|
-
"type": "object",
|
|
30778
|
-
"additionalProperties": true,
|
|
30779
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
30780
30607
|
}
|
|
30781
30608
|
},
|
|
30782
30609
|
"baspi4Required": ["yesNo"],
|
|
@@ -31235,11 +31062,6 @@
|
|
|
31235
31062
|
"enum": ["Yes", "No", "Not known"],
|
|
31236
31063
|
"baspi4Enum": ["Yes", "No"],
|
|
31237
31064
|
"baspi5Enum": ["Yes", "No"]
|
|
31238
|
-
},
|
|
31239
|
-
"detailsAnalysis": {
|
|
31240
|
-
"type": "object",
|
|
31241
|
-
"additionalProperties": true,
|
|
31242
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
31243
31065
|
}
|
|
31244
31066
|
},
|
|
31245
31067
|
"baspi4Required": ["yesNo"],
|
|
@@ -31614,11 +31436,6 @@
|
|
|
31614
31436
|
"type": "string",
|
|
31615
31437
|
"title": "",
|
|
31616
31438
|
"enum": ["Yes", "No"]
|
|
31617
|
-
},
|
|
31618
|
-
"detailsAnalysis": {
|
|
31619
|
-
"type": "object",
|
|
31620
|
-
"additionalProperties": true,
|
|
31621
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
31622
31439
|
}
|
|
31623
31440
|
},
|
|
31624
31441
|
"baspi4Required": ["yesNo"],
|
|
@@ -32353,11 +32170,6 @@
|
|
|
32353
32170
|
"type": "string",
|
|
32354
32171
|
"title": "",
|
|
32355
32172
|
"enum": ["Yes", "No"]
|
|
32356
|
-
},
|
|
32357
|
-
"detailsAnalysis": {
|
|
32358
|
-
"type": "object",
|
|
32359
|
-
"additionalProperties": true,
|
|
32360
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
32361
32173
|
}
|
|
32362
32174
|
},
|
|
32363
32175
|
"baspi4Required": ["yesNo"],
|
|
@@ -32468,11 +32280,6 @@
|
|
|
32468
32280
|
"type": "string",
|
|
32469
32281
|
"title": "",
|
|
32470
32282
|
"enum": ["Yes", "No"]
|
|
32471
|
-
},
|
|
32472
|
-
"detailsAnalysis": {
|
|
32473
|
-
"type": "object",
|
|
32474
|
-
"additionalProperties": true,
|
|
32475
|
-
"description": "Optional sibling object carrying vendor-emitted analysis of the parent's `details` free-text disclosure. Payload shape is vendor-specific; consumers that don't recognise the shape should ignore the object."
|
|
32476
32283
|
}
|
|
32477
32284
|
},
|
|
32478
32285
|
"baspi4Required": ["yesNo"],
|