This is the only area with any complexity in the set up of this form. There is a file in the Files area of Forms System Management for the Bulky Waste form called:
configuration/serviceconfigurationmappings.json
This file contains:
the pricing model you have
the list of all items that can be collected and
the code associated with this in your back office waste management system
detail on whether the item is classed as white goods or not
This file is in JSON format and so takes a little time to review but is simple when you know how.
Pricing Config
In the file there is a section like this which is outlines the price for Bulky Waste Items.
In summary this section of JSON below is saying:
1 item is £19.60 (basePrice) and there is no discount (baseDiscountedPrice) for one item
2-5 items is £32.60 (basePrice) and a discounted price of £25.50 (baseDiscountedPrice) if they are on benefits
6-20 items is £32.60 (basePrice) and there a discounted price of £25.50 (baseDiscountedPrice) if they are on benefits and for each item beyond 5 items there is a cost of £11.70 (pricePerItem) or £10.70 (discountedPricePerItem) if they're on benefits.
"priceListItems": [
{
"minItemQuantity": 1 ,
"maxItemQuantity": 1 ,
"basePrice": 19.6 ,
"baseDiscountedPrice": null,
"pricePerItem": null,
"discountedPricePerItem": null
},
{
"minItemQuantity": 2 ,
"maxItemQuantity": 5 ,
"basePrice": 32.6,
"baseDiscountedPrice": 25.5,
"pricePerItem": null,
"discountedPricePerItem": null
},
{
"minItemQuantity": 6 ,
"maxItemQuantity": 20 ,
"basePrice": 32.6,
"baseDiscountedPrice": 25.5,
"pricePerItem": 11.7,
"discountedPricePerItem": 10.7
}
],
"name": "Bulky waste items",
The same exists for white goods but with different info.
In summary this section of JSON below is saying:
There is only one price rule and for any number of items between 1 and 9 the cost is £26.70 (pricePerItem) per item.
"priceListItems": [
{
"minItemQuantity": 1 ,
"maxItemQuantity": 9 ,
"basePrice": null,
"baseDiscountedPrice": null,
"pricePerItem": 26.7,
"discountedPricePerItem": null
}
],
"name": "Bulky white goods"
There is therefore an enormous amount of flexibility in how you do your pricing. You can have:
A set cost per item where they are in receipt of benefits
A cost for a range e.g. 1-3 items
A cost for a range e.g. 1-3 items where they are in receipt of benefits
A mix of costs / ranges e.g.
11+ is £50 + £20 for each additional item
And these can be different for regular goods vs bulky white goods.
Payment Integration - Whitespace
The following section contains details of the information that is relevant to the payment system.
In summary this section is holding details to say:
When the item(s) to be collected is/are regular bulky waste:
the payment reference for your payment system is r1
the fund code for your payment system is f1
the description the customer will see when making a payment in your payment system will be Bulky waste items collection
When the item(s) to be collected is/are bulky white goods:
the payment reference for your payment system is r2
the fund code for your payment system is f2
the description the customer will see when making a payment in your payment system will be Bulky white goods collection
"bulkyWasteItemGroups": [
{
"groupId": "29",
"groupName": "Bulky waste items",
"purchasableItemDetails": {
"reference": "r1 ",
"fundCode": "f1 ",
"description": "Bulky waste items collection ",
"price": null
}
},
{
"groupId": "30",
"groupName": "Bulky white goods",
"purchasableItemDetails": {
"reference": "r2 ",
"fundCode": "f2 ",
"description": "Bulky white goods collection ",
"price": null
}
}
Payment Integration - Bartec Collective
For Bartec, payment integration is controlled within the 'Bulky Waste Item Groups section.
Per the example section below this holds:
Details of different Bulky Collections
Standard Bulky Waste Items
The groupId is how this is known to the Bartec system
The purchasable item details holds the following which are used to pass the details to your payment system:
The description for the receipt from the payment system
The VAT code for the payment system
Copy "bulkyWasteItemGroups": [
{
"groupId": "6540",
"groupName": "Bulky waste items",
"purchasableItemDetails": {
"reference": "14204358",
"fundCode": "12",
"description": "Bulky waste items collection",
"price": null,
"vatCode": "NA"
}
},
{
"groupId": "6748",
"groupName": "Bulky electrical small goods",
"purchasableItemDetails": {
"reference": "14204358",
"fundCode": "12",
"description": "Bulky waste items collection",
"price": null,
"vatCode": "NA"
}
},
{
"groupId": "6543",
"groupName": "Bulky electrical goods",
"purchasableItemDetails": {
"reference": "14204357",
"fundCode": "12",
"description": "Bulky electrical goods collection",
"price": null,
"vatCode": "NA"
}
}
]
Bulky Waste Items that can be collected
The next section contains the list of all items that can be collected by type.
The section below contains:
The id for each bulky waste item that can be collected
The name that will be shown to the customer
The following are just some examples:
"bulkyWasteItemLists": [
{
"bulkyWasteItemTypes": [
{
"id": "201 ",
"name": "5 Black Bags As One Item "
},
{
"id": "202 ",
"name": "Armchair "
},
{
"id": "203 ",
"name": "Bed Base "
},
So if I want to add a new item I'd literally just find out the id of the item as it is known in the back office. So if my item was a Canvas Painting with an id of 999 I'd add:
{
"id": "999 ",
"name": "Canvas Painting "
}
The IDs are used to know what to add to the job that is created.
At the bottom of the list is a number that identifies the items as being regular bulky items:
"bulkyWasteGroupId": "29"
Bulky White Goods Items that can be collected
The next section contains the list of all items that can be collected by type.
The section below contains:
The id for each bulky white good item that can be collected
The name that will be shown to the customer
The following are just some examples:
"bulkyWasteItemTypes": [
{
"id": "218 ",
"name": "Cooker (Gas Or Electric) "
},
{
"id": "225 ",
"name": "Dishwasher "
},
{
"id": "236 ",
"name": "Freezer (Empty) "
},
The IDs are used to know what to add to the job that is created.
At the bottom of the list is a number that identifies the items as being bulky white goods:
"bulkyWasteGroupId": "30"
So whilst the JSON file is a little complex it is remarkably simple to update/configure additional flexibility.
Example File - Bartec Collective
Copy {
"settings": [
{
"key": "",
"value": ""
}
],
"priceLists": [
{
"priceListItems": [
{
"minItemQuantity": 1,
"maxItemQuantity": 4,
"basePrice": 20,
"baseDiscountedPrice": null,
"pricePerItem": null,
"discountedPricePerItem": null
},
{
"minItemQuantity": 5,
"maxItemQuantity": 9,
"basePrice": 20,
"baseDiscountedPrice": null,
"pricePerItem": 4.6,
"discountedPricePerItem": null
}
],
"name": "Bulky waste items",
"bulkyWasteGroupId": "6540"
},
{
"priceListItems": [
{
"minItemQuantity": 1,
"maxItemQuantity": 9,
"basePrice": null,
"baseDiscountedPrice": null,
"pricePerItem": 31.5,
"discountedPricePerItem": null
}
],
"name": "Bulky electrical goods",
"bulkyWasteGroupId": "6543"
},
{
"priceListItems": [
{
"minItemQuantity": 1,
"maxItemQuantity": 9,
"basePrice": null,
"baseDiscountedPrice": null,
"pricePerItem": 0,
"discountedPricePerItem": null
}
],
"name": "Bulky electrical small goods",
"bulkyWasteGroupId": "6748"
}
],
"bulkyWasteItemGroups": [
{
"groupId": "6540",
"groupName": "Bulky waste items",
"purchasableItemDetails": {
"reference": "14204358",
"fundCode": "12",
"description": "Bulky waste items collection",
"price": null,
"vatCode": "NA"
}
},
{
"groupId": "6748",
"groupName": "Bulky electrical small goods",
"purchasableItemDetails": {
"reference": "14204358",
"fundCode": "12",
"description": "Bulky waste items collection",
"price": null,
"vatCode": "NA"
}
},
{
"groupId": "6543",
"groupName": "Bulky electrical goods",
"purchasableItemDetails": {
"reference": "14204357",
"fundCode": "12",
"description": "Bulky electrical goods collection",
"price": null,
"vatCode": "NA"
}
}
],
"bulkyWasteItemLists": [
{
"bulkyWasteItemTypes": [
{
"id": "6631",
"name": "1 Bag Garden Waste"
},
{
"id": "6632",
"name": "1 Bag General Waste"
},
{
"id": "6633",
"name": "Armchair (non reclining)"
},
{
"id": "6634",
"name": "Baby Bath"
},
{
"id": "6635",
"name": "Baby Changing Unit"
},
{
"id": "6636",
"name": "Bean Bag"
},
{
"id": "6637",
"name": "Bed Base (Divan)"
},
{
"id": "6638",
"name": "Bed Frame (dismantled)"
},
{
"id": "6639",
"name": "Bedside Cabinet (no glass)"
},
{
"id": "6640",
"name": "Blinds/Curtains"
},
{
"id": "6641",
"name": "Bookcase"
},
{
"id": "6642",
"name": "Bunk Bed Frame (dismantled)"
},
{
"id": "6643",
"name": "Carpet (1 roll max 6ft long)"
},
{
"id": "6644",
"name": "CD/DVD Rack"
},
{
"id": "6645",
"name": "Child Car Seat"
},
{
"id": "6646",
"name": "Christmas Tree (artificial)"
},
{
"id": "6647",
"name": "Clothes Airer / Rail"
},
{
"id": "6648",
"name": "Cot/Moses Basket"
},
{
"id": "6649",
"name": "Desk"
},
{
"id": "6650",
"name": "Dining / Kitchen Chair (no metal)"
},
{
"id": "6651",
"name": "Display Cabinet (no glass)"
},
{
"id": "6652",
"name": "Drawers"
},
{
"id": "6653",
"name": "Dresser/Display Unit (no glass)"
},
{
"id": "6654",
"name": "Dressing Table"
},
{
"id": "6655",
"name": "Filing Cabinet - Wood"
},
{
"id": "6656",
"name": "Fishing Net / Rod"
},
{
"id": "6657",
"name": "Foot Stool/Pouffe"
},
{
"id": "6658",
"name": "Futon"
},
{
"id": "6659",
"name": "Garden Seat (Wood / plastic)"
},
{
"id": "6660",
"name": "Grandfather Clock (under 6ft)"
},
{
"id": "6661",
"name": "Headboard"
},
{
"id": "6662",
"name": "Highchair"
},
{
"id": "6663",
"name": "Ironing Board"
},
{
"id": "6664",
"name": "Kitchen Swing Bin"
},
{
"id": "6665",
"name": "Large Brush"
},
{
"id": "6666",
"name": "Little Tykes Toy"
},
{
"id": "6667",
"name": "Magazine Rack"
},
{
"id": "6668",
"name": "Mattress - Cot"
},
{
"id": "6669",
"name": "Mattress Single"
},
{
"id": "6749",
"name": "Mattress Double"
},
{
"id": "6750",
"name": "Mattress King"
},
{
"id": "6751",
"name": "Mattress Super King"
},
{
"id": "6670",
"name": "Musical instrument (excl Pianos)"
},
{
"id": "6671",
"name": "Ottoman/blanket box"
},
{
"id": "6672",
"name": "Paddling Pool"
},
{
"id": "6673",
"name": "Plant Pot - Large (Plastic)"
},
{
"id": "6674",
"name": "Playpen"
},
{
"id": "6675",
"name": "Pram/Pushchair/Buggy"
},
{
"id": "6676",
"name": "Rug (smaller than 6ft rolled)"
},
{
"id": "6677",
"name": "Sideboard"
},
{
"id": "6678",
"name": "Sofa/Settee (non-reclining)"
},
{
"id": "6679",
"name": "Stereo/TV Cabinet/Stand (no glass)"
},
{
"id": "6680",
"name": "Storage Basket"
},
{
"id": "6681",
"name": "Suitcase"
},
{
"id": "6682",
"name": "Sun Lounger / Deckchair"
},
{
"id": "6683",
"name": "Table - Dining/Kitchen (no glass/metal)"
},
{
"id": "6684",
"name": "Table - Garden/Patio (wood/plastic only)"
},
{
"id": "6685",
"name": "Table - Small (no glass/metal)"
},
{
"id": "6686",
"name": "Tool Box"
},
{
"id": "6687",
"name": "Wardrobe - Double (no mirror)"
},
{
"id": "6688",
"name": "Wardrobe - Single (no mirror)"
},
{
"id": "6689",
"name": "Wardrobe - Triple (dismantled - no mirror)"
},
{
"id": "6690",
"name": "Wardrobe Door (no mirror)"
},
{
"id": "6691",
"name": "Wood/Plastic Curtain Pole / Rail"
},
{
"id": "6692",
"name": "Wooden Chest"
}
],
"bulkyWasteGroupId": "6540"
},
{
"bulkyWasteItemTypes": [
{
"id": "6549",
"name": "Air Con Unit"
},
{
"id": "6551",
"name": "Amplifier (larger than 30x40x30cm)"
},
{
"id": "6563",
"name": "Cooker"
},
{
"id": "6566",
"name": "Dehumidifier"
},
{
"id": "6568",
"name": "Dishwasher"
},
{
"id": "6572",
"name": "Electric Fire"
},
{
"id": "6575",
"name": "Electric Saw (larger than 30x40x30cm)"
},
{
"id": "6581",
"name": "Floor standing fan"
},
{
"id": "6585",
"name": "Freezer"
},
{
"id": "6586",
"name": "Fridge"
},
{
"id": "6587",
"name": "Fridge/Freezer"
},
{
"id": "6592",
"name": "Hedge Cutter - Electric"
},
{
"id": "6593",
"name": "Hostess Trolley"
},
{
"id": "6598",
"name": "Lamp - Floor standing"
},
{
"id": "6599",
"name": "Lawn Mower - Electric"
},
{
"id": "6602",
"name": "Microwave oven/ Mini Oven"
},
{
"id": "6606",
"name": "Oven"
},
{
"id": "6607",
"name": "Radiator - Electric"
},
{
"id": "6609",
"name": "Reclining armchair"
},
{
"id": "6610",
"name": "Reclining sofa"
},
{
"id": "6615",
"name": "Sewing/Knitting Machine (larger than 30x40x30cm)"
},
{
"id": "6618",
"name": "Stereo/hi-fi (larger than 30x40x30cm)"
},
{
"id": "6620",
"name": "Strimmer"
},
{
"id": "6622",
"name": "Television"
},
{
"id": "6625",
"name": "Trouser Press"
},
{
"id": "6626",
"name": "Tumble Dryer"
},
{
"id": "6627",
"name": "Vacuum Cleaner"
},
{
"id": "6629",
"name": "Washing Machine"
}
],
"bulkyWasteGroupId": "6543"
},
{
"bulkyWasteItemTypes": [
{
"id": "6550",
"name": "Amplifier (smaller than 30x40x30cm"
},
{
"id": "6552",
"name": "Answer Machine"
},
{
"id": "6554",
"name": "Blender"
},
{
"id": "6555",
"name": "Bread Maker"
},
{
"id": "6556",
"name": "Coffee Grinder"
},
{
"id": "6557",
"name": "Coffee Maker"
},
{
"id": "6558",
"name": "Computer Base Unit/Hard Drive"
},
{
"id": "6559",
"name": "Computer Laptop"
},
{
"id": "6560",
"name": "Computer Modem/Router"
},
{
"id": "6561",
"name": "Computer Monitor/Screen"
},
{
"id": "6562",
"name": "Computer Printer/Scanner"
},
{
"id": "6564",
"name": "Curling Tongs/Hair Straighteners"
},
{
"id": "6565",
"name": "Deep Fat Fryer"
},
{
"id": "6567",
"name": "Small Desk Fan"
},
{
"id": "6569",
"name": "Drill"
},
{
"id": "6570",
"name": "DVD Recorder/Player"
},
{
"id": "6571",
"name": "Electric Carving Knife"
},
{
"id": "6573",
"name": "Electric Gaming Equip"
},
{
"id": "6574",
"name": "Electric Sander"
},
{
"id": "6576",
"name": "Electric Saw (smaller than 30x40x30cm)"
},
{
"id": "6577",
"name": "Electric Toothbrush"
},
{
"id": "6578",
"name": "Electric Typewriter"
},
{
"id": "6579",
"name": "Fairy Lights"
},
{
"id": "6580",
"name": "Fax Machine"
},
{
"id": "6582",
"name": "Food Processor"
},
{
"id": "6583",
"name": "Foot Spa"
},
{
"id": "6584",
"name": "Freeview/Sky Box"
},
{
"id": "6588",
"name": "Garden Solar Light"
},
{
"id": "6589",
"name": "Hair Clippers/Shaver/Beard Trimmer"
},
{
"id": "6590",
"name": "Hair Dryer"
},
{
"id": "6591",
"name": "Hand Mixer"
},
{
"id": "6594",
"name": "Iron"
},
{
"id": "6595",
"name": "Kettle"
},
{
"id": "6596",
"name": "Kitchen/bathroom scales"
},
{
"id": "6597",
"name": "Lamp - Desk size"
},
{
"id": "6600",
"name": "Light Fitting"
},
{
"id": "6601",
"name": "Microwave (smaller than 30x40x30cm)"
},
{
"id": "6603",
"name": "Mobile Phone/PDA"
},
{
"id": "6604",
"name": "MP3/IPOD"
},
{
"id": "6605",
"name": "Nail Gun"
},
{
"id": "6608",
"name": "Radio / Radio Alarm Clock"
},
{
"id": "6611",
"name": "Record Player/ Turntable"
},
{
"id": "6612",
"name": "Sandwich/Toastie/Waffle Maker"
},
{
"id": "6613",
"name": "Sat Nav"
},
{
"id": "6614",
"name": "Sewing Machine (smaller than 30x40x30cm)"
},
{
"id": "6616",
"name": "Smoke/CO2 Detector/Fire Alarm"
},
{
"id": "6617",
"name": "Stereo/hi-fi (smaller than 30x40x30cm)"
},
{
"id": "6619",
"name": "Steriliser"
},
{
"id": "6621",
"name": "Telephone"
},
{
"id": "6623",
"name": "Toaster"
},
{
"id": "6624",
"name": "Torch"
},
{
"id": "6628",
"name": "Video Recorder/Player"
},
{
"id": "6630",
"name": "Watch/Clock"
}
],
"bulkyWasteGroupId": "6748"
}
]
}
Example File - Whitespace
Copy {
"settings": [
{
"key": "collectionSlotId",
"value": "200"
},
{
"key": "additionalInfo1Id",
"value": "15"
},
{
"key": "additionalInfo2Id",
"value": "16"
}
],
"priceLists": [
{
"priceListItems": [
{
"minItemQuantity": 1,
"maxItemQuantity": 1,
"basePrice": 20.2,
"baseDiscountedPrice": null,
"pricePerItem": null,
"discountedPricePerItem": null
},
{
"minItemQuantity": 2,
"maxItemQuantity": 5,
"basePrice": 33.6,
"baseDiscountedPrice": 26.25,
"pricePerItem": null,
"discountedPricePerItem": null
},
{
"minItemQuantity": 6,
"maxItemQuantity": 20,
"basePrice": 33.6,
"baseDiscountedPrice": 26.25,
"pricePerItem": 12,
"discountedPricePerItem": 11
}
],
"name": "Bulky waste items",
"bulkyWasteGroupId": "29"
},
{
"priceListItems": [
{
"minItemQuantity": 1,
"maxItemQuantity": 9,
"basePrice": null,
"baseDiscountedPrice": null,
"pricePerItem": 27.5,
"discountedPricePerItem": null
}
],
"name": "Bulky white goods",
"bulkyWasteGroupId": "30"
}
],
"bulkyWasteItemGroups": [
{
"groupId": "29",
"groupName": "Bulky waste items",
"purchasableItemDetails": {
"reference": "040",
"fundCode": "07",
"description": "Bulky waste items collection",
"price": null
}
},
{
"groupId": "30",
"groupName": "Bulky white goods",
"purchasableItemDetails": {
"reference": "040",
"fundCode": "07",
"description": "Bulky white good collection",
"price": null
}
}
],
"bulkyWasteItemLists": [
{
"bulkyWasteItemTypes": [
{
"id": "201",
"name": "5 Black Bags As One Item"
},
{
"id": "202",
"name": "Armchair"
},
{
"id": "203",
"name": "Bed Base"
},
{
"id": "204",
"name": "Bedside Cabinet"
},
{
"id": "205",
"name": "Bicycle"
},
{
"id": "283",
"name": "Bird Table"
},
{
"id": "206",
"name": "Blender"
},
{
"id": "207",
"name": "Bookcase"
},
{
"id": "208",
"name": "Books (Bagged)"
},
{
"id": "209",
"name": "Bread Maker"
},
{
"id": "210",
"name": "Bunk Bed"
},
{
"id": "211",
"name": "Carpet (Roll Or Bagged Off-Cuts)"
},
{
"id": "279",
"name": "Chest of Drawers"
},
{
"id": "212",
"name": "Child Safety Gate"
},
{
"id": "213",
"name": "Clock"
},
{
"id": "214",
"name": "Clothes Airer"
},
{
"id": "215",
"name": "Clothes Line (Freestanding)"
},
{
"id": "216",
"name": "Computer Desk"
},
{
"id": "217",
"name": "Computer System"
},
{
"id": "219",
"name": "Cot"
},
{
"id": "220",
"name": "Curtain (Bagged)"
},
{
"id": "221",
"name": "Curtain Pole"
},
{
"id": "222",
"name": "Cushions (Bagged)"
},
{
"id": "223",
"name": "Desk"
},
{
"id": "224",
"name": "Dining Chair"
},
{
"id": "226",
"name": "Dresser"
},
{
"id": "227",
"name": "Dressing Table"
},
{
"id": "228",
"name": "Dustbin"
},
{
"id": "282",
"name": "DVD Player"
},
{
"id": "229",
"name": "Extractor Hood"
},
{
"id": "230",
"name": "Fax Machine"
},
{
"id": "231",
"name": "Filing Cabinet"
},
{
"id": "232",
"name": "Fitness Equipment"
},
{
"id": "233",
"name": "Floor Tiles"
},
{
"id": "234",
"name": "Food Mixer"
},
{
"id": "235",
"name": "Foot Rest"
},
{
"id": "239",
"name": "Garden Furniture"
},
{
"id": "240",
"name": "Garden Planter"
},
{
"id": "241",
"name": "Garden Tool (Spades/Forks etc.)"
},
{
"id": "242",
"name": "Headboard"
},
{
"id": "243",
"name": "Heater (Free-Standing, Gas Or Electric)"
},
{
"id": "244",
"name": "Hi-Fi System"
},
{
"id": "245",
"name": "Hob"
},
{
"id": "280",
"name": "Iron"
},
{
"id": "246",
"name": "Ironing Board"
},
{
"id": "247",
"name": "Lawn Mower (Electric Only)"
},
{
"id": "248",
"name": "Linen (Bagged)"
},
{
"id": "249",
"name": "Mattress"
},
{
"id": "250",
"name": "Microwave Oven"
},
{
"id": "251",
"name": "Playpen"
},
{
"id": "252",
"name": "Pouffe"
},
{
"id": "253",
"name": "Power Tool"
},
{
"id": "254",
"name": "Pram/Pushchair"
},
{
"id": "281",
"name": "Printer"
},
{
"id": "255",
"name": "Push Bike"
},
{
"id": "256",
"name": "Quilt (Bagged)"
},
{
"id": "257",
"name": "Satellite Box Or Dish"
},
{
"id": "258",
"name": "Settee"
},
{
"id": "259",
"name": "Sideboard"
},
{
"id": "260",
"name": "Small Items From A Garage e.g. Old Jacks"
},
{
"id": "261",
"name": "Small Outdoor Toy"
},
{
"id": "262",
"name": "Snooker Table"
},
{
"id": "263",
"name": "Sofa"
},
{
"id": "265",
"name": "Table"
},
{
"id": "266",
"name": "Telephone"
},
{
"id": "267",
"name": "Television"
},
{
"id": "268",
"name": "Toys (Bagged)"
},
{
"id": "270",
"name": "Underlay"
},
{
"id": "271",
"name": "Vacuum Cleaner"
},
{
"id": "272",
"name": "Video Recorder"
},
{
"id": "273",
"name": "Vinyl Floor Covering"
},
{
"id": "274",
"name": "Wardrobes (Free Standing, Whole Or Broken Up)"
},
{
"id": "275",
"name": "Washing Basket"
},
{
"id": "277",
"name": "Wheelbarrow"
},
{
"id": "278",
"name": "Wheelchair"
}
],
"bulkyWasteGroupId": "29"
},
{
"bulkyWasteItemTypes": [
{
"id": "218",
"name": "Cooker (Gas Or Electric)"
},
{
"id": "225",
"name": "Dishwasher"
},
{
"id": "236",
"name": "Freezer (Empty)"
},
{
"id": "237",
"name": "Fridge Freezer (Empty)"
},
{
"id": "238",
"name": "Fridge (Empty)"
},
{
"id": "264",
"name": "Spin Dryer"
},
{
"id": "269",
"name": "Tumble Dryer"
},
{
"id": "276",
"name": "Washing Machine (Including Twin Tub)"
}
],
"bulkyWasteGroupId": "30"
}
]
}