Using guided buying

Guided buying policies allow you to drive purchasing compliance by allowing you to mark certain products as preferred, restricted, or blocked in search results based on their characteristics. For example, you can use guided buying policies to display messages indicating that products are preferred because they are sold by local sellers or meet your organization’s sustainability requirements. With Product Search API, you can leverage guided buying policies to drive compliance with your organization’s spending requirements by exposing policies directly in search results.

👍

For instructions on displaying guided buying policies in your UI, see Product Search API customer experience guidelines.

Prerequisites

Before starting this tutorial, complete these steps:

  1. Complete the API onboarding process to register as a developer, create an app client, and retrieve API access and refresh tokens. For more information, see Onboarding overview.
  2. Gain access to the Business Product Catalog role. For more information, see Amazon Business API roles.

Step 1. Set guided buying policies

Your Amazon Business account admin should complete these steps to set up guided buying policies for your Amazon Business group:

  1. Log in to your Amazon Business account and navigate to Business Settings.
  2. In Business Settings, navigate to Buying policies and approvals.
  1. Select Add policy. A list of applicable buying policies displays.
  1. Select your desired buying policy. In this example, we’ll select Prefer products with sustainability certifications.
  1. Modify the details of your guided buying policy as necessary, such as the policy name, message for buyers, or available certifications.
  2. Select Save. After completing this setup, this policy will be applied to product searches conducted using this group.

Step 2. Search for products

After setting buying guidance, your group’s buying policies will appear in the search results. Guided buying policies are displayed at the offer level in the buyingGuidanceV2 object.

For example, we’ll call the searchProductsRequest operation to search for paper products that match the sustainability guidelines we set in Step 1. We’ll set facets to OFFERS so that buying guidance can be displayed in the results.

GET https://na.business-api.amazon.com/products/2020-08-26/products?shippingRegion=US&facets=OFFERS&productRegion=US&keywords=paper&locale=en-US&shippingPostalCode=98039
import requests

url = "https://na.business-api.amazon.com/products/2020-08-26/products?shippingRegion=US&facets=OFFERS&productRegion=US&keywords=paper&locale=en-US&shippingPostalCode=98039"

headers = {
    "accept": "application/json",
    "x-amz-access-token": "<Access token retrieved in Prerequisites Step 1>",
    "x-amz-user-email": "<Customer email address",
}

response = requests.get(url, headers=headers)

print(response.text)

The API returns a buyingGuidanceV2 object for each product that provides information about the product’s buying guidance status. For example, if a product is preferred due to its sustainability attributes, the buyingGuidanceV2 field could display the following information:

                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": **null**,
                                    "link": **null**,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B01FV0F75G"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": **null**
                                        }
                                    ]
                                }
                            ]
                        },
{
    "matchingProductCount": 306,
    "searchRefinements": [
        {
            "selectionType": "SingleSelect",
            "displayValue": "Department",
            "refinementValues": [
                {
                    "displayName": "Alexa Skills",
                    "searchRefinementValue": "node#13727921011"
                },
                {
                    "displayName": "Amazon Devices & Accessories",
                    "searchRefinementValue": "node#16333372011"
                },
                {
                    "displayName": "Appliances",
                    "searchRefinementValue": "node#2619525011"
                },
                {
                    "displayName": "Apps & Games",
                    "searchRefinementValue": "node#2350149011"
                },
                {
                    "displayName": "Arts, Crafts & Sewing",
                    "searchRefinementValue": "node#2617941011"
                },
                {
                    "displayName": "Audible Books & Originals",
                    "searchRefinementValue": "node#18145289011"
                },
                {
                    "displayName": "Automotive",
                    "searchRefinementValue": "node#15684181"
                },
                {
                    "displayName": "Baby Products",
                    "searchRefinementValue": "node#165796011"
                },
                {
                    "displayName": "Beauty & Personal Care",
                    "searchRefinementValue": "node#3760911"
                },
                {
                    "displayName": "Books",
                    "searchRefinementValue": "node#283155"
                },
                {
                    "displayName": "CDs & Vinyl",
                    "searchRefinementValue": "node#5174"
                },
                {
                    "displayName": "Cell Phones & Accessories",
                    "searchRefinementValue": "node#2335752011"
                },
                {
                    "displayName": "Clothing, Shoes & Jewelry",
                    "searchRefinementValue": "node#7141123011"
                },
                {
                    "displayName": "Collectibles & Fine Art",
                    "searchRefinementValue": "node#4991425011"
                },
                {
                    "displayName": "Credit & Payment Cards",
                    "searchRefinementValue": "node#3561432011"
                },
                {
                    "displayName": "Digital Music",
                    "searchRefinementValue": "node#163856011"
                },
                {
                    "displayName": "Electronics",
                    "searchRefinementValue": "node#172282"
                },
                {
                    "displayName": "Everything Else",
                    "searchRefinementValue": "node#10272111"
                },
                {
                    "displayName": "Gift Cards",
                    "searchRefinementValue": "node#2238192011"
                },
                {
                    "displayName": "Grocery & Gourmet Food",
                    "searchRefinementValue": "node#16310101"
                },
                {
                    "displayName": "Handmade Products",
                    "searchRefinementValue": "node#11260432011"
                },
                {
                    "displayName": "Health & Household",
                    "searchRefinementValue": "node#3760901"
                },
                {
                    "displayName": "Home & Business Services",
                    "searchRefinementValue": "node#8098158011"
                },
                {
                    "displayName": "Home & Kitchen",
                    "searchRefinementValue": "node#1055398"
                },
                {
                    "displayName": "Industrial & Scientific",
                    "searchRefinementValue": "node#16310091"
                },
                {
                    "displayName": "Kindle Store",
                    "searchRefinementValue": "node#133140011"
                },
                {
                    "displayName": "Magazine Subscriptions",
                    "searchRefinementValue": "node#599858"
                },
                {
                    "displayName": "Movies & TV",
                    "searchRefinementValue": "node#2625373011"
                },
                {
                    "displayName": "Musical Instruments",
                    "searchRefinementValue": "node#11091801"
                },
                {
                    "displayName": "Office Products",
                    "searchRefinementValue": "node#1064954"
                },
                {
                    "displayName": "Patio, Lawn & Garden",
                    "searchRefinementValue": "node#2972638011"
                },
                {
                    "displayName": "Pet Supplies",
                    "searchRefinementValue": "node#2619533011"
                },
                {
                    "displayName": "Software",
                    "searchRefinementValue": "node#229534"
                },
                {
                    "displayName": "Sports & Outdoors",
                    "searchRefinementValue": "node#3375251"
                },
                {
                    "displayName": "Tools & Home Improvement",
                    "searchRefinementValue": "node#228013"
                },
                {
                    "displayName": "Toys & Games",
                    "searchRefinementValue": "node#165793011"
                },
                {
                    "displayName": "Video Games",
                    "searchRefinementValue": "node#468642"
                }
            ]
        },
        {
            "selectionType": "SingleSelect",
            "displayValue": "Departments",
            "refinementValues": []
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Delivery Day",
            "refinementValues": [
                {
                    "displayName": "Get It Today",
                    "searchRefinementValue": "SSI$p_90#BN$8308920011"
                },
                {
                    "displayName": "Get It by Tomorrow",
                    "searchRefinementValue": "SSI$p_90#BN$8308921011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Prime",
            "refinementValues": [
                {
                    "displayName": "Prime Eligible",
                    "searchRefinementValue": "SSI$p_85#BN$2470955011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Shipping Options",
            "refinementValues": [
                {
                    "displayName": "Free Shipping by Amazon",
                    "searchRefinementValue": "SSI$p_76#BN$2661625011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Customer Reviews",
            "refinementValues": [
                {
                    "displayName": "4 Stars & Up",
                    "searchRefinementValue": "SSI$p_72#BN$2661618011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Deals & Discounts",
            "refinementValues": [
                {
                    "displayName": "All Discounts",
                    "searchRefinementValue": "SSI$p_n_deal_type#BN$23566065011"
                },
                {
                    "displayName": "Today's Deals",
                    "searchRefinementValue": "SSI$p_n_deal_type#BN$23566064011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Condition",
            "refinementValues": [
                {
                    "displayName": "New",
                    "searchRefinementValue": "SSI$p_n_condition-type#BN$6461716011"
                },
                {
                    "displayName": "Used",
                    "searchRefinementValue": "SSI$p_n_condition-type#BN$6461718011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "More-sustainable Products",
            "refinementValues": [
                {
                    "displayName": "Climate Pledge Friendly",
                    "searchRefinementValue": "SSI$p_n_cpf_eligible#BN$21512497011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Subscription Options",
            "refinementValues": [
                {
                    "displayName": "Subscribe & Save Eligible",
                    "searchRefinementValue": "SSI$p_n_is_sns_available#BN$2617006011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Local Stores",
            "refinementValues": [
                {
                    "displayName": "Amazon Fresh",
                    "searchRefinementValue": "SSI$p_n_alm_brand_id#BN$18075438011"
                },
                {
                    "displayName": "Whole Foods Market",
                    "searchRefinementValue": "SSI$p_n_alm_brand_id#BN$18075437011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "FSA or HSA Eligible",
            "refinementValues": [
                {
                    "displayName": "FSA or HSA Eligible",
                    "searchRefinementValue": "SSI$p_n_hba_program#BN$17904039011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "SNAP EBT",
            "refinementValues": [
                {
                    "displayName": "SNAP EBT Eligible",
                    "searchRefinementValue": "SSI$p_n_program_participation#BN$17428820011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Seller Type",
            "refinementValues": [
                {
                    "displayName": "Business Seller",
                    "searchRefinementValue": "SSI$p_amazon_business_seller#BN$15156999011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Certified",
            "refinementValues": [
                {
                    "displayName": "Works with Alexa",
                    "searchRefinementValue": "SSI$p_n_amazon_certified#BN$16741513011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Global Store",
            "refinementValues": [
                {
                    "displayName": "Amazon Global Store",
                    "searchRefinementValue": "SSI$p_n_is-global-store-asin#BN$16354393011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "International Shipping",
            "refinementValues": [
                {
                    "displayName": "International Shipping Eligible",
                    "searchRefinementValue": "SSI$p_n_shipping_option-bin#BN$3242350011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Amazon Business Ownership & Diversity Seller Certifications",
            "refinementValues": [
                {
                    "displayName": "Registered Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490165011"
                },
                {
                    "displayName": "Women-Owned Business Enterprise",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490166011"
                },
                {
                    "displayName": "Women-Owned Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490167011"
                },
                {
                    "displayName": "Economically Disadvantaged Woman-Owned Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490168011"
                },
                {
                    "displayName": "Veteran-Owned Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490169011"
                },
                {
                    "displayName": "Service Disabled Veteran Owned Small Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490170011"
                },
                {
                    "displayName": "Minority-Owned Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490171011"
                },
                {
                    "displayName": "SBA-Certified 8(a) Firm",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490172011"
                },
                {
                    "displayName": "SBA-Certified HUB Zone Firm",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490173011"
                },
                {
                    "displayName": "SBA-Certified Small Disadvantaged Business",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490174011"
                },
                {
                    "displayName": "LGBT Business Enterprise",
                    "searchRefinementValue": "SSI$p_seller_credentials#BN$15490175011"
                }
            ]
        },
        {
            "selectionType": "MultiSelectOR",
            "displayValue": "Customizable Products",
            "refinementValues": [
                {
                    "displayName": "Customizable",
                    "searchRefinementValue": "SSI$p_n_customizable_template_name#BN$16031489011"
                }
            ]
        },
        {
            "selectionType": "InsteadSelect",
            "displayValue": "Availability",
            "refinementValues": [
                {
                    "displayName": "In Stock Only",
                    "searchRefinementValue": "SSI$p_n_availability#BN$2661600011"
                },
                {
                    "displayName": "Include Out of Stock",
                    "searchRefinementValue": "SSI$p_n_availability#BN$2661601011"
                }
            ]
        }
    ],
    "refinements": {
        "categories": [
            {
                "displayName": "Alexa Skills",
                "id": "ALEXA_SKILLS"
            },
            {
                "displayName": "Amazon Devices & Accessories",
                "id": "AMAZON_DEVICES_ACCESSORIES"
            },
            {
                "displayName": "Appliances",
                "id": "APPLIANCES"
            },
            {
                "displayName": "Apps & Games",
                "id": "APPS_GAMES"
            },
            {
                "displayName": "Arts, Crafts & Sewing",
                "id": "ARTS_CRAFTS_SEWING"
            },
            {
                "displayName": "Audible Books & Originals",
                "id": "AUDIBLE_BOOKS_ORIGINALS"
            },
            {
                "displayName": "Automotive",
                "id": "AUTOMOTIVE"
            },
            {
                "displayName": "Baby Products",
                "id": "BABY_PRODUCTS"
            },
            {
                "displayName": "Beauty & Personal Care",
                "id": "BEAUTY_PERSONAL_CARE"
            },
            {
                "displayName": "Books",
                "id": "BOOKS"
            },
            {
                "displayName": "CDs & Vinyl",
                "id": "CDS_VINYL"
            },
            {
                "displayName": "Cell Phones & Accessories",
                "id": "CELL_PHONES_ACCESSORIES"
            },
            {
                "displayName": "Clothing, Shoes & Jewelry",
                "id": "CLOTHING_SHOES_JEWELRY"
            },
            {
                "displayName": "Collectibles & Fine Art",
                "id": "COLLECTIBLES_FINE_ART"
            },
            {
                "displayName": "Digital Music",
                "id": "DIGITAL_MUSIC"
            },
            {
                "displayName": "Electronics",
                "id": "ELECTRONICS"
            },
            {
                "displayName": "Everything Else",
                "id": "EVERYTHING_ELSE"
            },
            {
                "displayName": "Gift Cards",
                "id": "GIFT_CARDS"
            },
            {
                "displayName": "Grocery & Gourmet Food",
                "id": "GROCERY_GOURMET_FOOD"
            },
            {
                "displayName": "Handmade Products",
                "id": "HANDMADE_PRODUCTS"
            },
            {
                "displayName": "Health & Household",
                "id": "HEALTH_HOUSEHOLD"
            },
            {
                "displayName": "Home & Business Services",
                "id": "HOME_BUSINESS_SERVICES"
            },
            {
                "displayName": "Home & Kitchen",
                "id": "HOME_KITCHEN"
            },
            {
                "displayName": "Industrial & Scientific",
                "id": "INDUSTRIAL_SCIENTIFIC"
            },
            {
                "displayName": "Kindle Store",
                "id": "KINDLE_STORE"
            },
            {
                "displayName": "Magazine Subscriptions",
                "id": "MAGAZINE_SUBSCRIPTIONS"
            },
            {
                "displayName": "Movies & TV",
                "id": "MOVIES_TV"
            },
            {
                "displayName": "Musical Instruments",
                "id": "MUSICAL_INSTRUMENTS"
            },
            {
                "displayName": "Office Products",
                "id": "OFFICE_PRODUCTS"
            },
            {
                "displayName": "Patio, Lawn & Garden",
                "id": "PATIO_LAWN_GARDEN"
            },
            {
                "displayName": "Pet Supplies",
                "id": "PET_SUPPLIES"
            },
            {
                "displayName": "Software",
                "id": "SOFTWARE"
            },
            {
                "displayName": "Sports & Outdoors",
                "id": "SPORTS_OUTDOORS"
            },
            {
                "displayName": "Tools & Home Improvement",
                "id": "TOOLS_HOME_IMPROVEMENT"
            },
            {
                "displayName": "Toys & Games",
                "id": "TOYS_GAMES"
            },
            {
                "displayName": "Video Games",
                "id": "VIDEO_GAMES"
            }
        ],
        "subCategories": [],
        "availabilityOptions": [
            {
                "displayName": "In Stock Only",
                "id": "InStockOnly"
            },
            {
                "displayName": "Include Out of Stock",
                "id": "IncludeOutOfStock"
            }
        ],
        "deliveryDayOptions": [
            {
                "displayName": "Get It Today",
                "id": "GetItByToday"
            },
            {
                "displayName": "Get It by Tomorrow",
                "id": "GetItByTomorrow"
            }
        ],
        "eligibleForFreeShippingOptions": [
            {
                "displayName": "Free Shipping by Amazon",
                "id": "FreeShippingOnly"
            }
        ],
        "primeEligible": [
            {
                "displayName": "Prime Eligible",
                "id": "PrimeEligibleOnly"
            }
        ]
    },
    "numberOfPages": 13,
    "products": [
        {
            "asin": "B01FV0F13E",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.EHGKC2PVIBLLYQ6LKIDGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQTQADHSCAWKGQWKYP6G7RGLVZHYSU4N5YKB6QQNJPIWR7T7BEFFLEKPU7RHSWPSYZ22GVP5RFTOKWC6TC6AXXJOVORMEADFHHFUN7VVXEWA5RQRJCDTJAGYRNJRVVN6I4Q",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B01FV0F13E"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon.com",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon.com",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "xGQ%2BX93vYIZ2UuTgcNJ9Q6KMvCO%2BBe3w1%2BR6fMuGUGq6w7V%2BUvLxZX1S587cjAE2jgGH9oAQV004DDYQCu8qZSWtjOu%2Bq4X06D%2FssvdM%2FOvZ5oixj8dS8oHo%2B3t6%2BIabKZNwX4NbPBRbP6owbPE%2Bhg%3D%3D",
                        "price": {
                            "value": {
                                "amount": 44.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "NEW"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": null,
                            "formattedPrice": null,
                            "priceType": null
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 90,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23. Order within 14 hrs 44 mins"
                    }
                ]
            },
            "features": [
                "10 ream case (5,000 sheets) of 8.5 x 11 white copier and printer paper for home or office use",
                "Multipurpose letter size copy paper works with laser/inkjet printers, copiers and fax machines",
                "Smooth 20lb weight paper for consistent ink and toner distribution; dries quickly and resists paper jams",
                "Bright white paper (92 GE; 104 Euro) offers great contrast for crisp printing and vivid color",
                "Virgin copy paper providing professional quality results; acid-free to prevent yellowing",
                "Dimensions: 8.5 x 11 inch letter sized sheets; case dimensions: 11.5 x 8.75 x 6.25 inches; weight: ‎50 pounds"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111525",
                    "title": "Multipurpose paper",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Multipurpose Copy Printer Paper, 8.5 x 11 in, 20 lb, 10 Reams, 5000 Sheets, 92 Bright, White",
            "url": "https://www.amazon.com/dp/B01FV0F13E?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "January 1, 2017",
                "Brightness": "92",
                "Number of Pieces": "5000",
                "Size": "10 Reams | 5000 Sheets",
                "Sheet Size": "8.5 x 11 Inches",
                "UPC": "841710143089",
                "Global Trade Identification Number": "00841710143089",
                "ASIN": "B01FV0F13E",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Brightness Rating": "92",
                "Manufacturer": "Amazon",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "10",
                "Material Features": "Recyclable",
                "Color": "White",
                "Item model number": "AZ851120",
                "Manufacturer Part Number": "AZ851120",
                "Sheet Count": "5000",
                "Material Feature": "Recyclable",
                "Paper Finish": "Uncoated",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Paper Size": "8.5 x 11 Inches",
                "Item Weight": "50.5 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Ream | 500 Sheets"
                            },
                            {
                                "index": 1,
                                "displayString": "3 Reams | 1500 Sheets"
                            },
                            {
                                "index": 2,
                                "displayString": "Truckload | 4.2M Sheets"
                            },
                            {
                                "index": 3,
                                "displayString": "5 Reams | 2500 Sheets"
                            },
                            {
                                "index": 4,
                                "displayString": "8 Reams | 4000 Sheets"
                            },
                            {
                                "index": 5,
                                "displayString": "10 Reams | 5000 Sheets"
                            },
                            {
                                "index": 6,
                                "displayString": "Pallet | 200K Sheets"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B01FV0F8H8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B01FV0F75G",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B06XR8PQ1M",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B01FV0F5HG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B07K8WHH5J",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B01FV0F13E",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B06XPFW36K",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 6
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Multipurpose Copy Printer Paper, 8.5 x 11 Inch 20Lb Paper - 3 Ream Case (5,000 Sheets), 92 GE Bright White",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "#1 Best Seller",
                        "message": null,
                        "link": {
                            "text": "Office Products",
                            "url": "https://www.amazon.com/gp/bestsellers/office-products?language=en_US"
                        },
                        "type": "BESTSELLER_BADGE",
                        "fragments": null
                    }
                }
            ]
        },
        {
            "asin": "B072FVQNWM",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.2R4TUHCDCQNER6C5BMNGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ7FPSNL5XYFLIY7OX3ATLKMDW46Q65EGR3D2Z73GRM37BLCTJW7ILBXGSN7GX2WE2HO7HCJ35D6DF33HP2OZ7NDQJZ43AGZG5KTCCG2MKUZA36JFCNOSGDZGEPU7EWANJA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B072FVQNWM"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "hoh2AVWlmUsG11EUEzTKCmBoTr2094qtNCKFPydNpI9hP5f0FuUIp6wj2V7xgTHXh5MVPCozevyHlpBqyKTXZ8GE5QfVG%2BIEf4FzM4KWtc0HI8Q4Jw%2BtEB%2BuoUqD46KLUAIdLao8NDLmQ8G9fLl82NUimrFxXYyJ",
                        "price": {
                            "value": {
                                "amount": 52.79,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23",
                                "thresholdCost": null
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-23T03:00:00Z",
                                    "min": "2025-04-23T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Tuesday, April 22. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 55.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "LIST_PRICE"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 30,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 52.79,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2+ units",
                                    "unitPrice": {
                                        "amount": 52.39,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23"
                    }
                ]
            },
            "features": [
                "HAMMERMILL’S BEST SELLING PRINTER PAPER: You will receive one carton of copy paper, which includes 8 individual reams of paper inside. Each ream of paper has 500 sheets of 20 pounds, 92 bright, 8.5\" x 11\" white copy paper",
                "99.99% JAM-FREE PRINTER PAPER: Everyone hates paper jams. You can trust Hammermill paper quality to keep your printer running smoothly. Scroll down to view the product description for details",
                "COLORLOK TECHNOLOGY INCLUDED: Colors on Hammermill copy paper are 30% brighter; Blacks are up to 60% bolder and inks dry 3 times faster for less smearing. Acid-free Hammermill paper ensures long-lasting archival quality",
                "MADE IN USA: Hammermill copying and printing papers are 100% made in the USA, helping to support 2.4 million sustainable forestry jobs in America, including family tree farmers. Hammermill is more than just paper",
                "MAKE SURE IT’S ORIGINAL HAMMERMILL QUALITY: Look for “Ships from and sold by” at the top of the page, under the product title",
                "OTHER PAPER OPTIONS: Scroll down to compare Hammermill print and copy paper for every purpose, including premium presentation-quality color copy paper, cover-weight paper stock, and glossy paper for photo printing"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Hammermill Printer Paper, 20 Lb Copy Paper, 8.5 x 11 - 8 Ream (4,000 Sheets) - 92 Bright, Made in the USA",
            "url": "https://www.amazon.com/dp/B072FVQNWM?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "June 1, 2017",
                "Brightness": "92",
                "Number of Pieces": "4000",
                "Size": "8 Ream | 4000 Sheets",
                "Sheet Size": "8.5 x 11",
                "Global Trade Identification Number": "50010199113646",
                "ASIN": "B072FVQNWM",
                "Material Type": "Paper",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Is Discontinued By Manufacturer": "No",
                "Brightness Rating": "92",
                "Manufacturer": "Sylvamo",
                "Cover Material": "paper",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "8",
                "Material Features": "Recyclable",
                "Color": "White",
                "Item model number": "113640C",
                "Manufacturer Part Number": "113640C",
                "Sheet Count": "4000",
                "Material Feature": "Recyclable",
                "Paper Finish": "Smooth",
                "Brand": "Hammermill",
                "Brand Name": "Hammermill",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Paper Size": "8.5 x 11",
                "Item Weight": "40 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Ream | 500 Sheets"
                            },
                            {
                                "index": 1,
                                "displayString": "3 Ream | 1500 Sheets"
                            },
                            {
                                "index": 2,
                                "displayString": "5 Ream | 2500 Sheets"
                            },
                            {
                                "index": 3,
                                "displayString": "8 Ream | 4000 Sheets"
                            },
                            {
                                "index": 4,
                                "displayString": "10 Ream | 5000 Sheets"
                            },
                            {
                                "index": 5,
                                "displayString": "Pallet | 100k Sheets"
                            },
                            {
                                "index": 6,
                                "displayString": "Pallet | 150k Sheets"
                            },
                            {
                                "index": 7,
                                "displayString": "Pallet | 192k Sheets"
                            },
                            {
                                "index": 8,
                                "displayString": "Pallet | 200k Sheets"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "3 Hole (8.5x11)"
                            },
                            {
                                "index": 1,
                                "displayString": "A4"
                            },
                            {
                                "index": 2,
                                "displayString": "Letter (8.5x11)"
                            },
                            {
                                "index": 3,
                                "displayString": "Legal (8.5x14)"
                            },
                            {
                                "index": 4,
                                "displayString": "Ledger (11x17)"
                            },
                            {
                                "index": 5,
                                "displayString": "Premium CC"
                            },
                            {
                                "index": 6,
                                "displayString": "Premium LP"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B000EFLV7W",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B000V7V0BU",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B06XRMJPJC",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B06XC9321S",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B0185KP7QS",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B072FVQNWM",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B0017DDGQE",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B086XKC7SQ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B00U03708C",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B00006IDPA",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B01MU4RXEE",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B01GP0XPYG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 6
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B08624VBL4",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B01N1WHTOL",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 8
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B086XLGM6J",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 8
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B019923RZY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 8
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B08624Y8K9",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 8
                            },
                            {
                                "index": 1,
                                "value": 6
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "The Hammermill Printer Paper 99.99% Jam-Free: You will not experience more than one jam in 10,000 sheets using Hammermill copy paper on your high-speed digital printer or we will replace your Hammermill printer paper purchase. We test more than 13. 5 million sheets of paper every year to make sure that each sheet is consistent. Then we test our printer papers on all kinds of printer and copier equipment to ensure that our paper will work well for you, every time, on every machine. Make sure it’s original Hammermill quality: look for “Ships from and sold by” at the top of the page, under the product title. “It’s More Than Just Paper” to us and millions of sustainable forestry workers across America, including American family tree farmers. Hammermill printer papers are made with renewable resources from certified sustainably managed forests. We want our business to last for generations and that means taking good care of our environment. This Hammermill copy paper is an economical printer paper for multipurpose print and copy use. It is available in 8.5 x 11 letter size paper and 8.5 x 14 legal size paper. Hammermill Copy Paper is available in a single ream (500 sheets of paper) and in cases of paper-wrapped 3 reams (1,500 sheets), 5 reams (2,500 sheets), 6 packs of 400 sheets (2,400 sheets), 8 reams (4,000 sheets), 10 reams (5,000 sheets), in a bulk pack of 750 sheets, and a single pack of 400 sheets. Also available in full pallets and truckloads. Choose from items listed at top of page in size and style name.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "Sustainability Features",
                        "message": "Products with trusted sustainability certification(s).",
                        "link": null,
                        "type": "SUSTAINABILITY_BADGE",
                        "fragments": [
                            {
                                "title": "Forestry practices",
                                "message": "Made with materials from well-managed forests, recycled materials, and/or other controlled wood sources.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            }
                        ]
                    }
                }
            ]
        },
        {
            "asin": "B073H7VJ37",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.KSOSTEY2TIEMUKVFRGAGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQRDXM4JCNF3TF3CU5AHTYVEFAI5GNUQZEWM7C5NN6PMO7YBEPKJJ6GRVNQZNGUDQXG7Z6WRAAAFSDRWO5L2LR7DM6T3XKM3HJKC67KUTPLZOQCDKBBMXY74RPPRNQ7BLGA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B073H7VJ37"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "4PmW8QgQFFoMaMl7WhtyFgaPUPTvA38UlzTfGx%2BN7LPcjl9eYEoX%2FaInk80%2F5PK3D7y2kFxG%2FO4gwiKuXSGWcols4OCstFKysshJi4EeYIsiOoOf3cWLKHr8V6N5FrJYFBypNvrK1C9eJngYCSzRajRHEsqHjuFT",
                        "price": {
                            "value": {
                                "amount": 60.67,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 61.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 30,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 60.67,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2 - 7 units",
                                    "unitPrice": {
                                        "amount": 59.99,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "8+ units",
                                    "unitPrice": {
                                        "amount": 59.35,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23. Order within 14 hrs 44 mins"
                    }
                ]
            },
            "features": [
                "10 reams of letter-size 30% recycled multipurpose copy paper (5,000 sheets total)",
                "Works with laser/inkjet printers, copiers, and fax machines",
                "High-quality 20-pound weight for economical printing and resistance to paper jams",
                "Bright white for better contrast; 92 GE brightness",
                "Acid-free for long-lasting strength; made in the USA from imported materials; measures 8.5 by 11 inches"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Bright White 30% Recycled Multipurpose Copy Printer Paper, 8.5\" x 11\", 10 Reams, 5000 Count (Sheets)",
            "url": "https://www.amazon.com/dp/B073H7VJ37?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "December 4, 2017",
                "Brightness": "92",
                "Number of Pieces": "5000",
                "Size": "10 Reams | 5000 Count (Sheets)",
                "Sheet Size": "8.5 x 11 inches",
                "UPC": "841710190250",
                "ASIN": "B073H7VJ37",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Brightness Rating": "92",
                "Manufacturer": "Amazon",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "10",
                "Material Features": "Recyclable",
                "Color": "White",
                "Item model number": "AZ851130R",
                "Manufacturer Part Number": "AZ851130R",
                "Sheet Count": "5000",
                "Material Feature": "Recyclable",
                "Paper Finish": "Smooth",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Paper Size": "8.5 x 11 inches",
                "Item Weight": "50 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Ream | 500 Count (Sheets)"
                            },
                            {
                                "index": 1,
                                "displayString": "3 Reams | 1500 Count (Sheets)"
                            },
                            {
                                "index": 2,
                                "displayString": "10 Reams | 5000 Count (Sheets)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B073H7VJ39",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B073H6RY3V",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B073H7VJ37",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics 30% Recycled Multipurpose Copy Printer Paper - 8.5 x 11 Inches, 10 Ream case (5,000 Sheets)",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "Sustainability Features",
                        "message": "Products with trusted sustainability certification(s).",
                        "link": null,
                        "type": "SUSTAINABILITY_BADGE",
                        "fragments": [
                            {
                                "title": "Forestry practices",
                                "message": "Made with materials from well-managed forests, recycled materials, and/or other controlled wood sources.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            }
                        ]
                    }
                }
            ]
        },
        {
            "asin": "B07BGLT25K",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.UGU52JPA5JAYJFQJYJBWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQZTWHAK26FAJQGWVT7AVIJMXFVKJPU7QS4HRC5BQOKUF7NP2GTEHZG3X3KTAVQUMS4VK466MW53WAAMRQVGJTGKHL66IBVPUOK3R7RFIBHMQFFF7D56UC2KD26UQRIBYDQ",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B07BGLT25K"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "4DwWPOedpI0%2BDdjJ37z0mY096C7OBbLozYamxwvFNiuAHGhpHRBWedw1LDzGR6zk3blJBlTFDVhasbvmlWoqVnlzVAIYViUAcmjiqfTty5TJbMj9lUN%2Bv7ctG0IPCxdlRhersJxSbyxPSXRToSOMbuighx2cAm5b",
                        "price": {
                            "value": {
                                "amount": 4.47,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35",
                                "thresholdCost": {
                                    "value": {
                                        "amount": 35.0,
                                        "currencyCode": "USD"
                                    }
                                }
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-22T03:00:00Z",
                                    "min": "2025-04-22T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Monday, April 21. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 6.49,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "LIST_PRICE"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 3,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 4.47,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2 - 3 units",
                                    "unitPrice": {
                                        "amount": 4.36,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35"
                    }
                ]
            },
            "features": [
                "WHAT’S INCLUDED — 12 Double Rolls of Scott ComfortPlus Toilet Paper, 1-ply, 231 sheets per roll, 291.60 square feet total (12 double rolls = 24 regular rolls)",
                "COMFORT’S NOT JUST A NAME — We made Scott ComfortPlus 3x thicker than the leading value brand so you can have extra comfort every time",
                "SOFTNESS + STRENGTH — Yes, Scott ComfortPlus is soft toilet paper, but we don’t stop there. Our bath tissue is also 4x stronger than the leading value brand",
                "GENTLE ON FLUSHING — Don’t sacrifice your plumbing for comfort. This bath tissue is made with clog-free technology and dissolves 10x faster than the national brand ultra soft & strong",
                "CARE FOR OUR PLANET — At Scott, we care about our planet and that’s why we use cores made from 100% recycled paper",
                "Scott packaging and product may vary from images shown"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111704",
                    "title": "Toilet tissue",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "40030212",
                    "title": "Toilet paper",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Scott ComfortPlus Toilet Paper, 12 Double Rolls, 231 Sheets per Roll, Septic-Safe, 1-Ply Toilet Tissue",
            "url": "https://www.amazon.com/dp/B07BGLT25K?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "March 19, 2018",
                "Unit Count": "12 Count",
                "Recommended Uses For Product": "Bathroom, Home",
                "Size": "231 Sheets (Pack of 12)",
                "Identity Package Type": "Bulk",
                "UPC": "054000476181",
                "ASIN": "B07BGLT25K",
                "Material Type": "Paper",
                "Product Dimensions": "8.36 x 7.64 x 12.54 inches; 2.25 Pounds",
                "Is Discontinued By Manufacturer": "No",
                "Department": "All",
                "Manufacturer": "Kimberly-Clark",
                "Special Feature": "Absorbent, Clog Free, Perforated, Septic Safe",
                "Skin Type": "All Skin",
                "Material Features": "Septic Safe",
                "Ply Rating": "1-Ply",
                "Item dimensions L x W x H": "8.36 x 7.64 x 12.54 inches",
                "Color": "White",
                "Item model number": "10054000476188",
                "Material": "Paper",
                "Sheet Count": "2772",
                "Material Feature": "Septic Safe",
                "Sheet Count Per Unit": "231",
                "Brand": "Scott",
                "Package Type": "Bulk",
                "Brand Name": "Scott",
                "Net Content Weight": "10.23 Pounds",
                "Item Form": "Roll with Sheets",
                "Additional Features": "Absorbent, Clog Free, Perforated, Septic Safe",
                "Item Dimensions": "8.36 x 7.64 x 12.54 inches",
                "Scent": "Unscented",
                "Item Weight": "2.25 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "231 Sheets (Pack of 12)"
                            },
                            {
                                "index": 1,
                                "displayString": "231 sheet (Pack of 36)"
                            },
                            {
                                "index": 2,
                                "displayString": "231 sheet (Pack of 48)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07BGLT25K",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0DJWKTVSW",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0DX33Q9QH",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Discover premium softness at an incredible price with Scott ComfortPlus toilet paper rolls. Offering everyday comfort plus reliable strength, this bath tissue is 3x thicker and 4x stronger than the leading value brand. Our toilet tissue combines just the right amount of softness and strength by featuring thick and plush sheets for a comforting clean. These toilet paper rolls are also trusted for flushability, as Scott ComfortPlus is septic-safe, sewer-safe, clog-free, and dissolves 10x faster*. With Scott ComfortPlus 1-ply toilet paper, you get 12 Double Rolls of 231 sheets per roll. Plus, Scott toilet paper features cores made from 100% recycled paper. Get more with Scott and order Scott ComfortPlus in bulk online! (*vs national brand soft & strong)",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": 231,
            "badges": [
                {
                    "fragment": {
                        "title": "Sustainability Features",
                        "message": "Products with trusted sustainability certification(s).",
                        "link": null,
                        "type": "SUSTAINABILITY_BADGE",
                        "fragments": [
                            {
                                "title": "Forestry practices",
                                "message": "Made with materials from well-managed forests, recycled materials, and/or other controlled wood sources.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            }
                        ]
                    }
                }
            ]
        },
        {
            "asin": "B0B579K9GG",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.VGNOMQGVEFVVHCGX7HRWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ4RCZVCI3ZSCW6QME46SVMN5TFZMAA2RC4IH4RMV35S3YHVL7AUJXR3WZAHBERPNF5URWFIRNR5NJQYESY73VZ3SKBNWR3VPDSHUYNUDCOJNWKD7MI2E4YZZCZWWZH6UVQ",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B0B579K9GG"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "Zon%2BPwDo47bimeybGHxiQqV8IR3QJ7Oi%2B6dY7l3xs0dwGZBjf1bRj5m9FgRuevgi37oE7XPgkZT7pr6Nqzrr1XAYven7rEmYDxBvUhnU5Xk6WE7sQy6Hmz219895Fchy04lrTNzOvrXi7cLmWLs2Dg6yD9%2FihDI%2F",
                        "price": {
                            "value": {
                                "amount": 19.51,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-25T03:00:00Z",
                                    "min": "2025-04-25T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Thursday, April 24 on orders shipped by Amazon over $35. Order within 14 hrs 44 mins",
                                "thresholdCost": {
                                    "value": {
                                        "amount": 35.0,
                                        "currencyCode": "USD"
                                    }
                                }
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 21.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 10,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Thursday, April 24 on orders shipped by Amazon over $35. Order within 14 hrs 44 mins"
                    }
                ]
            },
            "features": [
                "Multi-purpose copy printer paper; works with laser/inkjet printers, copiers, and fax machines",
                "Includes 3 reams (500 sheets per ream, 1500 sheets total) of 24 pound copy paper",
                "Bright white for better contrast; 97 GE brightness level",
                "Acid-free material prevents the paper from yellowing over time",
                "Product dimensions: 8.5 x 11 inches (WxL, per sheet)"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Multipurpose Copy Printer Paper, 8.5-x-11-inch, 24lb, 1500 Sheets (3 Packs of 500), 97 Bright, White",
            "url": "https://www.amazon.com/dp/B0B579K9GG?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Material Features": "Biodegradable",
                "Date First Available": "September 5, 2023",
                "Brightness": "97 Brightness Level",
                "Number of Pieces": "1500",
                "Size": "1500 Sheets (3 Packs of 500)",
                "Color": "White",
                "Sheet Size": "8.5-x-11-inch",
                "Item model number": "C24-PAMB24---N8.5X11--W97",
                "Manufacturer Part Number": "C24-PAMB24---N8.5X11--W97",
                "UPC": "840095889254",
                "ASIN": "B0B579K9GG",
                "Sheet Count": "500",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Material Feature": "Biodegradable",
                "Paper Finish": "Uncoated",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Brightness Rating": "97 Brightness Level",
                "Paper Size": "8.5-x-11-inch",
                "Manufacturer": "Amazon Basics",
                "Paper Weight": "24",
                "Number of Items": "3",
                "Item Weight": "18 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 mega ream (800 sheet)"
                            },
                            {
                                "index": 1,
                                "displayString": "1500 Sheets (3 Packs of 500)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0B57CKBCT",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0B579K9GG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "An Amazon Brand",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B004O4LTFI",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.S6X4EMRMOIMHFYSXD4AWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQXIRHEOCGHTK6OJ2LPE67NOO2EEF6IF5WMGQL5X2ZKPPXYZVYFT7RJATRRODFTWZPFMWTWD5CGSRF5JLPIIKTH3VSMI2G7W4EX5E54TLKL2JE5BJ4LSAHTRGTH3347MFZA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "MERCHANT_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "MyOfficeInnovations/Staples, Inc.",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": [
                                "889 certification"
                            ]
                        },
                        "fulfiller": {
                            "name": "MyOfficeInnovations/Staples, Inc.",
                            "fulfillmentType": "MERCHANT_FULFILLMENT"
                        },
                        "offerId": "4PmW8QgQFFoMaMl7WhtyFupPF%2BrfC0nr69S19eJLK0jjd7Rtk%2BjadkfnEFhnyec80UqjoXVK3Lxdu1bOFTynYFpm4IUdC0n11X29PATjakWbqPA2tsMH1%2FyYsTrL8GwHKLG5c1FeCfmoJTIsxZEVuqyUGXvMkSi8OqHDWcpRgcIDV2A7mHJ6ew%3D%3D",
                        "price": {
                            "value": {
                                "amount": 59.58,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-25T06:59:59Z",
                                    "min": "2025-04-23T07:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery April 23 - 24",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [
                            {
                                "fragment": {
                                    "title": "Business Seller",
                                    "message": "Business Sellers: ",
                                    "link": null,
                                    "type": "BUSINESS_INVOICE_BADGE",
                                    "fragments": null
                                }
                            }
                        ],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": null,
                            "formattedPrice": null,
                            "priceType": null
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 30,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery April 23 - 24"
                    }
                ]
            },
            "features": [
                "Packaging: Packed with 10 reams per case (5000 sheets) measuring 8.5\" (W) x 11\" (L) (US Letter), this white copy paper provides a convenient, long-lasting supply for home and office use.",
                "Versatile Use: Multi-purpose copy paper 8.5 x 11 white is ideal for toner-based printers, ensuring crisp, clear black and white prints. It also works seamlessly with laser, copier, and fax machines.",
                "Hassle-free Printing: This printing paper has a smooth texture, making it perfect for consistent ink and toner distribution; dries quickly and prevents paper jams.",
                "Professional Print Quality: The crisp white printing paper with a high brightness rating (92 US, 104 Euro) ensures sharp, clear prints and professional-looking documents.",
                "Acid-free Paper: Keep your important documents looking their best with this acid-free copy paper, which prevents discoloration and deterioration for long."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Staples TRU RED 8.5x11 Copy Paper 20 lb. 92-Bright 5000 Sheets/Carton",
            "url": "https://www.amazon.com/dp/B004O4LTFI?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "August 19, 2016",
                "Brightness": "92",
                "Number of Pieces": "1",
                "Size": "5,000 Sheets",
                "Sheet Size": "8.5x11 inches",
                "UPC": "718103026932",
                "Global Trade Identification Number": "00718103026932",
                "ASIN": "B004O4LTFI",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Is Discontinued By Manufacturer": "No",
                "Brightness Rating": "92",
                "Manufacturer": "Staples",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Material Features": "Biodegradable",
                "Color": "White",
                "Item model number": "staples50009220new",
                "Manufacturer Part Number": "staples50009220new",
                "Sheet Count": "5000",
                "Material Feature": "Biodegradable",
                "Paper Finish": "Smooth",
                "Brand": "STAPLES",
                "Brand Name": "STAPLES",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Paper Size": "8.5x11 inches",
                "Item Weight": "20 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Staples copy paper is an essential item to keep in stock. Ideal for everyday needs at the printer, copier or fax machine, this paper is a basic supply that everyone in your home or office reaches for during routine tasks. Recommended especially for black and white printing and toner-based printing devices, this copy paper is bright white for a crisp, professional printed document. Acid-free to resist yellowing and crumbling, staples copy paper keeps your documents looking good whenever you need them.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B01FIK0PXI",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.YOO6YJ35EQYI5LV7GWEWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQTVSN7ZEQND33IIL3UBV2HVAHUNQBLNQTZXRVB3QG4DZTSD7I7WAKYVDA5SH3GE4B4YBX5KDJGPLY7K5YXWSYC56C37AWRTAGTABYFFER5V54AJKKIN7TVFQCMN3OHMZMA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B01FIK0PXI"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "OlTiJt7%2FJrzTlmSVcSFUYQdDwmv8QWbQRKT02mbxxGAzFD2jnfwr5shJZzb7GWbxNaF7lT3FqG0BqsiWRUn8dHrV%2BnONpq%2BGU9zvAvHjMFJXocnc9tkRUx9WTMggHimitfPD3yHRRFJXpDHkPhw%2BIxrfBYL6%2FMBj",
                        "price": {
                            "value": {
                                "amount": 19.51,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-25T03:00:00Z",
                                    "min": "2025-04-25T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Thursday, April 24 on orders shipped by Amazon over $35. Order within 14 hrs 44 mins",
                                "thresholdCost": {
                                    "value": {
                                        "amount": 35.0,
                                        "currencyCode": "USD"
                                    }
                                }
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 21.44,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "LIST_PRICE"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 90,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 19.51,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2 - 90 units",
                                    "unitPrice": {
                                        "amount": 19.35,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Thursday, April 24 on orders shipped by Amazon over $35. Order within 14 hrs 44 mins"
                    }
                ]
            },
            "features": [
                "Made in USA: HP Papers is sourced from renewable forest resources and has achieved production with 0% deforestation in North America.",
                "Optimized for HP technology: All HP Papers provide premium performance on HP equipment, as well as on all other printer and copier equipment.",
                "Perfect everyday office paper: Superior quality, reliability, and dependability for high-volume printing at home, at school and in the office. Perfect for everyday black and white printing.",
                "Certified sustainable: HP Office20 20lb printer paper is Forest Stewardship Council (FSC) certified and contributes toward satisfying credit MR1 under LEED (Leadership in Energy and Environmental Design).",
                "ColorLok technology printing paper: ColorLok technology provides more vivid colors, bolder blacks and faster drying.",
                "Acid free paper: HP Office 20lb print and copy paper prevents yellowing over time to ensure a long-lasting appearance for added archival quality."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                },
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "HP Printer Paper | 8.5 x 11 Paper | Office 20 lb | 3 Ream Case - 1500 Sheets | 92 Bright | Made in USA - FSC Certified | 112090C, White",
            "url": "https://www.amazon.com/dp/B01FIK0PXI?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "June 1, 2016",
                "Brightness": "92",
                "Number of Pieces": "3",
                "Size": "3 Ream | 1500 Sheets",
                "Sheet Size": "8.5 x 11 inches",
                "UPC": "764025012096 788115115542",
                "Global Trade Identification Number": "00764025012096",
                "ASIN": "B01FIK0PXI",
                "Material Type": "paper",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Is Discontinued By Manufacturer": "No",
                "Brightness Rating": "92",
                "Manufacturer": "Sylvamo",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "1",
                "Material Features": "Renewable",
                "Color": "White",
                "Item model number": "112090",
                "Manufacturer Part Number": "112090",
                "Sheet Count": "1500",
                "Material Feature": "Renewable",
                "Paper Finish": "Smooth",
                "Brand": "HP Papers",
                "Brand Name": "HP Papers",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Paper Size": "8.5 x 11 inches",
                "Item Weight": "15 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Ream | 500 Sheets"
                            },
                            {
                                "index": 1,
                                "displayString": "3 Ream | 1500 Sheets"
                            },
                            {
                                "index": 2,
                                "displayString": "5 Ream | 2500 Sheets"
                            },
                            {
                                "index": 3,
                                "displayString": "10 Ream I 5000 Sheets"
                            },
                            {
                                "index": 4,
                                "displayString": "Quickpack | 2500 Sheets"
                            },
                            {
                                "index": 5,
                                "displayString": "Pallet | 200000 Sheets"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Letter (8.5 x 11)"
                            },
                            {
                                "index": 1,
                                "displayString": "Legal (8.5 x 14)"
                            },
                            {
                                "index": 2,
                                "displayString": "Ledger (11 x 17)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B07GDS6PLC",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00006L389",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B000EFMD9C",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B01FIK0PXI",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B07GDS6W4W",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00ZDHASZC",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00006L385",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B079YXDYL9",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "HP papers is a premium line of uncoated printing paper optimized to provide superior print paper performance when used with HP hardware and supplies and in all other makes and models of printing and copying equipment. Launched in 1996, HP papers are manufactured and marketed exclusively worldwide in over 75 countries by Sylvamo, a globally recognized leader in paper products, under license from the Hewlett-Packard company. With a diverse range of products designed to support a wide range of print applications, from everyday copies to full-color presentations, you can be assured of consistent, high-quality print performance every time. HP Office20 paper is a 20 lb, Super smooth economical and multipurpose paper for Everyday printing at home, at school and in the office. HP Office20 was created specifically for high-volume Black and White printing and copying. Engineered with ColorLok technology HP Office20 paper provides brighter colors and bolder blacks for GREAT-LOOKING reports and impressive business documents. HP Office20 printer paper is available in 8. 5 x 11 letter size paper, 8. 5 x 11 3 hole punched Letter size paper, and 8. 5 x 14 legal size paper.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "Sustainability Features",
                        "message": "Products with trusted sustainability certification(s).",
                        "link": null,
                        "type": "SUSTAINABILITY_BADGE",
                        "fragments": [
                            {
                                "title": "Forestry practices",
                                "message": "Made with materials from well-managed forests, recycled materials, and/or other controlled wood sources.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            }
                        ]
                    }
                }
            ]
        },
        {
            "asin": "B00UFX19H0",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.2R5USYP5JVGJLGLB57HWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ2QMHY3D3IZ5ZUZEYR5YOGRGWFK5TBFTNZROXDYSXRABOSALIIYGC2M53V47PAIJARQ35IWFBBYBOX3B536QKVHBJPQOV4RMEDQCWNJATBF67NBE24AUNXFVYDJYLCNN6A",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B00UFX19H0"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "Xc3wEoMJM2CSyF6%2B10fExy8zPhe%2B5%2FpfJ5CepZy4ix3k2Tg2Rj8nAx9uH4fu3kvW8OioMndMapVF9NDWtCxOEQ0%2B17VEMIsrlnHXBGQK62VX8QQ1FjxbcWLpzYmCOaZZanNDnE3XTTy2UjkkFO9T5a1DnZY497bN",
                        "price": {
                            "value": {
                                "amount": 28.22,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-26T03:00:00Z",
                                    "min": "2025-04-26T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Friday, April 25 on orders shipped by Amazon over $35",
                                "thresholdCost": {
                                    "value": {
                                        "amount": 35.0,
                                        "currencyCode": "USD"
                                    }
                                }
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 28.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 10,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 28.22,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2 - 10 units",
                                    "unitPrice": {
                                        "amount": 27.96,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Friday, April 25 on orders shipped by Amazon over $35"
                    }
                ]
            },
            "features": [
                "Made in USA: HP Papers is sourced from renewable forest resources and has achieved production with 0% deforestation in North America. See images.",
                "Perfect everyday office paper: Superior quality, reliability, and dependability for high-volume printing at home, at school and in the office. Perfect for everyday black and white printing.",
                "Certified sustainable: HP Copy&Print20 20lb printer paper is Forest Stewardship Council (FSC) certified and contributes toward satisfying credit MR1 under LEED (Leadership in Energy and Environmental Design). See images.",
                "Colorlok technology printing paper: Colorlok technology provides more vivid colors, bolder blacks and faster drying. See images.",
                "Acid free paper: HP Copy&Print20 print and copy paper prevents yellowing over time to ensure a long-lasting appearance for added archival quality."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "HP Printer Paper | 8.5 x 11 Paper | Copy &Print 20 lb | 5 Ream Case - 2500 Sheets| 92 Bright Made in USA - FSC Certified| 200350C",
            "url": "https://www.amazon.com/dp/B00UFX19H0?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "June 1, 2016",
                "Brightness": "92",
                "Number of Pieces": "5",
                "Size": "5 Pack | 2500 Sheets",
                "Sheet Size": "8.5x11",
                "UPC": "764025000352",
                "Global Trade Identification Number": "00764025000352",
                "ASIN": "B00UFX19H0",
                "Material Type": "paper",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Is Discontinued By Manufacturer": "No",
                "Brightness Rating": "92",
                "Manufacturer": "Sylvamo",
                "Cover Material": "paper",
                "Paper Weight": "9",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "5",
                "Material Features": "Renewable",
                "Color": "White",
                "Item model number": "200350C",
                "Manufacturer Part Number": "200350C",
                "Sheet Count": "2500",
                "Material Feature": "Renewable",
                "Paper Finish": "Uncoated",
                "Brand": "HP Papers",
                "Brand Name": "HP Papers",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Paper Size": "8.5x11",
                "Item Weight": "25 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Pack | 500 Sheets"
                            },
                            {
                                "index": 1,
                                "displayString": "1 Pack | 750 Sheets"
                            },
                            {
                                "index": 2,
                                "displayString": "3 Pack | 1500 Sheets"
                            },
                            {
                                "index": 3,
                                "displayString": "4 Pack | 3000 Sheets"
                            },
                            {
                                "index": 4,
                                "displayString": "5 Pack | 2500 Sheets"
                            },
                            {
                                "index": 5,
                                "displayString": "10 Pack | 5000 Sheets"
                            },
                            {
                                "index": 6,
                                "displayString": "Pallet | 192000 Sheets | 64 MegaPk cases"
                            },
                            {
                                "index": 7,
                                "displayString": "Pallet | 192000 Sheets | 80 cases"
                            },
                            {
                                "index": 8,
                                "displayString": "Pallet | 200000 Sheets"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "Bulk Pack (8.5x11)"
                            },
                            {
                                "index": 1,
                                "displayString": "Standard Size (8.5x11)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B001AFL8GY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0050MRBA0",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B086X8B532",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B00U036ZY2",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00UFX19H0",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B00U036ZRY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B01BLUOVWK",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 6
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B01BLUOU8U",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 7
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B01BLUOV4S",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 8
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "HP Papers is a premium line of uncoated printing paper optimized to provide superior print paper performance when used with HP hardware and supplies and in all other makes and models of printing and copying equipment. Launched in 1996, HP Papers are manufactured and marketed exclusively worldwide in over 75 countries by Sylvamo, a globally recognized leader in paper products, under license from the Hewlett-Packard Company. With a diverse range of products designed to support a wide range of print applications, from everyday copies to full-color presentations, you can be assured of consistent, high-quality print performance every time. HP Copy&Print20 Paper is a 20 lb, super smooth, economical and multipurpose paper for everyday printing at home, at school and in the office. HP Copy&Print20 offers HP quality and reliability at a great value. Its ultra white shade (92 bright, 155 whiteness) and ColorLok Technology provides brighter colors and bolder blacks for reports, school work and all general printing needs. HP Copy&Print20 printer paper is available in 8.5 x 11 letter size paper.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "Sustainability Features",
                        "message": "Products with trusted sustainability certification(s).",
                        "link": null,
                        "type": "SUSTAINABILITY_BADGE",
                        "fragments": [
                            {
                                "title": "Forestry practices",
                                "message": "Made with materials from well-managed forests, recycled materials, and/or other controlled wood sources.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            }
                        ]
                    }
                }
            ]
        },
        {
            "asin": "B010BYJKWS",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.YOAHL5XUF2N4L2I57BCGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQUS6F3L73N6IYCE5AZ5LKOB5LZQWQSZFO4K7Z2XIYYK3PULZBZ3UGNRLN62VDET4GEHQCS32RLC57JM54QKM6JFSHKL2BBS4CCBIZG42JC2K57BKPJGFB6SBR3EEWTR4TA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "MERCHANT_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "BIDFORTIME",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "BIDFORTIME",
                            "fulfillmentType": "MERCHANT_FULFILLMENT"
                        },
                        "offerId": "v4c8RRQnVIlTVIH7cfWW%2FB%2BWK6dm1FBQ1WLGMA7IRASaquE3lPeVa%2FCU7ky2rEX6IchVkNGEsDsjExwQqjT00XVqJInrNALdzOJnyxxMc05%2FiRZdo2I%2FtAcAe2zzCrXH3V%2BEqaNWBo2wbRjuSK1hmepthSWBAaUyz%2BKNOXWFi0nYa8v0j7f7fA%3D%3D",
                        "price": {
                            "value": {
                                "amount": 24.95,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "NEW"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-05-01T06:59:59Z",
                                    "min": "2025-04-30T07:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 30",
                                "thresholdCost": null
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 26.14,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-23T06:59:59Z",
                                    "min": "2025-04-22T07:00:00Z"
                                },
                                "deliveryInformation": "$26.14 delivery Tuesday, April 22. Order within 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 27.09,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "LIST_PRICE"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 30,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 30"
                    }
                ]
            },
            "features": [
                "Restock your office with this case of paper",
                "104 (Euro), 92 (U.S.) brightness yields vivid text and images.",
                "Acid-free paper resists discoloration over time.",
                "Keep spare paper on hand so you never run out in the middle of a job.",
                "20-lb paper is ideal for everyday business needs."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Office Depot Copy Print Paper, 8 1/2in. x 11in., 20 Lb, Bright White, 500 Sheets Per Ream, Case Of 3 Reams, 1008",
            "url": "https://www.amazon.com/dp/B010BYJKWS?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Material Features": "Eco Friendly",
                "Date First Available": "June 24, 2015",
                "Number of Pieces": "1500",
                "Color": "White",
                "Sheet Size": "8-1/2-x-11-inch Inches",
                "Manufacturer Part Number": "1008",
                "UPC": "735854711092 735854931827 735854844851 735854005504",
                "ASIN": "B010BYJKWS",
                "Sheet Count": "500",
                "Product Dimensions": "12\"L x 9\"W",
                "Material Feature": "Eco Friendly",
                "Paper Finish": "Smooth",
                "Brand": "Office Depot",
                "Brand Name": "Office Depot",
                "Item Dimensions L x W": "12\"L x 9\"W",
                "Paper Size": "8-1/2-x-11-inch Inches",
                "Manufacturer": "OFFICE DEPOT",
                "Paper Weight": "20"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "If you and your office go through reams of paper in no time flat, stock up on Office Depot copy and print paper. This Office Depot paper is made for smooth, consistent performance and is available in large quantities, so it's easy to keep your production stations stocked and ready to go. 104 (Euro), 92 (U.S.) brightness yields vivid text and images. Acid-free paper resists discoloration over time. Keep spare paper on hand so you never run out in the middle of a job. 20-lb paper is ideal for everyday business needs. Includes 500 sheets per ream in a case of 3 reams. Eco-conscious choice - has one or more meaningful eco-attributes or eco-labels. Have the right tools in place to prepare your workforce to work from anywhere.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B073H4VVC7",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.75SKMCRLH3DH5IJJFYIWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQWP4AAOHIYSCTU2ONPZPVN33Y27BVVG5JR4PBDLUFTAIQEUCRNFOUHWDU7XQSNU7QTHKS4O3DXSUP74SWY7BUZE6GSY6FWVYL2QEO57NTJWSN7LC3ELADT2SXAW6HLL3QA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B073H4VVC7"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "DZ3og9smDQVlPvgGm5skAi98GbY[[[###REDACTED_AWS_SECRET_KEY_REDACTED###]]]2BK4HDPVvc5g4Et0r%2BmkFX9lZXmpUTctK4HdlkPS5T3bl30FZGv0wxt4YsC9Ee8QyhcpeFHLBk%2BpwU8iKDt8w9HOhF4d%2BJa",
                        "price": {
                            "value": {
                                "amount": 7.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35",
                                "thresholdCost": {
                                    "value": {
                                        "amount": 35.0,
                                        "currencyCode": "USD"
                                    }
                                }
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-22T03:00:00Z",
                                    "min": "2025-04-22T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Monday, April 21. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 9.43,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 90,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 7.99,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2 - 3 units",
                                    "unitPrice": {
                                        "amount": 7.71,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "4 - 7 units",
                                    "unitPrice": {
                                        "amount": 7.06,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "8 - 90 units",
                                    "unitPrice": {
                                        "amount": 6.67,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35"
                    }
                ]
            },
            "features": [
                "1 ream (500 sheets total) of 8.5 x 11 inch white copier and printer paper for home or office use",
                "Multipurpose letter size copy paper works with laser/inkjet printers, copiers, and fax machines",
                "Smooth 20 pound weight paper for consistent ink and toner distribution; dries quickly and resists paper jams",
                "Acid-free to prevent yellowing",
                "Bright white (96 GE) offers great contrast for crisp printing and vivid color"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Multipurpose Copy Printer Paper, 20 Pound, White, 96 Brightness, 8.5 x 11 Inch, 1 Ream , 500 Sheets Total",
            "url": "https://www.amazon.com/dp/B073H4VVC7?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "March 30, 2018",
                "Brightness": "96",
                "Size": "1 Ream | 500 Sheets",
                "Sheet Size": "8.5 x 11 Inch",
                "UPC": "841710190281",
                "Global Trade Identification Number": "00841710190281",
                "ASIN": "B073H4VVC7",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Brightness Rating": "96",
                "Manufacturer": "Amazon",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "1",
                "Material Features": "Recyclable",
                "Color": "White",
                "Item model number": "AZ851120HB1R",
                "Manufacturer Part Number": "AZ851120HB1R",
                "Sheet Count": "500",
                "Material Feature": "Recyclable",
                "Paper Finish": "Smooth",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Paper Size": "8.5 x 11 Inch",
                "Item Weight": "5 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Ream | 500 Sheets"
                            },
                            {
                                "index": 1,
                                "displayString": "5000 count(10 pack of 500 sheets)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B073H4VVC7",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B073HBNY9W",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics Multipurpose Copy Printer Paper - 96 Bright White, 8.5 x 11 Inches, 1 Ream (500 Sheets)",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B00BT2MG2I",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.KAPGIHY6TNTZKW4PH7DGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQT44LTOTAQ54XJHNENZPHFTW3H7NN3DGYG7EVPHFKXU2MDHPG33TI3T63A2HNR2PWOAQ73O76I2QMCYQLJWLNMFKQJBQOFXGT6AVZ65HDHSSMXBZFIGYYHXBPSXO22XNHA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B00BT2MG2I"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "ayx0AOINxaigEbwaiYQaYh6Kwmpic4blnguCZnyMw6oZHNArU6Nn9Y7g2vCdbw8xdgfJ0E2BB6HtKTYJOnFbj8OGQYEA%2FYnEVY7d7NusvmRQ9azIL5hECfEUa22murnYNHdmsATG%2BpEsw1rDJLYH%2B4%2FUWgsYfy3f",
                        "price": {
                            "value": {
                                "amount": 38.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23",
                                "thresholdCost": null
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-23T03:00:00Z",
                                    "min": "2025-04-23T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Tuesday, April 22. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 44.39,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 10,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 38.99,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2 - 10 units",
                                    "unitPrice": {
                                        "amount": 38.66,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23"
                    }
                ]
            },
            "features": [
                "PREMIUM COPY PAPER – Hammermill Premium 24lb Multi-Purpose Copy Paper provides a versatile sheet designed to run effectively through all office and home printing equipment. 100% USA made to support millions of sustainable forestry jobs.",
                "COLORLOK TECHNOLOGY – This multi-purpose copier paper features ColorLok Technology for colors that are 30% brighter, blacks that are 60% bolder and ink that dries 3x faster. Plus, this acid-free white copy paper will not yellow over time.",
                "BRIGHT FINISH – The high 97 brightness and heavy weight basis weight combine in this copying paper to produce high quality documents you will be proud to distribute. It’s perfect for printing proposals, newsletters, forms, direct mail, invoices and more.",
                "SUSTAINABLY MADE IN THE USA – Original Hammermill printer paper is Forest Stewardship Council (FSC) certified, which means they are made with renewable resources from third-party certified, sustainably managed forests."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "24260604",
                    "title": "",
                    "type": "ECLASS"
                },
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Hammermill Printer Paper, Premium Multipurpose Paper 24 lb, 8.5 x 11 - 5 Ream (2,500 Sheets) - 97 Bright, Made in the USA, 105810C",
            "url": "https://www.amazon.com/dp/B00BT2MG2I?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "March 30, 2011",
                "Brightness": "97.00",
                "Number of Pieces": "2500",
                "Size": "5 Ream | 2500 Sheets",
                "Sheet Size": "8.5x11 inches",
                "Global Trade Identification Number": "50010199105818, 00010199005816",
                "ASIN": "B00BT2MG2I",
                "Material Type": "Paper",
                "Product Dimensions": "8.5\"L x 11\"W",
                "Is Discontinued By Manufacturer": "No",
                "Brightness Rating": "97.00",
                "Manufacturer": "Hammermill",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "24",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "5",
                "Material Features": "Renewable",
                "Color": "White",
                "Item model number": "105810C",
                "Manufacturer Part Number": "105810C",
                "Sheet Count": "2500",
                "Material Feature": "Renewable",
                "Paper Finish": "Glossy",
                "Brand": "Hammermill",
                "Brand Name": "Hammermill",
                "Item Dimensions L x W": "8.5\"L x 11\"W",
                "Paper Size": "8.5x11 inches",
                "Item Weight": "384 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Ream | 500 Sheets"
                            },
                            {
                                "index": 1,
                                "displayString": "5 Ream | 2500 Sheets"
                            },
                            {
                                "index": 2,
                                "displayString": "Pallet | 160k Sheets"
                            },
                            {
                                "index": 3,
                                "displayString": "Pallet | 200k Sheets"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "20 lb"
                            },
                            {
                                "index": 1,
                                "displayString": "24 lb"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B009ZMP62Q",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00BT2SSKM",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0074WQN12",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00BT2MG2I",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B01997163Y",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B01996QU4K",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "This Hammermill Premium Multi-Purpose Copy Paper provides a versatile sheet that’s designed to run effectively through all office and home printing equipment. The high 97 brightness and heavy basis weight combine to produce a printer paper you’ll be proud to distribute. It’s the perfect copying paper for proposals, newsletters, forms, reports, faxes, direct mail, invoices, correspondences, and more. With this multi-purpose copy and print paper, you’ll get consistently reliable results in all home and office printers/machines. It also features ColorLok Technology which produces colors that are 30% brighter, blacks that are 60% bolder and ink that dries 3x faster for less smearing. This acid-free white paper prevents sheets from yellowing over time to ensure long-lasting archival quality. Our 99.99. 000 sheets using Hammermill copying paper on your high-speed digital printer or we will replace your Hammermill paper purchase. We test more than 13.5 million sheets of paper every year to make sure that each sheet is consistent. Then we test our papers on all kinds of printer and copier equipment to ensure that it will work for you, every time, on every machine. Did you know that you are helping to conserve and restore forests when you buy Hammermill paper? “It’s More Than Just Paper” to us and millions of sustainable forestry workers across America, including American family tree farmers. Hammermill printer papers are made with renewable resources from certified sustainably managed forests, so you can feel good about using our products. MAKE SURE IT’S ORIGINAL HAMMERMILL QUALITY: look for “Ships from and sold by Amazon” at the top of the page, under the product title.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "Sustainability Features",
                        "message": "Products with trusted sustainability certification(s).",
                        "link": null,
                        "type": "SUSTAINABILITY_BADGE",
                        "fragments": [
                            {
                                "title": "Forestry practices",
                                "message": "Made with materials from well-managed forests, recycled materials, and/or other controlled wood sources.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            }
                        ]
                    }
                }
            ]
        },
        {
            "asin": "B08DXWCVCT",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.U4AQRMHZSDQTCMP2554WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ7WLTTORNEP6G5WMKHJMNXW67GF7UVUQY7BFOPMSUVDXA4OGRQCUWLUW6RGU27G3A3MM2QZT2BONZMRNXNSCDRHKZFYXMQSPMM4E5LPGHEI2B4LT36FIZDINFUYM7K5ODQ",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "MERCHANT_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "ODP Business Solutions",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "ODP Business Solutions",
                            "fulfillmentType": "MERCHANT_FULFILLMENT"
                        },
                        "offerId": "A%2Fz4KHrjhZ%2F8LzbJkxWUAJHc5V23NTSEhXXWpGDUMKSI4vOUQ7vXCbAXWzdN1GLMusx%2BkGqZo%2BfTsMhyrZInrYtEb1BD7obuzKimXD0otlgb6Nk64FjzsWfj1TrFEaU5NVC6HoOoJ6uubkK8mJC0np5AI7GrjUCM6BK6d6O5BR1kdRqvCxZDod3bLPsLs1jT",
                        "price": {
                            "value": {
                                "amount": 54.57,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "NEW"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T06:59:59Z",
                                    "min": "2025-04-22T07:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery April 22 - 23",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": null,
                            "formattedPrice": null,
                            "priceType": null
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 30,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery April 22 - 23"
                    }
                ]
            },
            "features": [
                "Print documents with crisp text and vibrant images using this Office Depot Brand Business Copy and Print paper. The 20-lb weight is great for everyday use with an acid-free formula that resists yellowing and fading over time.",
                "20-lb paper is ideal for everyday use.",
                "500 sheets per ream to keep your office stocked.",
                "Brilliant 92-bright surface gives you vibrant images.",
                "Acid-free Office Depot paper won't yellow or fade over time."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Office Depot® Brand Business Multi-Use Printer & Copier Paper, Letter Size (8 1/2\" x 11\"), 5000 Total Sheets, 92 (U.S.)",
            "url": "https://www.amazon.com/dp/B08DXWCVCT?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Material Features": "Biodegradable",
                "Date First Available": "July 30, 2020",
                "Brightness": "92",
                "Number of Pieces": "5000",
                "Color": "White",
                "Sheet Size": "8.5-x-11-inch",
                "Manufacturer Part Number": "ODBCP92-CTN",
                "UPC": "735854754051",
                "ASIN": "B08DXWCVCT",
                "Sheet Count": "500",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Material Feature": "Biodegradable",
                "Paper Finish": "Glossy",
                "Brand": "Office Depot",
                "Brand Name": "Office Depot",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Brightness Rating": "92",
                "Paper Size": "8.5-x-11-inch",
                "Manufacturer": "OFFICE DEPOT",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Item Weight": "51.2 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Print documents with crisp text and vibrant images using this Office Depot Brand Business Copy and Print paper. The 20-lb weight is great for everyday use with an acid-free formula that resists yellowing and fading over time. 20-lb paper is ideal for everyday use. 500 sheets per ream to keep your office stocked. Brilliant 92-bright surface gives you vibrant images. Acid-free Office Depot paper won't yellow or fade over time. Eco-conscious choice - has one or more meaningful eco-attributes or eco-labels.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B09NW92T8Q",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.HGNBYBKMWYEHAQFFYPDGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQVTD4FEOP7URQZCSZLEBH5MKHO7HLCRBXYWYUB6INAJPQ7J435WYTUMIEXVHMTPJJEBURXA62X7HKRGTP7CLFCQ533S32SIAENE24WCGSAQW43URH4CVGXK3QMRXUVCENA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon.com",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon.com",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "aSbjEVRO%2FPTDF997ZgH7yuQT5fXTsbENsdIlFuPN3TWPkN106HOdTRJsQA%2F6n3kgLQ2wc8dgUtz%2B8MVTEzTAlbXQhsxzE0xnoLJXiuLC3WDokBX0j5cUhl1QHo6hle2l4O5ZJnq6piSXYpPawnjU2Q%3D%3D",
                        "price": {
                            "value": {
                                "amount": 11.59,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "NEW"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35",
                                "thresholdCost": {
                                    "value": {
                                        "amount": 35.0,
                                        "currencyCode": "USD"
                                    }
                                }
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-23T03:00:00Z",
                                    "min": "2025-04-23T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Tuesday, April 22. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": null,
                            "formattedPrice": null,
                            "priceType": null
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 4,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35"
                    }
                ]
            },
            "features": [
                "Sparkle Pick-A-Size Paper Towels are strong for everyday messes at a value that's just right for your budget",
                "Each Pick-A-Size Double Roll has 110 2-ply sheets and is equal to 2 Regular Paper Towel Rolls, so you can change the roll less often",
                "Refresh your space without busting your budget. Try Sparkle - the affordable, effective and bright choice in paper towels",
                "Great as everyday kitchen towels and household clean-up with even more uses for food prep, DIY projects, outdoors & more",
                "Sparkle paper towels are made from sustainably sourced trees; our sourcing practices are certified by the Sustainable Forestry Initiative Fiber Sourcing Standard (SFI-000007)",
                "Each paper towels pack contains 6 Double Rolls of white Sparkle Pick-A-Size paper towels"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111703",
                    "title": "Paper towels",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "40030201",
                    "title": "Paper towel",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Sparkle Pick-A-Size Paper Towels, 6 Double Rolls = 12 Regular Rolls, Everyday Value Paper Towel With Full And Half Sheets",
            "url": "https://www.amazon.com/dp/B09NW92T8Q?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "December 20, 2021",
                "Unit Count": "660.0 Count",
                "Recommended Uses For Product": "Wipe Surface",
                "Size": "110 sheet (6 Packs)",
                "UPC": "030400222382",
                "ASIN": "B09NW92T8Q",
                "Material Type": "Paper",
                "Product Dimensions": "2.87 x 0.13 x 6.22 inches; 0.01 ounces",
                "Manufacturer": "Georgia-Pacific",
                "Number of Items": "6",
                "Special Feature": "Disposable",
                "Net Content Count": "660 Sheet",
                "Material Features": "Sustainably Sourced",
                "Ply Rating": "2-Ply",
                "Package Size Name": "2-Pk.",
                "Item dimensions L x W x H": "2.87 x 0.13 x 6.22 inches",
                "Color": "Modern White",
                "Ingredients": "PAPER TOWEL",
                "Item model number": "22238",
                "Sheet Count": "660",
                "Material": "Paper",
                "Material Feature": "Sustainably Sourced",
                "Sheet Count Per Unit": "110",
                "Brand": "SPARKLE",
                "Brand Name": "SPARKLE",
                "Item Form": "Roll with Sheets",
                "Additional Features": "Disposable",
                "Item Dimensions": "2.87 x 0.13 x 6.22 inches",
                "Paper Towel Fold Type": "Single Fold",
                "Item Weight": "0.01 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "24 Count (Pack of 1)"
                            },
                            {
                                "index": 1,
                                "displayString": "110 sheet (Pack of 2)"
                            },
                            {
                                "index": 2,
                                "displayString": "110 sheet (Pack of 4)"
                            },
                            {
                                "index": 3,
                                "displayString": "110 sheet (6 Packs)"
                            },
                            {
                                "index": 4,
                                "displayString": "110 sheet (Pack of 6)"
                            },
                            {
                                "index": 5,
                                "displayString": "110 sheet (Pack of 24)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B09V1R3GWC",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B09NW8CW6P",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0D14X4T5M",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B09NW92T8Q",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B09NW83XJ2",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B09R4WJ2HG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Sparkle® Pick-A-Size® Paper Towels are strong for everyday messes! So go ahead, reach for a full or half sheet to handle life's everyday twists and turns-from unavoidable messes and spills to last-minute art projects and all the routine cleanups in between. With Sparkle® Kitchen Paper Towels on hand, you'll be prepared for whatever comes your way at an affordable price to boot! Sparkle® Pick-A-Size® Paper Towels with Thirst Pockets® are designed with a perforation in each sheet so you can choose between a full size or half size sheet for your everyday tasks. Each Double Roll contains 110 2 ply paper towel sheets. Sparkle® Paper Towels are just right for cleaning up your everyday messes without cleaning out your piggy bank. Whether you need to wipe up a mess in your kitchen, take care of small spills, shine up your windows and mirrors or wipe your hands or face clean, Sparkle® Pick-A-Size® Paper Towels allow you to spend less on your everyday messes.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": 6,
            "badges": []
        },
        {
            "asin": "B0C2D1ZH9M",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.E4BHZVCI4SDPDEI25HZWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ4SOAQ6I2IH2TGMMYXV5MPC33ONQFGFTCZAIQODHF6R52O6BENKYXBH532N7EKQRYDT6APEQZR7VH7WQBSUKFJZXQF7XNBPNMZ5R6JJ77GGM6VM3RJLE5D3MI6LE2I6ARA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon.com",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon.com",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "mTosMmCe2ALHi6jGXztZDYNzQneoOBAxwz91SrsR1owbSTThWPP3lKBiKaMpfEL8OsKY8ir1Dyw2UR7tr3ARdRxBqZPQu89c3UWnx%2F1yYiGlhZOni35ChhwZLdGKxOIsdY%2Bhw0k8eoni9Af4lnn3hg%3D%3D",
                        "price": {
                            "value": {
                                "amount": 10.71,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "NEW"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35",
                                "thresholdCost": {
                                    "value": {
                                        "amount": 35.0,
                                        "currencyCode": "USD"
                                    }
                                }
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-23T03:00:00Z",
                                    "min": "2025-04-23T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Tuesday, April 22. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": null,
                            "formattedPrice": null,
                            "priceType": null
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 4,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35"
                    }
                ]
            },
            "features": [
                "Includes 200 plates 8.62 inches paper plates",
                "The 8.62 inches plate is the perfect size for dinner, everyday meals, parties and picnics",
                "Everyday disposable plates for parties, holidays, and every day use",
                "Microwave-safe, soak proof, and cut resistant",
                "Made in the USA",
                "Running low? Restock by asking, “Alexa, reorder Amazon Basics Disposable Plate” through your Alexa device."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "52152000",
                    "title": "Domestic dishes and servingware and storage containers",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Everyday Paper Plates, 8.62 Inch, Disposable, 200 Count",
            "url": "https://www.amazon.com/dp/B0C2D1ZH9M?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Occasion Type": "Picnic",
                "Pattern": "Solid",
                "Material Features": "Disposable",
                "Date First Available": "May 18, 2023",
                "Shape": "Round",
                "Unit Count": "200 Count",
                "Occasion": "Picnic",
                "Number of Pieces": "200",
                "Recommended Uses For Product": "Appetizer, Fruit, Pizza, Sushi, Pasta, Meals, Soup, Snack, Desserts",
                "Size": "200 Count",
                "UPC": "076955775447",
                "ASIN": "B0C2D1ZH9M",
                "Material Type": "Paper",
                "Material": "Paper",
                "Material Feature": "Disposable",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Is the item dishwasher safe?": "No",
                "Manufacturer": "Amazon.com Services LLC.",
                "Additional Features": "Disposable,Resistant",
                "Seasons": "All Seasons",
                "Is Dishwasher Safe": "No",
                "Item Weight": "5.3 Pounds",
                "Special Feature": "Disposable,Resistant"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "100 Count (Pack of 1)"
                            },
                            {
                                "index": 1,
                                "displayString": "200 Count"
                            },
                            {
                                "index": 2,
                                "displayString": "300 Count"
                            },
                            {
                                "index": 3,
                                "displayString": "300 Count (Pack of 2)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0C2CY22B8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0C2D1ZH9M",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0C2D2P54Y",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B0DT6JRN54",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics-Everyday Paper Plates, 8.5\" 200 Count, Everyday disposable plates for parties, holidays, and every day use. Microwave-safe, soak proof, and cut resistant",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "#1 Best Seller",
                        "message": null,
                        "link": {
                            "text": "Disposable Plates",
                            "url": "https://www.amazon.com/gp/bestsellers/hpc/15750751?language=en_US"
                        },
                        "type": "BESTSELLER_BADGE",
                        "fragments": null
                    }
                }
            ]
        },
        {
            "asin": "B0C2CZJ1TK",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.EH3WSIFMQI4UMC6RN4JWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQRQRNKZTRYOBFNNCBSO4MGL2ZHPB2QH6CU37PYWM5WGO4JCUT26JLSP63O55SDST4WPHMTZDC6ER2FAJETOWKOUGCYWMKUJ52ULVHCJPKOV6EIRJYNPR4DS6EVL3RC2ITQ",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "QYd7OV7F8%2Brvc9lkokzDX7aut0Y0joBJAi5H%2FHU8hdRsHNkho6YtvYY1VArKcSWA0AutL8gNIf3lzK%2FdJ%2FZi%2FB0jc3fD%2FdsHcEj7VxxFS3sU8WBSk3wtRvWuwZ1ScAbP1%2Bu42u%2FrHttn4ZXfOoQc1i57%2FfrBm%2BVt",
                        "price": {
                            "value": {
                                "amount": 12.13,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35",
                                "thresholdCost": {
                                    "value": {
                                        "amount": 35.0,
                                        "currencyCode": "USD"
                                    }
                                }
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-22T03:00:00Z",
                                    "min": "2025-04-22T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Monday, April 21. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 16.02,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 3,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35"
                    }
                ]
            },
            "features": [
                "Includes 150 plates 10.06 inches paper plates",
                "The 10 inches plate is the perfect size for dinner, everyday meals, parties and picnics",
                "Everyday disposable plates for parties, holidays, and every day use",
                "Microwave-safe, soak proof, and cut resistant",
                "Made in the USA",
                "Running low? Restock by asking, “Alexa, reorder Amazon Basics Disposable Plate” through your Alexa device."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "52152000",
                    "title": "Domestic dishes and servingware and storage containers",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics Everyday Paper Plates, 10 Inch, Disposable, 150 Count",
            "url": "https://www.amazon.com/dp/B0C2CZJ1TK?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Occasion Type": "Picnic",
                "Pattern": "Solid",
                "Material Features": "Disposable",
                "Date First Available": "May 24, 2023",
                "Shape": "Round",
                "Unit Count": "150 Count",
                "Occasion": "Picnic",
                "Number of Pieces": "150",
                "Recommended Uses For Product": "Meals, Appetizer, Fruit, Salad, Pizza, Sushi, Pasta, Chicken, French Fries",
                "Size": "150 Count (Pack of 1)",
                "UPC": "076955775423",
                "ASIN": "B0C2CZJ1TK",
                "Material Type": "Paper",
                "Material": "Paper",
                "Material Feature": "Disposable",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Net Content Weight": "5.05 Pounds",
                "Is the item dishwasher safe?": "No",
                "Manufacturer": "Amazon.com Services LLC.",
                "Additional Features": "Disposable,Resistant",
                "Seasons": "All Seasons",
                "Is Dishwasher Safe": "No",
                "Item Weight": "5.05 Pounds",
                "Special Feature": "Disposable,Resistant"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "50 Count"
                            },
                            {
                                "index": 1,
                                "displayString": "100 Count"
                            },
                            {
                                "index": 2,
                                "displayString": "150 Count (Pack of 1)"
                            },
                            {
                                "index": 3,
                                "displayString": "150 Count (Pack of 2)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0C2D294JV",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0C2D1FSN6",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0C2CZJ1TK",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B0D14TCJHH",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics-Everyday Paper Plates, Everyday disposable plates for parties, holidays, and every day use. Microwave-safe, soak proof, and cut resistant",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B00DB8LJ4Y",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.PO4UGKDB7RSKGASWWK2GI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ3NIGI36ENPUZNJIYEVZ53WCMBSZIFV22VA4XHRNTXLI7J5B4N4PKXKFCKAAAP3WRMGJZ6ZWXA3DTRFW7BHBQ44UKQIM55T2WPM5PVUUGWCQC3AAXKAOOFMRFELYD42QGQ",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "MERCHANT_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "The Office Tex",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": [
                                "Women-Owned Business Enterprise",
                                "Women-Owned Small Business",
                                "Economically Disadvantaged Women-Owned Small Business",
                                "Registered Small Business",
                                "889 certification"
                            ]
                        },
                        "fulfiller": {
                            "name": "The Office Tex",
                            "fulfillmentType": "MERCHANT_FULFILLMENT"
                        },
                        "offerId": "aSbjEVRO%2FPTDF997ZgH7ynrVe%2FOUpZyR4fpIwRecJiQwLehvKQcrm7GjoulkmrweefUi1W1sMWbwX0EcjZWX%2FGh6gAdrcTECscfUJFj%2B7K01Q0OUwtKsKOtDgsKL[[[###REDACTED_AWS_SECRET_KEY_REDACTED###]]]2Fkd4NgWjydD3Oc7WTbcCZHiMVzTFe",
                        "price": {
                            "value": {
                                "amount": 57.47,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T06:59:59Z",
                                    "min": "2025-04-22T07:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery April 22 - 23",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [
                            {
                                "fragment": {
                                    "title": "Business Seller",
                                    "message": "Business Sellers: ",
                                    "link": null,
                                    "type": "BUSINESS_INVOICE_BADGE",
                                    "fragments": null
                                }
                            }
                        ],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 77.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "LIST_PRICE"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 30,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery April 22 - 23"
                    }
                ]
            },
            "features": [
                "Great for everyday copying and printing",
                "20-lb, letter-size printer paper is ideal for everyday use.",
                "104 (Euro), 92 (U.S.) brightness for vivid text and images.",
                "Provides the trusted performance you need for your printing, copying and faxing applications.",
                "Acid-free Office Depot paper won't yellow or fade over time."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Office Depot White Copy Paper, 8 1/2in. x 11in., 20 Lb, 500 Sheets Per Ream, Case Of 10 Reams, 40402786",
            "url": "https://www.amazon.com/dp/B00DB8LJ4Y?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Material Features": "Biodegradable",
                "Date First Available": "June 6, 2013",
                "Color": "White",
                "Sheet Size": "8-1/2-x-11-inch Inches",
                "Manufacturer Part Number": "40428",
                "UPC": "735854779160",
                "ASIN": "B00DB8LJ4Y",
                "Sheet Count": "500",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Material Feature": "Biodegradable",
                "Is Discontinued By Manufacturer": "No",
                "Paper Finish": "Uncoated",
                "Brand": "Office Depot",
                "Brand Name": "Office Depot",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Paper Size": "8-1/2-x-11-inch Inches",
                "Manufacturer": "OFFICE DEPOT",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "1",
                "Item Weight": "0.01 Ounces"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Great for everyday copying and printing 20-lb paper is ideal for everyday use.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B0CVHGBSJV",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.TODMXETH2YMYXG35H3YGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ7EN3DJWGXQ4JLWPYZMJOQ5ZL6QZVDJ5PTH6IE4ORKFU2MZOGOXLWNMLZV7C2KIOVLUDVPHCKB7G2VX3Q7G5KH37QFTX3B2T2K2B6SJ4OIW2FAIVKONAXAIGASK6FZM4HA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "MERCHANT_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "E-CLIPS USA",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": [
                                "889 certification"
                            ]
                        },
                        "fulfiller": {
                            "name": "E-CLIPS USA",
                            "fulfillmentType": "MERCHANT_FULFILLMENT"
                        },
                        "offerId": "vcsC3%2BsUnaLoaC2pnx7i4KSdMcxqPZUMVAwR9W9tSEZ1aDqycJvtX9HNISWC2mKSOPqjj6nC0pcwAUUYx6ltNK%2F1Qn2nET1hA0WVlcAKMPiCabrI5B7GZQ%2FWN0ESWQAUeo1K15LTO%2FsfKC3XLNXjALVHyHYo8kmYRCLD43hwN20O%2B6KBPUvubionA%2BTX37eX",
                        "price": {
                            "value": {
                                "amount": 79.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-30T06:59:59Z",
                                    "min": "2025-04-29T07:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Tuesday, April 29",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [
                            {
                                "fragment": {
                                    "title": "Business Seller",
                                    "message": "Business Sellers: ",
                                    "link": null,
                                    "type": "BUSINESS_INVOICE_BADGE",
                                    "fragments": null
                                }
                            }
                        ],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 84.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 30,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 79.99,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2 - 4 units",
                                    "unitPrice": {
                                        "amount": 78.39,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "5 - 9 units",
                                    "unitPrice": {
                                        "amount": 75.99,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "10 - 171 units",
                                    "unitPrice": {
                                        "amount": 74.39,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Tuesday, April 29"
                    }
                ]
            },
            "features": [
                "HIGH QUALITY MULTIPURPOSE COPY PAPER -White printer paper comes in 500 sheets per ream. Smooth 92 bright print paper.",
                "GREAT FOR OFFICE & HOME PRINTERS - Enjoy jam free printing with our copy paper for printer at home or in the office. Perfect weight and thickness.",
                "92 BRIGHT WHITE PRINTER PAPER - Copy paper 8.5 x 11 white is perfect for making lists, your kids coloring or drawing, and all your printing needs.",
                "STURDY DURABLE AND JAM FREE - Perfect weight and thickness white paper for all your printer and copy machine needs.",
                "BULK VALUE PRINTER PAPER WHITE 8.5 x 11- Apex quality printer paper at the perfect value. For optimal printing and superior quality Apex paper is perfect for you."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Copy Paper, Printer Paper, 20lb Multipurpose, Printer Paper 8.5 x 11 White, 92 Bright, White Paper, Office Supplies, 500 Sheets Per Ream (10 Reams Case 5000 Sheets)",
            "url": "https://www.amazon.com/dp/B0CVHGBSJV?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Material Features": "Recyclable",
                "Date First Available": "April 22, 2024",
                "Brightness": "92 bright",
                "Size": "10 Reams Case 5000 Sheets",
                "Color": "White",
                "Sheet Size": "8.5 x 11 Inches",
                "Manufacturer Part Number": "24500",
                "UPC": "810124122485",
                "ASIN": "B0CVHGBSJV",
                "Sheet Count": "5000",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Material Feature": "Recyclable",
                "Paper Finish": "Glossy",
                "Brand": "E-CLIPS USA",
                "Brand Name": "E-CLIPS USA",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Brightness Rating": "92 bright",
                "Paper Size": "8.5 x 11 Inches",
                "Manufacturer": "E-CLIPS USA",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Item Weight": "20 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "10 Reams Case 5000 Sheets"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0CVHGBSJV",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Multipurpose Copy Paper (10 Reams 5000 Sheets)Printer Paper Bulk\nHome, school supplies, and office supplies use  Dimensions 8.5″ x 11″92 Bright500 sheets per ream20 lbs Per ReamHigh QualityJam freeBulk value\n\nWhether you're using this printer paper 8.5 x 11 white bulk for school, home, or professional use, the right quality supplies can make all the difference when it comes to printing paper. That’s why we put together this high quality copy paper for printer bulk set.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B000TS9338",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.X22V765KQRZ23PXLNOIWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQVXRERYEUZ2JZBPLCUXEV3V3VZ52WHZB6O6AX4SLNKCKIR7JIAM75WMOJNWDYAIWZTILSRXLOVDEFIF27DF4GA3VF63GT5HX4BHTYBT4SVD7TWR4EJXZVL5W2DMZ7RYR2A",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "MERCHANT_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "MDNZ LLC",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "MDNZ LLC",
                            "fulfillmentType": "MERCHANT_FULFILLMENT"
                        },
                        "offerId": "4Ioo3N0DM%2F79HpsaTfWesx4cvCQ4hMy5PopJnNX%2FbBFRVNQej8CIyG0U7yd5AY3bMgtby5TO%2BfeeopFPJVur6O12Cp2msLYldojDPJk7zwjh%2BNRHIl4kQrAdTujeeGvGc5eJ4Uo4l6t35LUTTX%2BisDzKTMaicthwtqFnn17VgIwrCu5sXq9CxgXjhiiEpBmA",
                        "price": {
                            "value": {
                                "amount": 64.49,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-22T06:59:59Z",
                                    "min": "2025-04-21T07:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Monday, April 21. Order within 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 85.49,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "LIST_PRICE"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 30,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 64.49,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2 units",
                                    "unitPrice": {
                                        "amount": 64.25,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "3 - 382 units",
                                    "unitPrice": {
                                        "amount": 64.0,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Monday, April 21. Order within 44 mins"
                    }
                ]
            },
            "features": [
                "Engineered for consistent performance and excellent run-ability",
                "Paper sheet size – 8.5” x 11” Letter | Brightness – 92 | Weight – 20 lb | Smoothness – 170 | Opacity – 91 | Ream – 10 | Sheets – 5,000",
                "Proudly made in the USA | Fsc chain of custody certified",
                "Acid-free paper | Laser guaranteed | 99.99% Jam-Free performance guaranteed",
                "This product has been performance tested by Keypoint Intelligence – Buyers Lab​, the global leader in independent office equipment testing"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Boise Paper X-9 Multi-Use 3-Hole Punch Copy Paper – 10 Ream (5,000 Sheets) | 8.5\" x 11\" Letter | 92 Bright White - 20 lb. | OX-9001P-CTN",
            "url": "https://www.amazon.com/dp/B000TS9338?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "July 8, 2007",
                "Brightness": "92",
                "Size": "10 Reams",
                "Sheet Size": "8.5-x-11-inch",
                "UPC": "842356065131 031112261812 804993373321 068000352116 842356055132",
                "Global Trade Identification Number": "00842356065131",
                "ASIN": "B000TS9338",
                "Material Type": "Paper",
                "Product Dimensions": "11\"L x 8.5\"W",
                "Is Discontinued By Manufacturer": "No",
                "Brightness Rating": "92",
                "Manufacturer": "Boise Paper",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "1",
                "Material Features": "Biodegradable",
                "Color": "White",
                "Item model number": "OX-9001P-CTN",
                "Manufacturer Part Number": "BOSOX9001P",
                "Sheet Count": "500",
                "Material Feature": "Biodegradable",
                "Paper Finish": "Smooth",
                "Brand": "BOISE POLARIS",
                "Brand Name": "BOISE POLARIS",
                "Item Dimensions L x W": "11\"L x 8.5\"W",
                "Paper Size": "8.5-x-11-inch",
                "Item Weight": "50 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "3 Reams"
                            },
                            {
                                "index": 1,
                                "displayString": "5 Reams"
                            },
                            {
                                "index": 2,
                                "displayString": "10 Reams"
                            },
                            {
                                "index": 3,
                                "displayString": "No Ream, 2500 Sheets"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "8.5 x 11, 3-Hole, 20 lb."
                            },
                            {
                                "index": 1,
                                "displayString": "8.5 x 11, 20 lb."
                            },
                            {
                                "index": 2,
                                "displayString": "8.5 x 11, 20 lb., FSC"
                            },
                            {
                                "index": 3,
                                "displayString": "8.5 x 11, 24 lb."
                            },
                            {
                                "index": 4,
                                "displayString": "8.5 x 14, 20 lb."
                            },
                            {
                                "index": 5,
                                "displayString": "11 x 17, 20 lb."
                            },
                            {
                                "index": 6,
                                "displayString": "11 x 17, 24 lb."
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B01NBIF1FN",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B009NKSNOI",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B000LGH6NC",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B01N4BQR3T",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 6
                            }
                        ]
                    },
                    {
                        "asin": "B000TS9338",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B000J05ETS",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B003BWJ1PY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B01N2RPQ23",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    },
                    {
                        "asin": "B000CD0U82",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B001GKJ6NK",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B001GKJ6JY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B00CHUFYNY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Our #1 selling brand, BOISE X-9 multi-use copy paper won’t let you down. Decades of science, research, and testing have resulted in a dependable and consistent sheet you can trust. X-9 multi-use copy paper delivers quality you can trust in any home, office, or high-speed print environment.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B0183P917Q",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.V2CXGNGHX4SJGOXISY5WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ44IWQYPKIU2GNH4DLTFTKFHUCAHCPBBAPXEZV3ATZRXRB3BUVDC7XC4EVFHIDCGLWBBGR7WWU2HMPZ4NAEH7SIQAOTNB3OQ5QG3LPBXUEEIBLL25J77KITTNSMOWU45OA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B0183P917Q"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "MERCHANT_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "HiTouch Business Services a BU of Staples",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": [
                                "889 certification"
                            ]
                        },
                        "fulfiller": {
                            "name": "HiTouch Business Services a BU of Staples",
                            "fulfillmentType": "MERCHANT_FULFILLMENT"
                        },
                        "offerId": "BP%2FUjia0DAMsZER7zYml%2B4r0GSrOjsad4ohvgGtFEiKizRfmc%2FVAoVSa5yDa1jR1PjNNQZh6DuxnnZUSnuo9ztWmOQHC75mrcpqduPCiKKwS2xPbcU8lKu8Mb6y0KgMdDwxi72q4zmm6RiMAfGfib4SPpW7h9jaL2dpkWzEbtUPC2vxunJApU6Y81C5BLDr%2F",
                        "price": {
                            "value": {
                                "amount": 46.95,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "NEW"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-25T06:59:59Z",
                                    "min": "2025-04-23T07:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery April 23 - 24",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [
                            {
                                "fragment": {
                                    "title": "Business Seller",
                                    "message": "Business Sellers: ",
                                    "link": null,
                                    "type": "BUSINESS_INVOICE_BADGE",
                                    "fragments": null
                                }
                            }
                        ],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": null,
                            "formattedPrice": null,
                            "priceType": null
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 30,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery April 23 - 24"
                    }
                ]
            },
            "features": [
                "PREMIUM PRINTER PAPER – Hammermill Premium Inkjet & Laser 24lb Printer Paper is a versatile sheet that’s perfect for double-sided inkjet or laser printed projects. With a 97 brightness & blue-white shade, you get consistently sharp, clear images.",
                "COLORLOK TECHNOLOGY – This computer paper features ColorLok Technology for colors that are 30% brighter, blacks that are 60% bolder and ink that dries 3x faster. This white copy paper will provide consistently superior results.",
                "PERFECT FOR PRINTING – This multi-purpose copier paper is designed to run smoothly through all office equipment for professional results when printing newsletters, flyers, reports, memos, and more. It’s also acid-free paper to prevent yellowing over time.",
                "99.99% JAM-FREE: We guarantee that you will not experience more than one jam in 10,000 sheets on high-speed digital equipment, or we'll replace the paper or offer a refund up to the total purchase price.",
                "SUSTAINABLY MADE IN THE USA – Original Hammermill printer paper is Forest Stewardship Council (FSC) certified, which means they are made with renewable resources from third-party certified, sustainably managed forests."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260000",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Hammermill Printer Paper, Premium Inkjet & Laser Paper 24 Lb, 8.5 x 11 - 5 Ream (2,500 Sheets) - 97 Bright, Made in the USA, 166140C",
            "url": "https://www.amazon.com/dp/B0183P917Q?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "November 10, 2015",
                "Brightness": "97",
                "Number of Pieces": "2500",
                "Size": "5 Ream | 2500 Sheets",
                "Sheet Size": "8.5x11",
                "UPC": "010199066145",
                "Global Trade Identification Number": "00010199066145",
                "ASIN": "B0183P917Q",
                "Material Type": "paper",
                "Product Dimensions": "8.5\"L x 11\"W",
                "Is Discontinued By Manufacturer": "No",
                "Brightness Rating": "97",
                "Manufacturer": "Sylvamo",
                "Compatible Printer Type": "Inkjet",
                "Paper Weight": "24",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "5",
                "Material Features": "Renewable",
                "Color": "White",
                "Item model number": "166140C",
                "Manufacturer Part Number": "166140C",
                "Sheet Count": "2500",
                "Material Feature": "Renewable",
                "Paper Finish": "Smooth",
                "Brand": "Hammermill",
                "Brand Name": "Hammermill",
                "Item Dimensions L x W": "8.5\"L x 11\"W",
                "Paper Size": "8.5x11",
                "Item Weight": "30 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Ream | 500 Sheets"
                            },
                            {
                                "index": 1,
                                "displayString": "5 Ream | 2500 Sheets"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "24 lb"
                            },
                            {
                                "index": 1,
                                "displayString": "24 lb Ink - Laser"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B014UUL9WS",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00OCR0A4I",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B00ZF0DG6K",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0183P917Q",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Hammermill Premium Inkjet & Laser Printer Paper provides a versatile sheet that is perfect for double-sided printing for both inkjet and laser printed projects. With a 97 brightness and blue-white shade, this printing paper produces sharp, clear images for consistently top-notch results. This multipurpose paper also features ColorLok Technology for colors that are 30% brighter, blacks that are 60% bolder and ink that dries 3x faster to help you achieve professional results when printing newsletters, flyers, reports, memos, and more. It’s premium copy paper that’s perfect for use in all office printers and machines. Our 99.99. 000 sheets using Hammermill copying paper on your high-speed digital printer or we will replace your Hammermill paper purchase. We test more than 13.5 million sheets of paper every year to make sure that each sheet is consistent. Then we test our papers on all kinds of printer and copier equipment to ensure that it will work for you, every time, on every machine. Did you know that you are helping to conserve and restore forests when you buy Hammermill paper? “It’s More Than Just Paper” to us and millions of sustainable forestry workers across America, including American family tree farmers. Hammermill printer papers are made with renewable resources from certified sustainably managed forests, so you can feel good about using our products. MAKE SURE IT’S ORIGINAL HAMMERMILL QUALITY: look for “Ships from and sold by Amazon” at the top of the page, under the product title.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "Sustainability Features",
                        "message": "Products with trusted sustainability certification(s).",
                        "link": null,
                        "type": "SUSTAINABILITY_BADGE",
                        "fragments": [
                            {
                                "title": "Forestry practices",
                                "message": "Made with materials from well-managed forests, recycled materials, and/or other controlled wood sources.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            }
                        ]
                    }
                }
            ]
        },
        {
            "asin": "B001E6BYF4",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.WGAD6266A7ZOHUA26PCGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQYWXNDYNJXK7SBSGT7ER2DKU4RFIU2JUEC5RQNHEHJDAN77SR6IYP3SKUFEGTVNSUKVIQVCLRKYED57AUC7SYQTXVIVSEUU4IREEU7KQRVGORGLNTREBZYJRMATJYHUTJQ",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "Ux3qK1uQQjA0vv2hg3orWXsksgvsIWCjuvWpjATyfgObH%2BURMiuor86FOPaD08qKcQxxX%2FFCdzo%2BrGGq32EwJmlqSyaWb%2FFSsgylVWdH4T1XWOVeKxHzJq3zmOnkdlptHx8WmQDfGVuVJqHvCpFu%2FFqzKznYPWXZ",
                        "price": {
                            "value": {
                                "amount": 55.91,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23",
                                "thresholdCost": null
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-23T03:00:00Z",
                                    "min": "2025-04-23T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Tuesday, April 22. Order within 29 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 71.5,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "LIST_PRICE"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 15,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 - 2 units",
                                    "unitPrice": {
                                        "amount": 55.91,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "3 - 5 units",
                                    "unitPrice": {
                                        "amount": 53.88,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "6 - 15 units",
                                    "unitPrice": {
                                        "amount": 52.52,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23"
                    }
                ]
            },
            "features": [
                "Compatible with all office equipment.",
                "Works with copiers, laser printers, and fax machines.",
                "Great for general office copying and printing.",
                "Reliable choice for high-volume copying, reports, documents, and correspondence.",
                "Acid-free for archival quality."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                }
            ],
            "packageTypeNames": [],
            "title": "Universal 21200 Copy Paper, 92 Brightness, 20lb, 8-1/2 x 11, White (Case of 5000 Sheets)",
            "url": "https://www.amazon.com/dp/B001E6BYF4?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "June 21, 2007",
                "Brightness": "92.00",
                "Number of Pieces": "5000",
                "Size": "Letter - 8-1/2\" X 11\"",
                "Sheet Size": "8.5-x-11-inch",
                "UPC": "087547212004",
                "Global Trade Identification Number": "50087547212009",
                "ASIN": "B001E6BYF4",
                "Product Dimensions": "17.8\"L x 11.81\"W",
                "Is Discontinued By Manufacturer": "No",
                "Brightness Rating": "92.00",
                "Manufacturer": "Universal",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "20",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "10",
                "Material Features": "Recyclable",
                "Color": "White",
                "Item model number": "21200",
                "Manufacturer Part Number": "UNV21200",
                "Sheet Count": "5000",
                "Material Feature": "Recyclable",
                "Paper Finish": "Matte",
                "Brand": "Universal",
                "Brand Name": "Universal",
                "Item Dimensions L x W": "17.8\"L x 11.81\"W",
                "Paper Size": "8.5-x-11-inch",
                "Item Weight": "3.25 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Universal copy paper is the economical choice for all your business printing and copying needs. Versatile white paper that’s reliable for everyday copying, high-speed volume applications, in-house reports, duplicating documents, and internal correspondence. Compatible with all office equipment, including copiers, laser printers, and fax machines. Laser and desktop inkjet guaranteed on cut-size cartons. Archival quality and acid-free. 92 bright white, 20 lb. paper.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B0748J34WZ",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.VEKOREWKXWNNOCQPFMGGI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ6UOFD3IOOOQBGCHYH4KM4AV5RWEQOHJV77OLBZQG6YOXYMCLRN4HHDTH46XHHSPYBFO73YJYZDTMJBRBD65AIFACKBXDEYUMPQS5NH7KOQ6JDMIDCRNDNKIW5ZRDUISEA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "NONE",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "NONE",
                                    "message": null,
                                    "link": null,
                                    "type": "NONE",
                                    "fragments": []
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "SgJUrkpzRus0%2BLeyW4dgLUFXKydUEMrDYlYlpqfOprkUQJr9EgWE7vXuoaHGt%2BYjTQ9ncR8qcXlktNWDLUUYtYXTre7uJxWfoQTBQTkrTjnQ2r1S70yMttwfQQyYfjqdkVJ96KaXmrVJrSTuFSxDb1bwbqWFIbcC",
                        "price": {
                            "value": {
                                "amount": 4.19,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35",
                                "thresholdCost": {
                                    "value": {
                                        "amount": 35.0,
                                        "currencyCode": "USD"
                                    }
                                }
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 9.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-22T03:00:00Z",
                                    "min": "2025-04-22T03:00:00Z"
                                },
                                "deliveryInformation": "$9.99 delivery Monday, April 21. Order within 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 5.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 3,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23 on orders shipped by Amazon over $35"
                    }
                ]
            },
            "features": [
                "Dixie Paper Plates are 2X stronger than the leading comparable store brand 10” paper plate*",
                "Dixie Medium Paper Plates 8.5 inch: the perfect medium size plate for breakfast, lunch, and dinner from everyday meals to parties and picnics",
                "Dixie Disposable Plates are Microwave Safe, Cut Resistant, and have a Soak-Proof Shield that can handle anything from salad dressing to burger grease",
                "Strong, durable, and convenient with 90 paper plates in each bulk paper plates pack, so you can focus on your day and not the dishes"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "52151502",
                    "title": "Domestic disposable dishes",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "29100200",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Dixie Medium Paper Plates, 8.5 Inch, 90 Count, 2X Stronger*, Microwave-Safe, Soak-Proof, Cut Resistant, Disposable Plates For Everyday Breakfast, Lunch, & Dinner Meals",
            "url": "https://www.amazon.com/dp/B0748J34WZ?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Care instructions": "Hand Wash Only",
                "Shape": "Round",
                "Reusability": "Disposable",
                "Unit Count": "90 Count",
                "Number of Pieces": "90",
                "Occasion": "Picnic",
                "Item Dimensions L x W x Thickness": "8.58\"L x 8.58\"W x 4.18\"Th",
                "Recommended Uses For Product": "Salad",
                "Is the item microwaveable?": "Yes",
                "Size": "90 Count (Pack of 1)",
                "ASIN": "B0748J34WZ",
                "UPC": "042000157360",
                "Material Type": "Paper",
                "Product Dimensions": "8.58\"L x 8.58\"W x 4.18\"Th",
                "Dishwasher compatible": "No",
                "Finish Types": "Matte",
                "Manufacturer": "Georgia Pacific",
                "Style": "Modern",
                "Number of pieces": "90",
                "Seasons": "All Seasons",
                "Is Microwaveable": "Yes",
                "Finish Type": "Matte",
                "Diameter": "21.5 Centimeters",
                "Special Feature": "Disposable,Resistant",
                "Batteries required": "No",
                "Occasion Type": "Picnic",
                "Pattern": "Floral",
                "Material Features": "Soak-proof",
                "Color": "Multicolor",
                "Item model number": "10042000157381",
                "Material": "Paper",
                "Finish types": "Matte",
                "Material Feature": "Soak-proof",
                "Brand Name": "Dixie",
                "Brand": "Dixie",
                "Product Care Instructions": "Hand Wash Only",
                "Is the item dishwasher safe?": "No",
                "Style Name": "Modern",
                "Additional Features": "Disposable,Resistant",
                "Is Dishwasher Safe": "No",
                "Item Weight": "2.3 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "90 Count (Pack of 1)"
                            },
                            {
                                "index": 1,
                                "displayString": "90 Count (Pack of 2)"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B0748J34WZ",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B0D14XKZN9",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Dixie Disposable Paper Plates make everyday mealtime stress-free and enjoyable. With our 8.5 inch paper plates, you can serve all your favorite dishes without worrying about cleaning up messy dishes afterwards. Our Soak Proof Shield prevents saucy, soupy, and greasy foods from seeping through the plate, so you can rest assured that your plate will stay dry and intact. Dixie Paper Plates are durable, microwave-safe, cut-resistant, and designed to hold foods like grilled chicken, burgers, or steak. With 90 plates in each bulk paper plates pack, Dixie plates are premium quality and convenient for all your dining needs, letting you focus on the moment with peace of mind. Enjoy meal time with Dixie Paper Plates 8.5 inch today!",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B073H7XMYW",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.GHGJGZGTLMZUFX267K6WI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ5X6GK2MHBDUBYENYUV5CSCYNC63WKVUITIUCJMX5ZS7DUEO3N7XMXLNSGSZIHTQOOW4MSJFQCQFRPOAE3NJ7GWNTICHFQAN4DWYNPM4TPKMSXBUMTRGC6KT74PWMK7ZIA",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B073H7XMYW"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "ADBDPEwP1a3ZP%2BiSu%2BPXjOPCx%2Fc5rBWYvT4z5zqEHdIhhC4MIceRW5YhVBH0LHS2zIjA8VnzEZsfPgObDcH50yspia%2FUH%2BTF8Du99OJtA0XBzzCdRD3%2FlWBIJw7%2Bvs%2BRqLINqzhIrLTnMxnemlwHCpp2BitblIIe",
                        "price": {
                            "value": {
                                "amount": 61.98,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-29T03:00:00Z",
                                    "min": "2025-04-29T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Monday, April 28",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 72.29,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 10,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 - 5 units",
                                    "unitPrice": {
                                        "amount": 61.98,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "6 - 10 units",
                                    "unitPrice": {
                                        "amount": 60.83,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Monday, April 28"
                    }
                ]
            },
            "features": [
                "5 reams of tabloid-size multipurpose copy paper (2,500 sheets total)",
                "Works with laser/inkjet printers, copiers, and fax machines",
                "High-quality 20-pound weight for economical printing and resistance to paper jams",
                "Bright white for better contrast; 92 GE brightness",
                "Acid-free for long-lasting strength; made in the USA from imported; measures 11 by 17 inches"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Amazon Basics 92 Bright Multipurpose Copy Paper, 11 x 17 Inches, Pack of 5, 2500 Count, White",
            "url": "https://www.amazon.com/dp/B073H7XMYW?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Material Features": "paper",
                "Date First Available": "December 4, 2017",
                "Brightness": "92",
                "Number of Pieces": "2500",
                "Color": "White",
                "Sheet Size": "11 x 17",
                "Item model number": "AZ11172092",
                "UPC": "841710190229",
                "ASIN": "B073H7XMYW",
                "Sheet Count": "2500",
                "Product Dimensions": "17\"L x 11\"W",
                "Material Feature": "paper",
                "Paper Finish": "Smooth",
                "Brand": "Amazon Basics",
                "Brand Name": "Amazon Basics",
                "Item Dimensions L x W": "17\"L x 11\"W",
                "Paper Size": "11 x 17",
                "Manufacturer": "Amazon",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "20",
                "Printer Paper Size": "11 x 17",
                "Item Weight": "9.07 Kilograms"
            },
            "productDetails": {
                "B073H7XMYW": {
                    "Brand Name": "Amazon Basics",
                    "Color": "White",
                    "Ean ": "0841710190229",
                    "Item Weight": "20.00 pounds",
                    "Material Feature": "paper",
                    "Model Number": "AZ11172092",
                    "Number of Items": "5",
                    "Part Number": "AZ11172092",
                    "Pattern": "Paper",
                    "Size": "Pack of 5, 2500 Count",
                    "Style": "Ledger (11x17)",
                    "UNSPSC Code": "14111507",
                    "UPC": "841710190229"
                }
            },
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Amazon Basics 92 Bright Multipurpose Copy Paper - 11 x 17 Inches, 5 Ream Case (2,500 Sheets)",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": []
        },
        {
            "asin": "B0040ZOD04",
            "asinType": "STANDARD",
            "signedProductId": "amzn1.business.asin.DYPCAPUXJGCICQNU3ULWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQ6L7M63QCOLFJ2PKHUZD3QNI54RB7BWY2Q7H74IZFNCN6I6J4W2VDBDWJ7AQT6WDETAIQWUZMETKJ66KB7KVSR2PFITPIBHUMMRPDPO4IONINHXCZ4QVK4GBAG7FMEJFZQ",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B0040ZOD04"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon.com",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon.com",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "EJdX9tEURb%2B4KWqqaYrY%2Fwk93ezO01jTfTr7tw50YoL2UdjYS3MBDflKaA%2BhuvIROMUPYEMYOoQmL45JM1oxw9u0kyEjesFEOq50eUSXh9pXfdTb2A3S87RJwp43kF8kEQ%2Brk3AGHkwG63OO2te1pQ%3D%3D",
                        "price": {
                            "value": {
                                "amount": 36.7,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "NEW"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23",
                                "thresholdCost": null
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-23T03:00:00Z",
                                    "min": "2025-04-23T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Tuesday, April 22. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 39.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "LIST_PRICE"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 10,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": []
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23"
                    }
                ]
            },
            "features": [
                "250 Sheets/Pack, 16 Scott Multifold Paper Towel Packs/Case; 4,000 Sheets/Case; with Absorbency Pockets; 9.2\" x 9.4\" sheets; White; Compact Case for Easy Storage",
                "With exclusive Absorbency Pockets that soak up water fast, these multifold paper towels are designed to reduce waste",
                "Product is a part of Kimberly-Clark Professional's Responsible Partners program",
                "Fits into most universal dispensers for multifold towels (alternative to C Fold paper towels, which can over-dispense)",
                "Meets EPA minimum standards for post-consumer waste and are FSC and ECOLOGO certified"
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111700",
                    "title": "Personal paper products",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "40030201",
                    "title": "Paper towel",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [
                {
                    "displayString": "Multi-Fold"
                }
            ],
            "title": "Scott Professional Universal Multifold Paper Towels, Bulk (01840), Absorbency Pockets, White, 9.2\"x9.4\" Towel, White, Compressed, Compact (250 Sheets/Pack, 16 Packs/Case, 4,000 Sheet Total)",
            "url": "https://www.amazon.com/dp/B0040ZOD04?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "November 9, 2004",
                "Unit Count": "16.0 Count",
                "Recommended Uses For Product": "Hand Washing",
                "Size": "250 Count (Pack of 16)",
                "Global Trade Identification Number": "10036000018407",
                "ASIN": "B0040ZOD04",
                "Material Type": "Paper",
                "Product Dimensions": "24.25 x 13.75 x 9.5 inches; 0.96 ounces",
                "Is Discontinued By Manufacturer": "No",
                "Department": "Janitorial / Maintenance & Lunchroom Supplies",
                "Manufacturer": "Kimberly-Clark Professional",
                "Number of Items": "16",
                "Special Feature": "Absorbent, Recyclable",
                "Net Content Count": "4000 Sheet",
                "Material Features": "Recyclable, 40% Post-consumer Waste",
                "Ply Rating": "1-Ply",
                "Item dimensions L x W x H": "24.25 x 13.75 x 9.5 inches",
                "Color": "White",
                "Item model number": "KCC01840",
                "Sheet Count": "4000",
                "Material": "Paper",
                "Material Feature": "Recyclable, 40% Post-consumer Waste",
                "Sheet Count Per Unit": "250",
                "Brand": "Scott Professional",
                "Brand Name": "Scott Professional",
                "Item Form": "Individual Sheet",
                "Additional Features": "Absorbent, Recyclable",
                "Item Dimensions": "24.25 x 13.75 x 9.5 inches",
                "Paper Towel Fold Type": "Multifold",
                "Item Weight": "27.22 g"
            },
            "productDetails": {
                "B0040ZOD04": {
                    "Brand Name": "Scott Professional",
                    "Color": "White",
                    "Global Trade Identification Number": "10036000018407",
                    "Included Components": "1840",
                    "Item Weight": "0.960 ounces",
                    "Length": "9.4 inches",
                    "Material": "Paper",
                    "Material Feature": "Recyclable , 40% Post-consumer Waste",
                    "Model Number": "KCC01840",
                    "Number of Items": "16",
                    "Part Number": "KCC01840",
                    "Size": "250 Count (Pack of 16)",
                    "Special Features": "Recyclable , Absorbent",
                    "Specification Met": "Meets EPA Guidelines",
                    "Style": "Multi-Fold Towels 9.2” x 9.4”",
                    "Temperature Rating": "ambient: room temperature",
                    "UNSPSC Code": "14111700",
                    "Width": "9.2 inches"
                }
            },
            "productVariations": {
                "dimensions": [],
                "variations": []
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Scott provides reliable balance of efficiency, performance, and value. As a business owner, quality and cost-effectiveness are important in everything you purchase. With Scott Professional Standard Roll bulk toilet paper, you can get the quality and performance you count on—and still stay within your budget. With the new paper design, our bath tissue is Unmistakably Scott branded so you'll be recognized for providing the most well-known restroom brand in your facility. Plus, the bulk rolls are individually wrapped (they're protected until you're ready to use them) and fit with most universal toilet paper dispensers. These toilet paper rolls are designed to fit into universal, cored roll dispensers. If practicality, reliability and value top your list of criteria for bathroom supplies, trust Scott Standard Roll Bath Tissue Superior quality at value prices means that Scott is always a great choice.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "Sustainability Features",
                        "message": "Products with trusted sustainability certification(s).",
                        "link": null,
                        "type": "SUSTAINABILITY_BADGE",
                        "fragments": [
                            {
                                "title": "Forestry practices",
                                "message": "Made with materials from well-managed forests, recycled materials, and/or other controlled wood sources.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            },
                            {
                                "title": "Manufacturing practices",
                                "message": "Manufactured using processes that reduce the risk of negative environmental impact.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            },
                            {
                                "title": "Safer chemicals",
                                "message": "Made with chemicals safer for human health and the environment.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            }
                        ]
                    }
                }
            ]
        },
        {
            "asin": "B005EO3QHG",
            "asinType": "VARIATION_CHILD",
            "signedProductId": "amzn1.business.asin.M77J7AF4ZFKFLL3MERWWI2LRMFZG423ZORUGOZLEG5ZGMY3BONQRSI32RNL2FZQZYQIQIJHII3AR7S7Y77WABFCSPOHXEUWBL4ORRMEUMMX2ZC255SY542Y45JTI7LGXNVNVL5YTKKGGKUH5EJKUIIAYRPSIIILNJ4JNQUUY4TRPQ5GAQR2Q",
            "includedDataTypes": {
                "OFFERS": [
                    {
                        "availability": "In Stock.",
                        "buyingGuidance": "PREFERRED",
                        "buyingGuidanceV2": {
                            "buyingGuidance": [
                                {
                                    "title": "PREFERRED",
                                    "message": null,
                                    "link": null,
                                    "type": "PREFERRED",
                                    "fragments": [
                                        {
                                            "title": "Prefer items with sustainability certifications",
                                            "message": "This product is part of the Climate Pledge Friendly program. You're encouraged to buy this product over other alternatives.",
                                            "link": {
                                                "text": "EDIT POLICY",
                                                "url": "https://www.amazon.com/ab/ccp-portal/policies/view/group/A2YNSWUY35RA6T/id/CCPASUSTAINABILITY/4db94998-4368-4431-a8b4-9189d59a4433%3Ffrom=DPX-B005EO3QHG"
                                            },
                                            "type": "SUSTAINABILITY",
                                            "fragments": null
                                        }
                                    ]
                                }
                            ]
                        },
                        "buyingRestrictions": [],
                        "fulfillmentType": "AMAZON_FULFILLMENT",
                        "merchant": {
                            "merchantId": null,
                            "name": "Amazon",
                            "meanFeedbackRating": null,
                            "totalFeedbackCount": null,
                            "certificates": []
                        },
                        "fulfiller": {
                            "name": "Amazon",
                            "fulfillmentType": "AMAZON_FULFILLMENT"
                        },
                        "offerId": "Xc3wEoMJM2CSyF6%2B10fExy8W%2BPzfGqf%2BbHiBF6cV9PcZLTTP1d9bmkAO%2FPN0lr0oggauikluQrNIi8dtwlVj4%2BaG17eJhb%2FHdDvVfNIEwBK8KOQZlmho3%2Fq9SUGA7YTLqXw2BGWy5vov2o5qLjlFW4Kq7Up47toS",
                        "price": {
                            "value": {
                                "amount": 52.99,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "BUSINESS"
                        },
                        "shippingOptions": [
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 0.0,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-24T03:00:00Z",
                                    "min": "2025-04-24T03:00:00Z"
                                },
                                "deliveryInformation": "FREE delivery Wednesday, April 23",
                                "thresholdCost": null
                            },
                            {
                                "shippingCost": {
                                    "value": {
                                        "amount": 6.99,
                                        "currencyCode": "USD"
                                    }
                                },
                                "deliveryRange": {
                                    "max": "2025-04-23T03:00:00Z",
                                    "min": "2025-04-23T03:00:00Z"
                                },
                                "deliveryInformation": "$6.99 delivery Tuesday, April 22. Order within 14 hrs 44 mins",
                                "thresholdCost": null
                            }
                        ],
                        "badges": [],
                        "quantityInStock": null,
                        "listPrice": {
                            "value": {
                                "amount": 59.84,
                                "currencyCode": "USD"
                            },
                            "formattedPrice": null,
                            "priceType": "LIST_PRICE"
                        },
                        "productCondition": "NEW",
                        "productConditionNote": "",
                        "condition": {
                            "conditionValue": "NEW",
                            "conditionNote": "",
                            "subCondition": "UNKNOWN"
                        },
                        "quantityLimits": {
                            "maxQuantity": 10,
                            "minQuantity": 1
                        },
                        "quantityPrice": {
                            "quantityPriceTiers": [
                                {
                                    "quantityDisplay": "1 unit",
                                    "unitPrice": {
                                        "amount": 52.99,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                },
                                {
                                    "quantityDisplay": "2 - 10 units",
                                    "unitPrice": {
                                        "amount": 52.52,
                                        "currencyCode": "USD"
                                    },
                                    "minQuantity": null,
                                    "price": null,
                                    "savingMessage": null,
                                    "taxExclusivePrice": null
                                }
                            ]
                        },
                        "taxExclusivePrice": {
                            "taxExclusiveAmount": null,
                            "displayString": "",
                            "formattedPrice": "",
                            "label": ""
                        },
                        "deliveryInformation": "FREE delivery Wednesday, April 23"
                    }
                ]
            },
            "features": [
                "PREMIUM COLOR COPY PAPER – Hammermill Premium Color Copy 28lb Paper provides a high-tech sheet that’s designed to show your work at its best so you can confidently use it for design proposals, full-color presentations, photographs, brochures and more.",
                "SUPER BRIGHT FINISH – At 100 brightness, this copying paper is super bright for excellent image contrast and true color reproduction. The super smooth paper surface provides superior toner adhesion and a stable surface for heavier toner applications.",
                "99.99% JAM-FREE GUARANTEE – We guarantee that you will not experience more than one jam in 10,000 sheets of computer paper on high-speed digital equipment or we’ll replace your Hammermill paper purchase. You can trust Hammermill paper quality, guaranteed.",
                "OTHER PAPER OPTIONS – There’s a Hammermill print and copy paper for every purpose including premium presentation-quality color copy paper, cover-weight paper stock, glossy paper for photo printing, and 15 pastel shades of multipurpose copy paper.",
                "SUSTAINABLY MADE IN THE USA – Original Hammermill printer paper is Forest Stewardship Council (FSC) certified, which means they are made with renewable resources from third-party certified, sustainably managed forests.",
                "Extra-smooth surface for perfect toner blending and registration",
                "100 brightness for true color reproduction, 28lb, 8-1/2 x 11 Inch",
                "For all color copiers and color laser printers",
                "Forest Stewardship Council (FSC)certified",
                "99.99% Jam-Free Guarantee, 5 Ream Case and 500 Sheets per pack."
            ],
            "editorialReviews": [],
            "taxonomies": [
                {
                    "taxonomyCode": "14111507",
                    "title": "Printer or copier paper",
                    "type": "UNSPSC"
                },
                {
                    "taxonomyCode": "24260600",
                    "title": "",
                    "type": "ECLASS"
                }
            ],
            "packageTypeNames": [],
            "title": "Hammermill Printer Paper, Premium Color 28 lb Copy Paper, 8.5 x 11 - 5 Ream (2,500 Sheets) - 100 Bright, Made in the USA, 102450C, White",
            "url": "https://www.amazon.com/dp/B005EO3QHG?ref_=ab_psdp",
            "format": null,
            "bookInformation": {
                "isbn": {
                    "isbn10": null,
                    "isbn13": null
                },
                "publicationDate": null,
                "publishedLanguage": null
            },
            "byLine": [],
            "mediaInformation": {
                "editions": [],
                "mediaFormats": []
            },
            "productOverview": {
                "Date First Available": "December 4, 2006",
                "Brightness": "100",
                "Number of Pieces": "2500",
                "Size": "5 Ream | 2500 Sheets",
                "Sheet Size": "8.5x11",
                "UPC": "040010131301 010199002464 010199102454",
                "Global Trade Identification Number": "00010199102454",
                "ASIN": "B005EO3QHG",
                "Material Type": "Paper",
                "Product Dimensions": "11\"L x 9.06\"W",
                "Is Discontinued By Manufacturer": "No",
                "Department": "Office",
                "Brightness Rating": "100",
                "Manufacturer": "Sylvamo",
                "Compatible Printer Type": "Laser",
                "Paper Weight": "28",
                "Printer Paper Size": "8.5 x 11",
                "Number of Items": "5",
                "Material Features": "Renewable",
                "Color": "White",
                "Item model number": "102450C",
                "Manufacturer Part Number": "102450C",
                "Sheet Count": "2500",
                "Material Feature": "Renewable",
                "Paper Finish": "Smooth",
                "Brand": "Hammermill",
                "Brand Name": "Hammermill",
                "Item Dimensions L x W": "11\"L x 9.06\"W",
                "Paper Size": "8.5x11",
                "Item Weight": "35 Pounds"
            },
            "productDetails": {},
            "productVariations": {
                "dimensions": [
                    {
                        "index": 0,
                        "displayString": "Style",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "3 Hole (8.5x11)"
                            },
                            {
                                "index": 1,
                                "displayString": "Letter (8.5x11)"
                            },
                            {
                                "index": 2,
                                "displayString": "Legal (8.5x14)"
                            },
                            {
                                "index": 3,
                                "displayString": "Ledger (11x17)"
                            },
                            {
                                "index": 4,
                                "displayString": "12x18"
                            },
                            {
                                "index": 5,
                                "displayString": "19x13"
                            }
                        ]
                    },
                    {
                        "index": 1,
                        "displayString": "Size",
                        "dimensionValues": [
                            {
                                "index": 0,
                                "displayString": "1 Pack | 300 Sheets"
                            },
                            {
                                "index": 1,
                                "displayString": "1 Ream | 500 Sheets"
                            },
                            {
                                "index": 2,
                                "displayString": "2 Ream | 1000 Sheets"
                            },
                            {
                                "index": 3,
                                "displayString": "3 Ream | 1500 Sheets"
                            },
                            {
                                "index": 4,
                                "displayString": "4 Ream | 2000 Sheets"
                            },
                            {
                                "index": 5,
                                "displayString": "5 Ream | 2500 Sheets"
                            },
                            {
                                "index": 6,
                                "displayString": "6 Pack | 1800 Sheets"
                            },
                            {
                                "index": 7,
                                "displayString": "8 Ream | 4000 Sheets"
                            },
                            {
                                "index": 8,
                                "displayString": "Pallet | 160k Sheets"
                            }
                        ]
                    }
                ],
                "variations": [
                    {
                        "asin": "B00NCBKNXI",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0183P91GM",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 0
                            },
                            {
                                "index": 1,
                                "value": 7
                            }
                        ]
                    },
                    {
                        "asin": "B01MRZMWWO",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 0
                            }
                        ]
                    },
                    {
                        "asin": "B00006IDP3",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B0CZSHT6JK",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 2
                            }
                        ]
                    },
                    {
                        "asin": "B005EO3QHG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 5
                            }
                        ]
                    },
                    {
                        "asin": "B01N6G38S8",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 6
                            }
                        ]
                    },
                    {
                        "asin": "B077GYWNHN",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 1
                            },
                            {
                                "index": 1,
                                "value": 8
                            }
                        ]
                    },
                    {
                        "asin": "B0002NV02C",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B001818YLW",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 2
                            },
                            {
                                "index": 1,
                                "value": 7
                            }
                        ]
                    },
                    {
                        "asin": "B00006IDP4",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B01B4MLJLG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 3
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B002PI1T5U",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B00U0370JG",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 4
                            },
                            {
                                "index": 1,
                                "value": 4
                            }
                        ]
                    },
                    {
                        "asin": "B00NCBKNCY",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            },
                            {
                                "index": 1,
                                "value": 1
                            }
                        ]
                    },
                    {
                        "asin": "B000AN1T70",
                        "variationValues": [
                            {
                                "index": 0,
                                "value": 5
                            },
                            {
                                "index": 1,
                                "value": 3
                            }
                        ]
                    }
                ]
            },
            "customerReviewsSummary": {
                "numberOfRatings": null,
                "starRating": null
            },
            "productDescription": "Hammermill Premium Color Copy 28lb Paper provides a high-tech sheet of printing paper that’s designed to show your work at its best. Choose this printer paper for all of your important customer-facing documents from design proposals or full-color presentations to photographs, flyers or brochures. At 100 brightness, this premium copying paper is super bright for excellent image contrast and true color reproduction. The super smooth paper surface provides superior toner adhesion and a more stable surface for heavier toner application. With this premium copy and print paper, you’ll get consistently reliable results in digital printing equipment, color copiers and color laser printers. This acid-free white paper prevents sheets from yellowing over time to ensure long-lasting archival quality. Our 99.99. 000 sheets using Hammermill computer paper on your high-speed digital printer or we will replace your Hammermill paper purchase. We test more than 13.5 million sheets of paper every year to make sure that each sheet is consistent. Then we test our papers on all kinds of printer and copier equipment to ensure that it will work for you, every time, on every machine. Did you know that you are helping to conserve and restore forests when you buy Hammermill paper? “It’s More Than Just Paper” to us and millions of sustainable forestry workers across America, including American family tree farmers. Hammermill printer papers are made with renewable resources from certified sustainably managed forests, so you can feel good about using our products. MAKE SURE IT’S ORIGINAL HAMMERMILL QUALITY: look for “Ships from and sold by Amazon” at the top of the page, under the product title.",
            "upcValues": [],
            "eanValues": [],
            "modelNumber": null,
            "manufacturerName": null,
            "bundleQuantity": null,
            "badges": [
                {
                    "fragment": {
                        "title": "Sustainability Features",
                        "message": "Products with trusted sustainability certification(s).",
                        "link": null,
                        "type": "SUSTAINABILITY_BADGE",
                        "fragments": [
                            {
                                "title": "Forestry practices",
                                "message": "Made with materials from well-managed forests, recycled materials, and/or other controlled wood sources.",
                                "link": null,
                                "type": "SUSTAINABILITY_ATTRIBUTE",
                                "fragments": null
                            }
                        ]
                    }
                }
            ]
        }
    ]
}

Error handling

If your request is not successful, the API returns an errors object that provides information about what went wrong. For more information, see Error responses and schemas.

Frequently asked questions

Does Product Search API return blocked products?
When guided buying is enabled, the searchProductsRequest operation returns preferred and restricted products. Blocked products are not returned in the searchProductsRequest response. Calls to the Product Search API productsRequest, searchOffersRequest, and getProductsByAsins operations that include a blocked ASIN in the request will return the item with buyingGuidance set to BLOCKED.

How do I check if an item is preferred or restricted?
The type field in the buyingGuidanceV2 object indicates whether an item is PREFERRED or RESTRICTED.

I have multiple groups in my Amazon Business account, each with a different set of guided buying policies. How do I apply policies for a specific group to my search request?
Pass the groupTag query parameter in the request to identify the group making the search. When this field is provided, the group’s guided buying policies will be applied to the search.