spring-projects / spring-restdocs

Test-driven documentation for RESTful services
https://spring.io/projects/spring-restdocs
Apache License 2.0
1.16k stars 736 forks source link

RFC-6906 Profile Rel Support #32

Closed drdamour closed 5 years ago

drdamour commented 9 years ago

We've settled on using profile link relationship to help define what's available within the resource. https://tools.ietf.org/html/rfc6906

In the client profiles map to "traits" (which in the java 7 client is interfaces, maybe 8 we'll use default methods). Client is irrelevant but it illustrates the concept really nicely that different profiles indicate what is or isn't present.

So we don't really have "resource types" we have responses that have resources that claim to implement different profiles. This allows you to know what links & fields are or are not there.

I'd like to have a ToC/Nav that lists all profiles, lets you jump around, and indicate rel X on from resource of profile y will likely return profiles a,b or c.

It's very abstract, which can be difficult for consumers to get with thought...so maybe its' better to stick to resource types and collapse profiles around them.

and obv many API's don't use the profile thing explicitly...but implicitly a type could be considered a profile based upon it's "shape", ie the links and fields that are present.

Just spitballing problems here..not even really sure what I'm looking for.

To give you an idea how profiles helps here are two Product resources...that are both products, but also very different:

{
    "name": "Premium Meal Plan",
    "description": "Select From 7 Premium Entrees To Get 14 High-Quality Meals!",
    "briefDescription": "Premium Meals, Premium Plan!",
    "violator": null,
    "rating": {
        "value": 8.25,
        "count": 4,
        "category": "Excellent"
    },
    "flags": [],
    "biToken": "prod1430160",
    "_links": {
        "profile": [
            {
                "href": "https://catalog.bodybuilding.com/profiles/product"
            },
            {
                "href": "https://catalog.bodybuilding.com/profiles/product-combo"
            },
            {
                "href": "https://catalog.bodybuilding.com/profiles/product-meal-plan"
            }
        ],
        "self": {
            "href": "http://localhost:8080/products/prod1430160"
        },
        "bb:image": [
            {
                "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1430160/image_prodprod1430160_largeImage_X_450_white.jpg",
                "name": "large"
            },
            {
                "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1430160/image_prodprod1430160_largeImage_X_130_white.jpg",
                "name": "medium"
            },
            {
                "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1430160/image_prodprod1430160_largeImage_X_70_white.jpg",
                "name": "small"
            }
        ],
        "bb:reviews": {
            "href": "http://localhost:8080/products/prod1430160/reviews{?page,size,reviewType}",
            "type": "application/json",
            "templated": true
        }
    },
    "_embedded": {
        "bb:promotions": {
            "_links": {
                "self": {
                    "href": "http://localhost:8080/products/prod1430160/promotions?page=0&size=10"
                },
                "profile": [
                    {
                        "href": "https://api.bodybuilding.com/profiles/page"
                    }
                ],
                "search": {
                    "href": "http://localhost:8080/products/prod1430160/promotions{?page,size}",
                    "templated": true
                }
            },
            "page": {
                "size": 10,
                "totalElements": 0,
                "totalPages": 0,
                "number": 0
            }
        },
        "bb:skugroups": {
            "_links": {
                "self": {
                    "href": "http://localhost:8080/products/prod1430160/skugroups?page=0&size=1"
                },
                "profile": [
                    {
                        "href": "https://api.bodybuilding.com/profiles/page"
                    }
                ],
                "search": {
                    "href": "http://localhost:8080/products/prod1430160/skugroups{?page,size}",
                    "templated": true
                }
            },
            "_embedded": {
                "item": [
                    {
                        "name": "",
                        "violator": {
                            "text": "free shipping",
                            "color": "vio-red"
                        },
                        "listPriceDisplay": "$111.48",
                        "salePriceDisplay": "$111.48",
                        "listPrice": 111.48,
                        "salePrice": 111.48,
                        "flags": [],
                        "_links": {
                            "profile": [
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/skugroup"
                                },
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/skugroup-combo"
                                },
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/skugroup-meal-plan"
                                }
                            ],
                            "bb:image": [
                                {
                                    "href": "/images/store/skuimage/sku_BBFUEL1450168/image_skuBBFUEL1450168_largeImage_X_450_white.jpg",
                                    "name": "large"
                                },
                                {
                                    "href": "/images/store/skuimage/sku_BBFUEL1450168/image_skuBBFUEL1450168_largeImage_X_130_white.jpg",
                                    "name": "medium"
                                },
                                {
                                    "href": "/images/store/skuimage/sku_BBFUEL1450168/image_skuBBFUEL1450168_largeImage_X_70_white.jpg",
                                    "name": "small"
                                }
                            ],
                            "self": {
                                "href": "http://localhost:8080/skugroups/prod1430160_BBFUEL1450168"
                            },
                            "bb:product": {
                                "href": "http://localhost:8080/products/prod1430160"
                            }
                        },
                        "_embedded": {
                            "bb:skus": {
                                "_links": {
                                    "self": {
                                        "href": "http://localhost:8080/skugroups/prod1430160_BBFUEL1450168/skus?page=0&size=1"
                                    },
                                    "profile": [
                                        {
                                            "href": "https://api.bodybuilding.com/profiles/page"
                                        }
                                    ],
                                    "search": {
                                        "href": "http://localhost:8080/skugroups/prod1430160_BBFUEL1450168/skus{?page,size}",
                                        "templated": true
                                    }
                                },
                                "_embedded": {
                                    "item": [
                                        {
                                            "name": null,
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "BBFUEL1450168",
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-combo"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-meal-plan"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://localhost:8080/skus/BBFUEL1450168"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1450168/image_skuBBFUEL1450168_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1450168/image_skuBBFUEL1450168_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1450168/image_skuBBFUEL1450168_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://localhost:8080/skugroups/prod1430160_BBFUEL1450168"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://www.bodybuilding.com/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=BBFUEL1450168&productId=prod1430160{&CSRF}",
                                                    "templated": true
                                                }
                                            },
                                            "_embedded": {
                                                "bb:choice": [
                                                    {
                                                        "name": "Select Premium Meal  #1",
                                                        "quantity": 14,
                                                        "_links": {
                                                            "profile": [
                                                                {
                                                                    "href": "https://catalog.bodybuilding.com/profiles/choice"
                                                                },
                                                                {
                                                                    "href": "https://catalog.bodybuilding.com/profiles/choice-multi"
                                                                }
                                                            ],
                                                            "self": {
                                                                "href": "http://localhost:8080/skus/BBFUEL1450168/choices/cp660004"
                                                            },
                                                            "bb:image": [
                                                                {
                                                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390310/image_skuBBFUEL1390310_largeImage_X_70_white.jpg",
                                                                    "name": "small"
                                                                }
                                                            ],
                                                            "bb:select-update": {
                                                                "href": "http://localhost:8080/skus//selectUpdate{?options*}"
                                                            }
                                                        },
                                                        "_embedded": {
                                                            "bb:option": [
                                                                {
                                                                    "name": "Chicken Breast, Brown Rice & Broccoli",
                                                                    "inventory": {
                                                                        "status": "IN_STOCK",
                                                                        "label": "In Stock",
                                                                        "message": null
                                                                    },
                                                                    "biToken": "BBFUEL1390310",
                                                                    "gramsProtein": 39,
                                                                    "gramsCarbs": 33,
                                                                    "gramsFat": 8,
                                                                    "calories": 370,
                                                                    "_links": {
                                                                        "profile": [
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                                            },
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku-meal"
                                                                            }
                                                                        ],
                                                                        "self": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1450168/choices/cp660004/options/BBFUEL1390310"
                                                                        },
                                                                        "bb:image": [
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390310/image_skuBBFUEL1390310_largeImage_X_450_white.jpg",
                                                                                "name": "large"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390310/image_skuBBFUEL1390310_largeImage_X_130_white.jpg",
                                                                                "name": "medium"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390310/image_skuBBFUEL1390310_largeImage_X_70_white.jpg",
                                                                                "name": "small"
                                                                            }
                                                                        ],
                                                                        "bb:ingredient-label": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1390310/ingredientLabel",
                                                                            "type": "text/html"
                                                                        }
                                                                    }
                                                                },
                                                                {
                                                                    "name": "Tilapia & Broccoli",
                                                                    "inventory": {
                                                                        "status": "IN_STOCK",
                                                                        "label": "In Stock",
                                                                        "message": null
                                                                    },
                                                                    "biToken": "BBFUEL1390326",
                                                                    "_links": {
                                                                        "profile": [
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                                            }
                                                                        ],
                                                                        "self": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1450168/choices/cp660004/options/BBFUEL1390326"
                                                                        },
                                                                        "bb:image": [
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390326/image_skuBBFUEL1390326_largeImage_X_450_white.jpg",
                                                                                "name": "large"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390326/image_skuBBFUEL1390326_largeImage_X_130_white.jpg",
                                                                                "name": "medium"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390326/image_skuBBFUEL1390326_largeImage_X_70_white.jpg",
                                                                                "name": "small"
                                                                            }
                                                                        ],
                                                                        "bb:ingredient-label": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1390326/ingredientLabel",
                                                                            "type": "text/html"
                                                                        }
                                                                    }
                                                                },
                                                                {
                                                                    "name": "Egg White Omelet with Chicken & Oatmeal",
                                                                    "inventory": {
                                                                        "status": "IN_STOCK",
                                                                        "label": "In Stock",
                                                                        "message": null
                                                                    },
                                                                    "biToken": "BBFUEL1470124",
                                                                    "gramsProtein": 42,
                                                                    "gramsCarbs": 27,
                                                                    "gramsFat": 9,
                                                                    "calories": 350,
                                                                    "_links": {
                                                                        "profile": [
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                                            },
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku-meal"
                                                                            }
                                                                        ],
                                                                        "self": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1450168/choices/cp660004/options/BBFUEL1470124"
                                                                        },
                                                                        "bb:image": [
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1470124/image_skuBBFUEL1470124_largeImage_X_450_white.jpg",
                                                                                "name": "large"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1470124/image_skuBBFUEL1470124_largeImage_X_130_white.jpg",
                                                                                "name": "medium"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1470124/image_skuBBFUEL1470124_largeImage_X_70_white.jpg",
                                                                                "name": "small"
                                                                            }
                                                                        ],
                                                                        "bb:ingredient-label": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1470124/ingredientLabel",
                                                                            "type": "text/html"
                                                                        }
                                                                    }
                                                                },
                                                                {
                                                                    "name": "Egg White Omelet with Chicken & Vegetables",
                                                                    "inventory": {
                                                                        "status": "IN_STOCK",
                                                                        "label": "In Stock",
                                                                        "message": null
                                                                    },
                                                                    "biToken": "BBFUEL1470120",
                                                                    "gramsProtein": 37,
                                                                    "gramsCarbs": 7,
                                                                    "gramsFat": 8,
                                                                    "calories": 260,
                                                                    "_links": {
                                                                        "profile": [
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                                            },
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku-meal"
                                                                            }
                                                                        ],
                                                                        "self": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1450168/choices/cp660004/options/BBFUEL1470120"
                                                                        },
                                                                        "bb:image": [
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1470120/image_skuBBFUEL1470120_largeImage_X_450_white.jpg",
                                                                                "name": "large"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1470120/image_skuBBFUEL1470120_largeImage_X_130_white.jpg",
                                                                                "name": "medium"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1470120/image_skuBBFUEL1470120_largeImage_X_70_white.jpg",
                                                                                "name": "small"
                                                                            }
                                                                        ],
                                                                        "bb:ingredient-label": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1470120/ingredientLabel",
                                                                            "type": "text/html"
                                                                        }
                                                                    }
                                                                },
                                                                {
                                                                    "name": "Tilapia, Sweet Potato & Asparagus",
                                                                    "inventory": {
                                                                        "status": "IN_STOCK",
                                                                        "label": "In Stock",
                                                                        "message": null
                                                                    },
                                                                    "biToken": "BBFUEL1390328",
                                                                    "gramsProtein": 39,
                                                                    "gramsCarbs": 30,
                                                                    "gramsFat": 3,
                                                                    "calories": 300,
                                                                    "_links": {
                                                                        "profile": [
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                                            },
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku-meal"
                                                                            }
                                                                        ],
                                                                        "self": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1450168/choices/cp660004/options/BBFUEL1390328"
                                                                        },
                                                                        "bb:image": [
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390328/image_skuBBFUEL1390328_largeImage_X_450_white.jpg",
                                                                                "name": "large"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390328/image_skuBBFUEL1390328_largeImage_X_130_white.jpg",
                                                                                "name": "medium"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390328/image_skuBBFUEL1390328_largeImage_X_70_white.jpg",
                                                                                "name": "small"
                                                                            }
                                                                        ],
                                                                        "bb:ingredient-label": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1390328/ingredientLabel",
                                                                            "type": "text/html"
                                                                        }
                                                                    }
                                                                },
                                                                {
                                                                    "name": "Chicken Breast, Sweet Potato & Green Beans",
                                                                    "inventory": {
                                                                        "status": "IN_STOCK",
                                                                        "label": "In Stock",
                                                                        "message": null
                                                                    },
                                                                    "biToken": "BBFUEL1390308",
                                                                    "gramsProtein": 37,
                                                                    "gramsCarbs": 33,
                                                                    "gramsFat": 10,
                                                                    "calories": 370,
                                                                    "_links": {
                                                                        "profile": [
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                                            },
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku-meal"
                                                                            }
                                                                        ],
                                                                        "self": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1450168/choices/cp660004/options/BBFUEL1390308"
                                                                        },
                                                                        "bb:image": [
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390308/image_skuBBFUEL1390308_largeImage_X_450_white.jpg",
                                                                                "name": "large"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390308/image_skuBBFUEL1390308_largeImage_X_130_white.jpg",
                                                                                "name": "medium"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390308/image_skuBBFUEL1390308_largeImage_X_70_white.jpg",
                                                                                "name": "small"
                                                                            }
                                                                        ],
                                                                        "bb:ingredient-label": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1390308/ingredientLabel",
                                                                            "type": "text/html"
                                                                        }
                                                                    }
                                                                },
                                                                {
                                                                    "name": "Chicken Breast & Asparagus",
                                                                    "inventory": {
                                                                        "status": "IN_STOCK",
                                                                        "label": "In Stock",
                                                                        "message": null
                                                                    },
                                                                    "biToken": "BBFUEL1390312",
                                                                    "gramsProtein": 37,
                                                                    "gramsCarbs": 7,
                                                                    "gramsFat": 10,
                                                                    "calories": 260,
                                                                    "_links": {
                                                                        "profile": [
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                                            },
                                                                            {
                                                                                "href": "https://catalog.bodybuilding.com/profiles/sku-meal"
                                                                            }
                                                                        ],
                                                                        "self": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1450168/choices/cp660004/options/BBFUEL1390312"
                                                                        },
                                                                        "bb:image": [
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390312/image_skuBBFUEL1390312_largeImage_X_450_white.jpg",
                                                                                "name": "large"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390312/image_skuBBFUEL1390312_largeImage_X_130_white.jpg",
                                                                                "name": "medium"
                                                                            },
                                                                            {
                                                                                "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_BBFUEL1390312/image_skuBBFUEL1390312_largeImage_X_70_white.jpg",
                                                                                "name": "small"
                                                                            }
                                                                        ],
                                                                        "bb:ingredient-label": {
                                                                            "href": "http://localhost:8080/skus/BBFUEL1390312/ingredientLabel",
                                                                            "type": "text/html"
                                                                        }
                                                                    }
                                                                }
                                                            ],
                                                            "bb:brand": {
                                                                "label": "B-Elite Fuel",
                                                                "description": "You Are Elite. This Is Your Fuel.",
                                                                "_links": {
                                                                    "profile": [
                                                                        {
                                                                            "href": "https://catalog.bodybuilding.com/profiles/category"
                                                                        }
                                                                    ],
                                                                    "self": {
                                                                        "href": "http://localhost:8080/category/cat830006"
                                                                    },
                                                                    "bb:full": {
                                                                        "href": "http://localhost:8080/category/cat830006"
                                                                    },
                                                                    "bb:image": [
                                                                        {
                                                                            "href": "http://store.bbcomcdn.com/store/deploy/images/category/cat_cat830006/image_catcat830006_largeImage.png",
                                                                            "name": "icon"
                                                                        }
                                                                    ]
                                                                }
                                                            }
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ]
                                },
                                "page": {
                                    "size": 1,
                                    "totalElements": 1,
                                    "totalPages": 1,
                                    "number": 0
                                }
                            }
                        }
                    }
                ]
            },
            "page": {
                "size": 1,
                "totalElements": 1,
                "totalPages": 1,
                "number": 0
            }
        },
        "bb:brand": {
            "label": "B-Elite Fuel",
            "description": "You Are Elite. This Is Your Fuel.",
            "_links": {
                "profile": [
                    {
                        "href": "https://catalog.bodybuilding.com/profiles/category"
                    }
                ],
                "self": {
                    "href": "http://localhost:8080/category/cat830006"
                },
                "bb:full": {
                    "href": "http://localhost:8080/category/cat830006"
                },
                "bb:image": [
                    {
                        "href": "http://store.bbcomcdn.com/store/deploy/images/category/cat_cat830006/image_catcat830006_largeImage.png",
                        "name": "icon"
                    }
                ]
            }
        }
    }
}

and

{
    "name": "Phase8",
    "description": "Sustained Release Protein with Amino Acids for Longer Muscle Building Benefits*",
    "briefDescription": "Muscle Building Protein Powder Blend*",
    "violator": null,
    "rating": {
        "value": 9.1,
        "count": 2491,
        "category": "Excellent"
    },
    "flags": [],
    "biToken": "prod1280062",
    "_links": {
        "profile": [
            {
                "href": "https://catalog.bodybuilding.com/profiles/product"
            },
            {
                "href": "https://catalog.bodybuilding.com/profiles/product-supplement"
            }
        ],
        "self": {
            "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062"
        },
        "bb:image": [
            {
                "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1280062/image_prodprod1280062_largeImage_X_450_white.jpg",
                "name": "large"
            },
            {
                "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1280062/image_prodprod1280062_largeImage_X_130_white.jpg",
                "name": "medium"
            },
            {
                "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1280062/image_prodprod1280062_largeImage_X_70_white.jpg",
                "name": "small"
            }
        ],
        "bb:reviews": {
            "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062/reviews{?page,size,reviewType}",
            "type": "application/json",
            "templated": true
        },
        "bb:ingredient-labels": {
            "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062/ingredientLabels"
        }
    },
    "_embedded": {
        "bb:promotions": {
            "_links": {
                "self": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062/promotions?page=0&size=10"
                },
                "profile": [
                    {
                        "href": "https://api.bodybuilding.com/profiles/page"
                    }
                ],
                "search": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062/promotions{?page,size}",
                    "templated": true
                }
            },
            "_embedded": {
                "item": [
                    {
                        "title": "Stacked Savings!",
                        "content": "Get additional savings when you purchase <strong><a href=\"http://www.bodybuilding.com/store/muscletech/core-stack.html\">Core Stack</a></strong>",
                        "badges": null,
                        "disclaimer": null,
                        "_links": {
                            "profile": [
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/promotion"
                                }
                            ],
                            "self": {
                                "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/promotions/promo1580015"
                            },
                            "bb:image-primary": [
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1390076/image_prodprod1390076_largeImage_X_450_white.jpg",
                                    "name": "large"
                                },
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1390076/image_prodprod1390076_largeImage_X_130_white.jpg",
                                    "name": "small"
                                }
                            ],
                            "bb:image-secondary": [
                                {
                                    "href": "http://store.bbcomcdn.com/store/deploy/images/common/no_image/noimage-w450.png",
                                    "name": "large"
                                },
                                {
                                    "href": "http://store.bbcomcdn.com/store/deploy/images/common/no_image/noimage-w130.png",
                                    "name": "small"
                                }
                            ],
                            "bb:promotion-target": [
                                {
                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/category/BRAND_BIGNUTRITION",
                                    "name": "primary",
                                    "profile": "https://catalog.bodybuilding.com/profiles/category"
                                }
                            ]
                        }
                    }
                ]
            },
            "page": {
                "size": 10,
                "totalElements": 1,
                "totalPages": 1,
                "number": 0
            }
        },
        "bb:main-ingredient": {
            "label": "Whey Protein",
            "description": "Whey protein is a fast-absorbing source of protein to support lean muscle! Great for anytime of the day - especially post-workout! ",
            "_links": {
                "profile": [
                    {
                        "href": "https://catalog.bodybuilding.com/profiles/category"
                    }
                ],
                "self": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/category/INGREDIENT_WHEY_PROTEIN"
                },
                "bb:full": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/category/INGREDIENT_WHEY_PROTEIN"
                },
                "bb:image-menu": [
                    {
                        "href": "http://store.bbcomcdn.com/store/deploy/images/category/sub_and_featured/protein/whey_protein_featured.jpg",
                        "name": "medium"
                    }
                ]
            }
        },
        "bb:skugroups": {
            "_links": {
                "self": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062/skugroups?page=0&size=3"
                },
                "profile": [
                    {
                        "href": "https://api.bodybuilding.com/profiles/page"
                    }
                ],
                "search": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062/skugroups{?page,size}",
                    "templated": true
                }
            },
            "_embedded": {
                "item": [
                    {
                        "name": "2 Lbs.",
                        "violator": {
                            "text": null,
                            "color": null
                        },
                        "listPriceDisplay": "$44.99",
                        "salePriceDisplay": "$27.97",
                        "listPrice": 44.99,
                        "salePrice": 27.97,
                        "flags": [],
                        "size": "2 Lbs.",
                        "servings": 22,
                        "pricePerServing": 1.2713636363636363,
                        "_links": {
                            "profile": [
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/skugroup"
                                },
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/skugroup-supplement"
                                }
                            ],
                            "bb:image": [
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450152/image_skuMT1450152_largeImage_X_450_white.jpg",
                                    "name": "large"
                                },
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450152/image_skuMT1450152_largeImage_X_130_white.jpg",
                                    "name": "medium"
                                },
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450152/image_skuMT1450152_largeImage_X_70_white.jpg",
                                    "name": "small"
                                }
                            ],
                            "self": {
                                "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530374"
                            },
                            "bb:product": {
                                "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062"
                            }
                        },
                        "_embedded": {
                            "bb:skus": {
                                "_links": {
                                    "self": {
                                        "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530374/skus?page=0&size=6"
                                    },
                                    "profile": [
                                        {
                                            "href": "https://api.bodybuilding.com/profiles/page"
                                        }
                                    ],
                                    "search": {
                                        "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530374/skus{?page,size}",
                                        "templated": true
                                    }
                                },
                                "_embedded": {
                                    "item": [
                                        {
                                            "name": "Cookies and Cream",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1530374",
                                            "flavor": "Cookies and Cream",
                                            "flavorRating": 8.53,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1530374"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1530374/image_skuMT1530374_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1530374/image_skuMT1530374_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1530374/image_skuMT1530374_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530374"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1530374/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1530374&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1530374&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Milk Chocolate",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1450152",
                                            "flavor": "Milk Chocolate",
                                            "flavorRating": 8.91,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1450152"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450152/image_skuMT1450152_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450152/image_skuMT1450152_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450152/image_skuMT1450152_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530374"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1450152/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1450152&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1450152&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Peanut Butter Chocolate - Exclusive! ",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1640032",
                                            "flavor": "Peanut Butter Chocolate - Exclusive! ",
                                            "flavorRating": 9.48,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1640032"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1280062/image_prodprod1280062_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1280062/image_prodprod1280062_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1280062/image_prodprod1280062_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530374"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1640032/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1640032&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1640032&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Strawberry",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1450154",
                                            "flavor": "Strawberry",
                                            "flavorRating": 8.86,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1450154"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450154/image_skuMT1450154_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450154/image_skuMT1450154_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450154/image_skuMT1450154_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530374"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1450154/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1450154&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1450154&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Vanilla",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1450156",
                                            "flavor": "Vanilla",
                                            "flavorRating": 9.04,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1450156"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450156/image_skuMT1450156_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450156/image_skuMT1450156_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1450156/image_skuMT1450156_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530374"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1450156/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1450156&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1450156&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "White Chocolate",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1840012",
                                            "flavor": "White Chocolate",
                                            "flavorRating": 8.55,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1840012"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1840012/image_skuMT1840012_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1840012/image_skuMT1840012_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1840012/image_skuMT1840012_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530374"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1840012/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1840012&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1840012&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        }
                                    ]
                                },
                                "page": {
                                    "size": 6,
                                    "totalElements": 6,
                                    "totalPages": 1,
                                    "number": 0
                                }
                            }
                        }
                    },
                    {
                        "name": "4 Servings",
                        "violator": {
                            "text": null,
                            "color": null
                        },
                        "listPriceDisplay": "$13.99",
                        "salePriceDisplay": "$9.99",
                        "listPrice": 13.99,
                        "salePrice": 9.99,
                        "flags": [],
                        "size": "4 Servings",
                        "servings": 4,
                        "pricePerServing": 2.4975,
                        "_links": {
                            "profile": [
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/skugroup"
                                },
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/skugroup-supplement"
                                }
                            ],
                            "bb:image": [
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760033/image_skuMT1760033_largeImage_X_450_white.jpg",
                                    "name": "large"
                                },
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760033/image_skuMT1760033_largeImage_X_130_white.jpg",
                                    "name": "medium"
                                },
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760033/image_skuMT1760033_largeImage_X_70_white.jpg",
                                    "name": "small"
                                }
                            ],
                            "self": {
                                "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1760035"
                            },
                            "bb:product": {
                                "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062"
                            }
                        },
                        "_embedded": {
                            "bb:skus": {
                                "_links": {
                                    "self": {
                                        "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1760035/skus?page=0&size=5"
                                    },
                                    "profile": [
                                        {
                                            "href": "https://api.bodybuilding.com/profiles/page"
                                        }
                                    ],
                                    "search": {
                                        "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1760035/skus{?page,size}",
                                        "templated": true
                                    }
                                },
                                "_embedded": {
                                    "item": [
                                        {
                                            "name": "Cookies and Cream",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1760035",
                                            "flavor": "Cookies and Cream",
                                            "flavorRating": 8.53,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1760035"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760035/image_skuMT1760035_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760035/image_skuMT1760035_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760035/image_skuMT1760035_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1760035"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1760035/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1760035&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1760035&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Milk Chocolate",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1760031",
                                            "flavor": "Milk Chocolate",
                                            "flavorRating": 8.91,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1760031"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760031/image_skuMT1760031_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760031/image_skuMT1760031_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760031/image_skuMT1760031_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1760035"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1760031/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1760031&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1760031&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Peanut Butter Chocolate",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1760033",
                                            "flavor": "Peanut Butter Chocolate",
                                            "flavorRating": 8.36,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1760033"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760033/image_skuMT1760033_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760033/image_skuMT1760033_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760033/image_skuMT1760033_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1760035"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1760033/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1760033&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1760033&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Strawberry",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1950166",
                                            "flavor": "Strawberry",
                                            "flavorRating": 8.86,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1950166"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1280062/image_prodprod1280062_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1280062/image_prodprod1280062_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/prodimage/prod_prod1280062/image_prodprod1280062_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1760035"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1950166/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1950166&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1950166&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Vanilla",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1760108",
                                            "flavor": "Vanilla",
                                            "flavorRating": 9.04,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1760108"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760108/image_skuMT1760108_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760108/image_skuMT1760108_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1760108/image_skuMT1760108_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1760035"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1760108/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1760108&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1760108&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        }
                                    ]
                                },
                                "page": {
                                    "size": 5,
                                    "totalElements": 5,
                                    "totalPages": 1,
                                    "number": 0
                                }
                            }
                        }
                    },
                    {
                        "name": "4.4 Lbs.",
                        "violator": {
                            "text": null,
                            "color": null
                        },
                        "listPriceDisplay": "$82.99",
                        "salePriceDisplay": "$46.97",
                        "listPrice": 82.99,
                        "salePrice": 46.97,
                        "flags": [],
                        "size": "4.4 Lbs.",
                        "servings": 50,
                        "pricePerServing": 0.9394,
                        "_links": {
                            "profile": [
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/skugroup"
                                },
                                {
                                    "href": "https://catalog.bodybuilding.com/profiles/skugroup-supplement"
                                }
                            ],
                            "bb:image": [
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490004/image_skuMT1490004_largeImage_X_450_white.jpg",
                                    "name": "large"
                                },
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490004/image_skuMT1490004_largeImage_X_130_white.jpg",
                                    "name": "medium"
                                },
                                {
                                    "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490004/image_skuMT1490004_largeImage_X_70_white.jpg",
                                    "name": "small"
                                }
                            ],
                            "self": {
                                "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530372"
                            },
                            "bb:product": {
                                "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/products/prod1280062"
                            }
                        },
                        "_embedded": {
                            "bb:skus": {
                                "_links": {
                                    "self": {
                                        "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530372/skus?page=0&size=5"
                                    },
                                    "profile": [
                                        {
                                            "href": "https://api.bodybuilding.com/profiles/page"
                                        }
                                    ],
                                    "search": {
                                        "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530372/skus{?page,size}",
                                        "templated": true
                                    }
                                },
                                "_embedded": {
                                    "item": [
                                        {
                                            "name": "Cookies and Cream",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1530372",
                                            "flavor": "Cookies and Cream",
                                            "flavorRating": 8.53,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1530372"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1530372/image_skuMT1530372_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1530372/image_skuMT1530372_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1530372/image_skuMT1530372_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530372"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1530372/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1530372&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1530372&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Milk Chocolate",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1490004",
                                            "flavor": "Milk Chocolate",
                                            "flavorRating": 8.91,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1490004"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490004/image_skuMT1490004_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490004/image_skuMT1490004_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490004/image_skuMT1490004_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530372"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1490004/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1490004&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1490004&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Strawberry",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1490008",
                                            "flavor": "Strawberry",
                                            "flavorRating": 8.86,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1490008"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490008/image_skuMT1490008_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490008/image_skuMT1490008_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490008/image_skuMT1490008_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530372"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1490008/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1490008&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1490008&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "Vanilla",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1490006",
                                            "flavor": "Vanilla",
                                            "flavorRating": 9.04,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1490006"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490006/image_skuMT1490006_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490006/image_skuMT1490006_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1490006/image_skuMT1490006_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530372"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1490006/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1490006&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1490006&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        },
                                        {
                                            "name": "White Chocolate",
                                            "inventory": {
                                                "status": "IN_STOCK",
                                                "label": "In Stock",
                                                "message": null
                                            },
                                            "biToken": "MT1850002",
                                            "flavor": "White Chocolate",
                                            "flavorRating": 8.55,
                                            "_links": {
                                                "profile": [
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku"
                                                    },
                                                    {
                                                        "href": "https://catalog.bodybuilding.com/profiles/sku-supplement"
                                                    }
                                                ],
                                                "self": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1850002"
                                                },
                                                "bb:image": [
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1850002/image_skuMT1850002_largeImage_X_450_white.jpg",
                                                        "name": "large"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1850002/image_skuMT1850002_largeImage_X_130_white.jpg",
                                                        "name": "medium"
                                                    },
                                                    {
                                                        "href": "http://store.bbcomcdn.com/images/store/skuimage/sku_MT1850002/image_skuMT1850002_largeImage_X_70_white.jpg",
                                                        "name": "small"
                                                    }
                                                ],
                                                "bb:skugroup": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skugroups/prod1280062_MT1530372"
                                                },
                                                "bb:ingredient-label": {
                                                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/skus/MT1850002/ingredientLabel",
                                                    "type": "text/html"
                                                },
                                                "bb:add-to-wishlist": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/bodybuilding/commerce/wishlist/WishlistActor/addItemToWishList?skuId=MT1850002&productId=prod1280062{&CSRF}",
                                                    "templated": true
                                                },
                                                "bb:add-to-cart": {
                                                    "href": "http://bitwise-int1.dev:8080/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder?skuId=MT1850002&productId=prod1280062{&quantity,CSRF}",
                                                    "templated": true
                                                }
                                            }
                                        }
                                    ]
                                },
                                "page": {
                                    "size": 5,
                                    "totalElements": 5,
                                    "totalPages": 1,
                                    "number": 0
                                }
                            }
                        }
                    }
                ]
            },
            "page": {
                "size": 3,
                "totalElements": 3,
                "totalPages": 1,
                "number": 0
            }
        },
        "bb:main-goal": {
            "label": "Build Muscle",
            "description": "Looking to build a strong, lean and muscular body? Check out the top muscle building supplements and start seeing results! ",
            "_links": {
                "profile": [
                    {
                        "href": "https://catalog.bodybuilding.com/profiles/category"
                    }
                ],
                "self": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/category/BUILD_MUSCLE"
                },
                "bb:full": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/category/BUILD_MUSCLE"
                },
                "bb:image-menu": [
                    {
                        "href": "http://store.bbcomcdn.com/store/deploy/images/category/sub_and_featured/build_muscle/build_muscle_featured2.jpg",
                        "name": "medium"
                    }
                ]
            }
        },
        "bb:brand": {
            "label": "MuscleTech",
            "description": "MuscleTech has created a line of great products at great prices. Tons of people are using them everyday with great results... are you next?",
            "_links": {
                "profile": [
                    {
                        "href": "https://catalog.bodybuilding.com/profiles/category"
                    }
                ],
                "self": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/category/BRAND_MUSCLETECH"
                },
                "bb:full": {
                    "href": "http://bitwise-api1.dev:8080/commerce-hyper-api/category/BRAND_MUSCLETECH"
                },
                "bb:image": [
                    {
                        "href": "http://store.bbcomcdn.com/store/deploy/images/category/sub_and_featured/brand_images/muscletech-featured.png",
                        "name": "icon"
                    }
                ]
            }
        }
    }
}
wilkinsona commented 5 years ago

We’re cleaning out the issue tracker and closing issues that we’ve not seen much demand to fix. Feel free to comment with additional justifications if you feel that this one should not have been closed.