Last active
February 13, 2019 10:40
-
-
Save sadiq81/bf0e77a8561049ecd0a105479fc3ff5a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import Vox | |
class FileResource_V2: Resource { | |
required init(context: Context?) { super.init(context: context) } | |
@objc dynamic var status: NSNumber? | |
override class var resourceType: String { return "file" } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import Vox | |
class MediaImageResource: Resource { | |
@objc dynamic var name: String? | |
@objc dynamic var field_type: String? | |
@objc dynamic var image: FileResource_V2? | |
override class var resourceType: String { return "media--image" } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Created by Tommy Hinrichsen on 31/05/2018. | |
// Copyright (c) 2018 Foodservice Danmark. All rights reserved. | |
// | |
import Foundation | |
import Vox | |
class ProductDesignResource: Resource { | |
@objc dynamic var status: NSNumber? | |
@objc dynamic var title: String? | |
@objc dynamic var created: NSDate? | |
@objc dynamic var main_width: NSNumber? | |
@objc dynamic var offer_size: String? | |
@objc dynamic var offset_left: NSNumber? | |
@objc dynamic var offset_top: NSNumber? | |
@objc dynamic var price_color: String? | |
@objc dynamic var price_placement: String? | |
@objc dynamic var text_color: String? | |
@objc dynamic var text_placement: String? | |
@objc dynamic var background_image: FileResource_V2? | |
@objc dynamic var main_image: MediaImageResource? | |
@objc dynamic var related_product: ProductResource? | |
override class var resourceType: String { return "product-design" } | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import Vox | |
class ProductGroupResource: Resource { | |
var name: String? | |
var field_external_id: String? | |
var offer_size: String? | |
override class var resourceType: String { | |
return "product-group" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import Vox | |
class ProductOfferResource: Resource { | |
@objc dynamic var status: NSNumber? | |
@objc dynamic var title: String? | |
@objc dynamic var created: NSDate? | |
@objc dynamic var price: String? | |
@objc dynamic var priority: NSArray? | |
@objc dynamic var publish_date: NSDate? | |
@objc dynamic var sales_price: String? | |
@objc dynamic var savings_amount: String? | |
@objc dynamic var savings_percent: String? | |
@objc dynamic var savings_type: String? | |
@objc dynamic var special_message: String? | |
@objc dynamic var scope: String? | |
@objc dynamic var unpublish_date: NSDate? | |
@objc dynamic var valid_from: NSDate? | |
@objc dynamic var valid_to: NSDate? | |
@objc dynamic var variant_text: String? | |
@objc dynamic var weight: NSNumber? | |
@objc dynamic var design: ProductDesignResource? | |
@objc dynamic var product: ProductResource? | |
@objc dynamic var segment: SegmentResource_V2? | |
@objc dynamic var store: StoreResource_V2? | |
override class var resourceType: String { | |
return "product-offer" | |
} | |
override class var codingKeys: [String: String] { return ["scope": "type"] } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import Vox | |
class ProductResource: Resource { | |
@objc dynamic var status: NSNumber? | |
@objc dynamic var title: String? | |
@objc dynamic var created: NSDate? | |
@objc dynamic var text: String? | |
@objc dynamic var category: [String]? | |
@objc dynamic var field_external_id: String? | |
@objc dynamic var pant: NSNumber? | |
@objc dynamic var product_number: String? | |
@objc dynamic var sales_unit: String? | |
@objc dynamic var subtitle: String? | |
@objc dynamic var group: ProductGroupResource? | |
@objc dynamic var brand: MediaImageResource? | |
override class var resourceType: String { return "product" } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": [ | |
{ | |
"type": "product-offer", | |
"id": "fe5d5f72-a64a-472a-ba18-2c2256087553", | |
"attributes": { | |
"status": true, | |
"title": "Baguette rustic durum ", | |
"created": "2019-02-01T09:12:01+00:00", | |
"price": "153.50", | |
"priority": null, | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "117.00", | |
"savings_amount": "36.50", | |
"savings_percent": "23.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 999 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "cf7d6e5c-c772-4ffb-b10e-aecca53080a2" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe5d5f72-a64a-472a-ba18-2c2256087553/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe5d5f72-a64a-472a-ba18-2c2256087553/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "b018039d-abdc-463f-9645-c2f52c39ee79" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe5d5f72-a64a-472a-ba18-2c2256087553/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe5d5f72-a64a-472a-ba18-2c2256087553/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe5d5f72-a64a-472a-ba18-2c2256087553/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe5d5f72-a64a-472a-ba18-2c2256087553/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe5d5f72-a64a-472a-ba18-2c2256087553/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe5d5f72-a64a-472a-ba18-2c2256087553/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe5d5f72-a64a-472a-ba18-2c2256087553" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "9bd2b401-8b6f-4cae-87a2-d1f1b524bff9", | |
"attributes": { | |
"status": true, | |
"title": "Bacon", | |
"created": "2019-01-31T10:29:01+00:00", | |
"price": "97.00", | |
"priority": null, | |
"publish_date": "2019-01-31T23:00:00+00:00", | |
"sales_price": "80.00", | |
"savings_amount": "17.00", | |
"savings_percent": "17.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-11-30T23:00:00+00:00", | |
"valid_to": "2019-09-30T22:00:00+00:00", | |
"variant_text": null, | |
"weight": 999 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "d162793f-49f3-493d-a7c2-9b8e1136ae0d" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/9bd2b401-8b6f-4cae-87a2-d1f1b524bff9/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/9bd2b401-8b6f-4cae-87a2-d1f1b524bff9/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "c1c45279-c0f9-47b0-b95d-4ba0713c09a6" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/9bd2b401-8b6f-4cae-87a2-d1f1b524bff9/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/9bd2b401-8b6f-4cae-87a2-d1f1b524bff9/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/9bd2b401-8b6f-4cae-87a2-d1f1b524bff9/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/9bd2b401-8b6f-4cae-87a2-d1f1b524bff9/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/9bd2b401-8b6f-4cae-87a2-d1f1b524bff9/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/9bd2b401-8b6f-4cae-87a2-d1f1b524bff9/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/9bd2b401-8b6f-4cae-87a2-d1f1b524bff9" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "fe7a3ef6-1102-4f7a-8468-47116a01fe62", | |
"attributes": { | |
"status": true, | |
"title": "Rustik burgerbøf", | |
"created": "2019-01-31T10:29:01+00:00", | |
"price": "359.00", | |
"priority": null, | |
"publish_date": "2019-01-31T23:00:00+00:00", | |
"sales_price": "299.00", | |
"savings_amount": "60.00", | |
"savings_percent": "16.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-11-30T23:00:00+00:00", | |
"valid_to": "2019-09-30T22:00:00+00:00", | |
"variant_text": null, | |
"weight": 999 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "b9f86650-55e8-423c-8bc8-d322da4663a7" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe7a3ef6-1102-4f7a-8468-47116a01fe62/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe7a3ef6-1102-4f7a-8468-47116a01fe62/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "cf3d9f5d-86f4-44f8-a3a4-86cd1e8a04fc" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe7a3ef6-1102-4f7a-8468-47116a01fe62/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe7a3ef6-1102-4f7a-8468-47116a01fe62/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe7a3ef6-1102-4f7a-8468-47116a01fe62/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe7a3ef6-1102-4f7a-8468-47116a01fe62/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe7a3ef6-1102-4f7a-8468-47116a01fe62/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe7a3ef6-1102-4f7a-8468-47116a01fe62/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/fe7a3ef6-1102-4f7a-8468-47116a01fe62" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "e111c96c-b01a-4eb2-83a0-25a92857bdb5", | |
"attributes": { | |
"status": true, | |
"title": "Hakket oksekød Hej", | |
"created": "2019-02-01T09:13:01+00:00", | |
"price": "109.00", | |
"priority": null, | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "99.00", | |
"savings_amount": "10.00", | |
"savings_percent": "9.00", | |
"savings_type": "none", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 999 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "bce7b314-6bd0-4b76-adaf-e78211f1ad2a" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e111c96c-b01a-4eb2-83a0-25a92857bdb5/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e111c96c-b01a-4eb2-83a0-25a92857bdb5/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "6846d846-c057-4694-88a6-9355e8081b95" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e111c96c-b01a-4eb2-83a0-25a92857bdb5/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e111c96c-b01a-4eb2-83a0-25a92857bdb5/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e111c96c-b01a-4eb2-83a0-25a92857bdb5/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e111c96c-b01a-4eb2-83a0-25a92857bdb5/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e111c96c-b01a-4eb2-83a0-25a92857bdb5/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e111c96c-b01a-4eb2-83a0-25a92857bdb5/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e111c96c-b01a-4eb2-83a0-25a92857bdb5" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "b69c73b2-5cc6-4abd-ac62-e1f05830ccb0", | |
"attributes": { | |
"status": true, | |
"title": "Melboller", | |
"created": "2019-02-12T13:05:01+00:00", | |
"price": "60.00", | |
"priority": null, | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "49.00", | |
"savings_amount": "11.00", | |
"savings_percent": "18.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 999 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "c126a24d-cff1-4b91-8016-9fe55406b25a" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/b69c73b2-5cc6-4abd-ac62-e1f05830ccb0/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/b69c73b2-5cc6-4abd-ac62-e1f05830ccb0/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "2c00c651-16c5-4678-9023-dc883518b157" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/b69c73b2-5cc6-4abd-ac62-e1f05830ccb0/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/b69c73b2-5cc6-4abd-ac62-e1f05830ccb0/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/b69c73b2-5cc6-4abd-ac62-e1f05830ccb0/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/b69c73b2-5cc6-4abd-ac62-e1f05830ccb0/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/b69c73b2-5cc6-4abd-ac62-e1f05830ccb0/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/b69c73b2-5cc6-4abd-ac62-e1f05830ccb0/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/b69c73b2-5cc6-4abd-ac62-e1f05830ccb0" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "f5461149-7d25-4424-b057-2dc0e7a88aff", | |
"attributes": { | |
"status": true, | |
"title": "Fuldkornssandwich ", | |
"created": "2019-02-12T13:05:01+00:00", | |
"price": "94.00", | |
"priority": null, | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "83.00", | |
"savings_amount": "11.00", | |
"savings_percent": "11.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 999 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "9acd0264-78b5-4a9d-97f7-0bc96c6d97a5" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f5461149-7d25-4424-b057-2dc0e7a88aff/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f5461149-7d25-4424-b057-2dc0e7a88aff/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "1cca2058-8e96-41fd-883c-b1fe57c98286" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f5461149-7d25-4424-b057-2dc0e7a88aff/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f5461149-7d25-4424-b057-2dc0e7a88aff/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f5461149-7d25-4424-b057-2dc0e7a88aff/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f5461149-7d25-4424-b057-2dc0e7a88aff/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f5461149-7d25-4424-b057-2dc0e7a88aff/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f5461149-7d25-4424-b057-2dc0e7a88aff/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f5461149-7d25-4424-b057-2dc0e7a88aff" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "d6973249-0cbb-4e70-bef6-b1d69aa61b82", | |
"attributes": { | |
"status": true, | |
"title": "Grove buffalo boller", | |
"created": "2019-02-12T13:05:01+00:00", | |
"price": "190.50", | |
"priority": null, | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "150.00", | |
"savings_amount": "40.50", | |
"savings_percent": "21.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 999 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "0c739295-237e-4c50-b1f8-5f27427951d1" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/d6973249-0cbb-4e70-bef6-b1d69aa61b82/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/d6973249-0cbb-4e70-bef6-b1d69aa61b82/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "6869a852-d70e-4aed-ad02-213ace3bfc79" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/d6973249-0cbb-4e70-bef6-b1d69aa61b82/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/d6973249-0cbb-4e70-bef6-b1d69aa61b82/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/d6973249-0cbb-4e70-bef6-b1d69aa61b82/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/d6973249-0cbb-4e70-bef6-b1d69aa61b82/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/d6973249-0cbb-4e70-bef6-b1d69aa61b82/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/d6973249-0cbb-4e70-bef6-b1d69aa61b82/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/d6973249-0cbb-4e70-bef6-b1d69aa61b82" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "1a1a1a05-8614-40ff-a336-9cb948fda141", | |
"attributes": { | |
"status": true, | |
"title": "Rejer 200/300", | |
"created": "2019-02-12T13:05:01+00:00", | |
"price": "290.00", | |
"priority": null, | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "199.00", | |
"savings_amount": "91.00", | |
"savings_percent": "31.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 1 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "1bd0b094-e8fc-43ef-8f7d-10ef62958b4a" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/1a1a1a05-8614-40ff-a336-9cb948fda141/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/1a1a1a05-8614-40ff-a336-9cb948fda141/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "a6e54794-c5ff-4f99-a655-26bea6b16713" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/1a1a1a05-8614-40ff-a336-9cb948fda141/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/1a1a1a05-8614-40ff-a336-9cb948fda141/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/1a1a1a05-8614-40ff-a336-9cb948fda141/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/1a1a1a05-8614-40ff-a336-9cb948fda141/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/1a1a1a05-8614-40ff-a336-9cb948fda141/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/1a1a1a05-8614-40ff-a336-9cb948fda141/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/1a1a1a05-8614-40ff-a336-9cb948fda141" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "c6470c4a-9ca2-407c-bb92-2deedc08bb03", | |
"attributes": { | |
"status": true, | |
"title": "Luksusrejer XL 125/175", | |
"created": "2019-02-12T13:05:01+00:00", | |
"price": "352.25", | |
"priority": [ | |
"first" | |
], | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "264.00", | |
"savings_amount": "88.25", | |
"savings_percent": "25.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 2 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "0b9dac79-29c9-4c68-98c2-3e753d9ad01f" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/c6470c4a-9ca2-407c-bb92-2deedc08bb03/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/c6470c4a-9ca2-407c-bb92-2deedc08bb03/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "c2a1754b-9a20-457d-8445-52a74783ba80" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/c6470c4a-9ca2-407c-bb92-2deedc08bb03/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/c6470c4a-9ca2-407c-bb92-2deedc08bb03/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/c6470c4a-9ca2-407c-bb92-2deedc08bb03/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/c6470c4a-9ca2-407c-bb92-2deedc08bb03/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/c6470c4a-9ca2-407c-bb92-2deedc08bb03/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/c6470c4a-9ca2-407c-bb92-2deedc08bb03/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/c6470c4a-9ca2-407c-bb92-2deedc08bb03" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2", | |
"attributes": { | |
"status": true, | |
"title": "Kalkunbryst", | |
"created": "2019-02-01T09:13:01+00:00", | |
"price": "46.50", | |
"priority": null, | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "39.00", | |
"savings_amount": "7.50", | |
"savings_percent": "16.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 6 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "179104d4-15a8-4f45-8842-02405e5b4196" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "6ea48ab5-0875-419b-b757-12c68238767e" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/7f5e8e5f-08d1-4992-bd44-a5d9cc2149c2" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "e4038775-f7ac-48ff-ae63-14246e2b092d", | |
"attributes": { | |
"status": true, | |
"title": "Svinefilet ", | |
"created": "2019-02-01T09:13:01+00:00", | |
"price": "48.00", | |
"priority": null, | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "35.00", | |
"savings_amount": "13.00", | |
"savings_percent": "27.00", | |
"savings_type": "none", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 5 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "9f8fae34-57c0-444c-935a-441e43cb0c08" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e4038775-f7ac-48ff-ae63-14246e2b092d/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e4038775-f7ac-48ff-ae63-14246e2b092d/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "149cf46f-9d67-43d3-8425-7229223aa142" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e4038775-f7ac-48ff-ae63-14246e2b092d/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e4038775-f7ac-48ff-ae63-14246e2b092d/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "57f2fa4e-9aad-4951-bac3-d7853d4d8299" | |
}, | |
{ | |
"type": "segment", | |
"id": "1f69ecd0-6c28-49e5-aa89-18374be3fe4c" | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e4038775-f7ac-48ff-ae63-14246e2b092d/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e4038775-f7ac-48ff-ae63-14246e2b092d/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e4038775-f7ac-48ff-ae63-14246e2b092d/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e4038775-f7ac-48ff-ae63-14246e2b092d/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/e4038775-f7ac-48ff-ae63-14246e2b092d" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "f865467d-8af5-4488-8703-be8b1b0749f0", | |
"attributes": { | |
"status": true, | |
"title": "Stegte kyllingestrimler", | |
"created": "2019-02-01T09:13:01+00:00", | |
"price": "95.00", | |
"priority": [ | |
"first" | |
], | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "89.00", | |
"savings_amount": "6.00", | |
"savings_percent": "6.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 4 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "f914f5cc-660a-4757-a35d-db91c4274cd7" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f865467d-8af5-4488-8703-be8b1b0749f0/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f865467d-8af5-4488-8703-be8b1b0749f0/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "0aaafaf0-ebda-48be-b956-24afea87eeb0" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f865467d-8af5-4488-8703-be8b1b0749f0/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f865467d-8af5-4488-8703-be8b1b0749f0/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "51cf80c1-8120-43cf-b262-400da1728b88" | |
}, | |
{ | |
"type": "segment", | |
"id": "48e6425e-688c-4c9c-bcaf-1fc2bcda842e" | |
}, | |
{ | |
"type": "segment", | |
"id": "1f69ecd0-6c28-49e5-aa89-18374be3fe4c" | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f865467d-8af5-4488-8703-be8b1b0749f0/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f865467d-8af5-4488-8703-be8b1b0749f0/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f865467d-8af5-4488-8703-be8b1b0749f0/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f865467d-8af5-4488-8703-be8b1b0749f0/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/f865467d-8af5-4488-8703-be8b1b0749f0" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "191f75d9-601f-4444-a018-ee421e90de16", | |
"attributes": { | |
"status": true, | |
"title": "NN creme fraiche dressing", | |
"created": "2019-02-01T09:12:01+00:00", | |
"price": "118.95", | |
"priority": null, | |
"publish_date": "2019-02-10T23:00:00+00:00", | |
"sales_price": "99.00", | |
"savings_amount": "19.95", | |
"savings_percent": "16.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-12-09T23:00:00+00:00", | |
"valid_to": "2019-02-27T23:00:00+00:00", | |
"variant_text": null, | |
"weight": 3 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "b9403e09-b677-4e06-8a02-0c72c62a3fa6" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/191f75d9-601f-4444-a018-ee421e90de16/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/191f75d9-601f-4444-a018-ee421e90de16/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "b7fd433a-f05e-4c21-863a-c417bad40b1d" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/191f75d9-601f-4444-a018-ee421e90de16/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/191f75d9-601f-4444-a018-ee421e90de16/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "c4b2b333-149c-477e-8967-f221861a2ba1" | |
}, | |
{ | |
"type": "segment", | |
"id": "a141a080-6bd2-41c6-ae4d-9c04ee9fbc2a" | |
}, | |
{ | |
"type": "segment", | |
"id": "a4edc314-4e18-438c-ba66-69de0379c600" | |
}, | |
{ | |
"type": "segment", | |
"id": "3e192991-c364-4b55-9c98-0cc5ef033771" | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/191f75d9-601f-4444-a018-ee421e90de16/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/191f75d9-601f-4444-a018-ee421e90de16/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/191f75d9-601f-4444-a018-ee421e90de16/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/191f75d9-601f-4444-a018-ee421e90de16/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/191f75d9-601f-4444-a018-ee421e90de16" | |
} | |
} | |
}, | |
{ | |
"type": "product-offer", | |
"id": "68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0", | |
"attributes": { | |
"status": true, | |
"title": "Cocktailpølser", | |
"created": "2019-01-31T10:29:01+00:00", | |
"price": "53.00", | |
"priority": null, | |
"publish_date": "2019-01-31T23:00:00+00:00", | |
"sales_price": "49.00", | |
"savings_amount": "4.00", | |
"savings_percent": "7.00", | |
"savings_type": "price", | |
"special_message": null, | |
"type": "global", | |
"unpublish_date": "2019-02-27T23:00:00+00:00", | |
"valid_from": "2018-11-30T23:00:00+00:00", | |
"valid_to": "2019-09-30T22:00:00+00:00", | |
"variant_text": null, | |
"weight": 2 | |
}, | |
"relationships": { | |
"design": { | |
"data": { | |
"type": "product-design", | |
"id": "30297e59-f3f8-4089-a44b-3ffd0e446932" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0/relationships/design" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0/design" | |
} | |
} | |
}, | |
"product": { | |
"data": { | |
"type": "product", | |
"id": "64bcd4e3-dfe6-476b-b335-41e24cb5a7bd" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0/relationships/product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0/product" | |
} | |
} | |
}, | |
"segment": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "a141a080-6bd2-41c6-ae4d-9c04ee9fbc2a" | |
}, | |
{ | |
"type": "segment", | |
"id": "3e192991-c364-4b55-9c98-0cc5ef033771" | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0/relationships/segment" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0/segment" | |
} | |
} | |
}, | |
"store": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0/relationships/store" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0/store" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer/68d77d69-1fc5-4ebe-9a00-ea23ccc2f1e0" | |
} | |
} | |
} | |
], | |
"jsonapi": { | |
"version": "1.0", | |
"meta": { | |
"links": { | |
"self": { | |
"href": "http://jsonapi.org/format/1.0/" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-offer" | |
} | |
}, | |
"included": [ | |
{ | |
"type": "product-design", | |
"id": "cf7d6e5c-c772-4ffb-b10e-aecca53080a2", | |
"attributes": { | |
"status": true, | |
"title": "1x2", | |
"created": "2019-02-01T11:43:44+00:00", | |
"main_width": 50, | |
"offer_size": "2x1", | |
"offset_left": 73, | |
"offset_top": 35, | |
"price_color": "FFFFFF", | |
"price_placement": "right", | |
"text_color": "FFFFFF", | |
"text_placement": "right" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "4e19871e-75b7-443e-b95d-c6c97dea455b", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 4253, | |
"height": 4253, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/861/397965.png?itok=RbBLXBXf", | |
"width": 700, | |
"height": 700 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/861/397965.png?itok=oCegX5_y", | |
"width": 700, | |
"height": 700 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/861/397965.png?h=eb38c8c4&itok=Cx_Al1bN", | |
"width": 1400, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/861/397965.png?itok=XPLG7EV-", | |
"width": 1400, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/861/397965.png?itok=eRCz5G8u", | |
"width": 1400, | |
"height": 1400 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/861/397965.png?itok=jdt3tPml", | |
"width": 480, | |
"height": 480 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/861/397965.png?itok=178r38gK", | |
"width": 220, | |
"height": 220 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/861/397965.png?itok=fEhCV1rV", | |
"width": 1400, | |
"height": 1400 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/861/397965.png?itok=HoKpMboI", | |
"width": 100, | |
"height": 100 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/cf7d6e5c-c772-4ffb-b10e-aecca53080a2/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/cf7d6e5c-c772-4ffb-b10e-aecca53080a2/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "dec899c9-dd34-48bc-ab51-ada9dcf1dbcb" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/cf7d6e5c-c772-4ffb-b10e-aecca53080a2/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/cf7d6e5c-c772-4ffb-b10e-aecca53080a2/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "b018039d-abdc-463f-9645-c2f52c39ee79" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/cf7d6e5c-c772-4ffb-b10e-aecca53080a2/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/cf7d6e5c-c772-4ffb-b10e-aecca53080a2/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/cf7d6e5c-c772-4ffb-b10e-aecca53080a2" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "d162793f-49f3-493d-a7c2-9b8e1136ae0d", | |
"attributes": { | |
"status": true, | |
"title": "Bacon", | |
"created": "2019-01-31T11:28:27+00:00", | |
"main_width": 50, | |
"offer_size": "1x2", | |
"offset_left": 50, | |
"offset_top": 50, | |
"price_color": "000000", | |
"price_placement": "left", | |
"text_color": "000000", | |
"text_placement": "left" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "a9de1126-1bc2-497e-af8c-45eb9bcd8fca", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 1328, | |
"height": 1772, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/841/254277_1.jpg?itok=AIiMm6Aw", | |
"width": 525, | |
"height": 700 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/841/254277_1.jpg?h=1e1d0ed0&itok=yyUauwgK", | |
"width": 700, | |
"height": 1400 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/841/254277_1.jpg?itok=VGBgyB2R", | |
"width": 525, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/841/254277_1.jpg?itok=zENsaGhR", | |
"width": 1049, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/841/254277_1.jpg?itok=km_4AMWC", | |
"width": 1328, | |
"height": 1772 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/841/254277_1.jpg?itok=I5ZQmS_9", | |
"width": 360, | |
"height": 480 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/841/254277_1.jpg?itok=iB9hyntP", | |
"width": 165, | |
"height": 220 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/841/254277_1.jpg?itok=TXLSvuOW", | |
"width": 1328, | |
"height": 1772 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/841/254277_1.jpg?itok=pv1Jts7r", | |
"width": 75, | |
"height": 100 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/d162793f-49f3-493d-a7c2-9b8e1136ae0d/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/d162793f-49f3-493d-a7c2-9b8e1136ae0d/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "2f10b43e-7c4b-4b68-a7c1-b99bb223dc50" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/d162793f-49f3-493d-a7c2-9b8e1136ae0d/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/d162793f-49f3-493d-a7c2-9b8e1136ae0d/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "c1c45279-c0f9-47b0-b95d-4ba0713c09a6" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/d162793f-49f3-493d-a7c2-9b8e1136ae0d/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/d162793f-49f3-493d-a7c2-9b8e1136ae0d/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/d162793f-49f3-493d-a7c2-9b8e1136ae0d" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "b9f86650-55e8-423c-8bc8-d322da4663a7", | |
"attributes": { | |
"status": true, | |
"title": "Rustik burgerbøf 2", | |
"created": "2019-01-31T15:50:43+00:00", | |
"main_width": 50, | |
"offer_size": "1x2", | |
"offset_left": 50, | |
"offset_top": 50, | |
"price_color": "FFFFFF", | |
"price_placement": "right", | |
"text_color": "FFFFFF", | |
"text_placement": "right" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "a94055eb-b613-41a7-8c3e-8433e273dcf2", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 1328, | |
"height": 1772, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/844/254277_1.jpg?itok=FRzz-Bu5", | |
"width": 525, | |
"height": 700 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/844/254277_1.jpg?h=b90bb969&itok=5rXdGnaM", | |
"width": 700, | |
"height": 1400 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/844/254277_1.jpg?itok=omHjO7C8", | |
"width": 525, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/844/254277_1.jpg?itok=VB8vuWyi", | |
"width": 1049, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/844/254277_1.jpg?itok=JxgLCMcR", | |
"width": 1328, | |
"height": 1772 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/844/254277_1.jpg?itok=uSh6Xvlx", | |
"width": 360, | |
"height": 480 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/844/254277_1.jpg?itok=ReDOG4rq", | |
"width": 165, | |
"height": 220 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/844/254277_1.jpg?itok=Ne_S7lAP", | |
"width": 1328, | |
"height": 1772 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/844/254277_1.jpg?itok=npEfSSEN", | |
"width": 75, | |
"height": 100 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9f86650-55e8-423c-8bc8-d322da4663a7/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9f86650-55e8-423c-8bc8-d322da4663a7/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "a02cd7e6-19be-4002-a52d-29e172e294ea" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9f86650-55e8-423c-8bc8-d322da4663a7/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9f86650-55e8-423c-8bc8-d322da4663a7/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "cf3d9f5d-86f4-44f8-a3a4-86cd1e8a04fc" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9f86650-55e8-423c-8bc8-d322da4663a7/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9f86650-55e8-423c-8bc8-d322da4663a7/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9f86650-55e8-423c-8bc8-d322da4663a7" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "bce7b314-6bd0-4b76-adaf-e78211f1ad2a", | |
"attributes": { | |
"status": true, | |
"title": "2x2", | |
"created": "2019-02-01T11:55:57+00:00", | |
"main_width": 66, | |
"offer_size": "2x2", | |
"offset_left": 64, | |
"offset_top": 76, | |
"price_color": "FFFFFF", | |
"price_placement": "left", | |
"text_color": "FFFFFF", | |
"text_placement": "right" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "654867d9-9194-400f-9066-4bbb1c3da9d5", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 4200, | |
"height": 2803, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/867/479442_2%20%281%29.jpg?itok=h5e3c1Yi", | |
"width": 700, | |
"height": 467 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/867/479442_2%20%281%29.jpg?itok=nX1MJ2Qn", | |
"width": 700, | |
"height": 467 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/867/479442_2%20%281%29.jpg?itok=xLPEbFtA", | |
"width": 1049, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/867/479442_2%20%281%29.jpg?h=8f2a0657&itok=9wzYUspg", | |
"width": 1400, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/867/479442_2%20%281%29.jpg?itok=tw9Qk-Sx", | |
"width": 1400, | |
"height": 934 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/867/479442_2%20%281%29.jpg?itok=Esq9F8tj", | |
"width": 480, | |
"height": 320 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/867/479442_2%20%281%29.jpg?itok=URzX49sX", | |
"width": 220, | |
"height": 147 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/867/479442_2%20%281%29.jpg?itok=TGnwid7x", | |
"width": 1400, | |
"height": 934 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/867/479442_2%20%281%29.jpg?itok=ZJahilHD", | |
"width": 100, | |
"height": 67 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/bce7b314-6bd0-4b76-adaf-e78211f1ad2a/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/bce7b314-6bd0-4b76-adaf-e78211f1ad2a/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "1dbe8215-013a-453e-95eb-2cb139a58c18" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/bce7b314-6bd0-4b76-adaf-e78211f1ad2a/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/bce7b314-6bd0-4b76-adaf-e78211f1ad2a/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "6846d846-c057-4694-88a6-9355e8081b95" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/bce7b314-6bd0-4b76-adaf-e78211f1ad2a/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/bce7b314-6bd0-4b76-adaf-e78211f1ad2a/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/bce7b314-6bd0-4b76-adaf-e78211f1ad2a" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "c126a24d-cff1-4b91-8016-9fe55406b25a", | |
"attributes": { | |
"status": true, | |
"title": "gea ", | |
"created": "2019-02-12T13:10:49+00:00", | |
"main_width": 50, | |
"offer_size": "1x2", | |
"offset_left": 50, | |
"offset_top": 50, | |
"price_color": "000000", | |
"price_placement": "left", | |
"text_color": "000000", | |
"text_placement": "left" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "a573478e-3b67-4ab5-a2a6-eba07d954ada", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 2499, | |
"height": 1871, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/964/236577_1.jpg?itok=k469VOjT", | |
"width": 700, | |
"height": 524 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/964/236577_1.jpg?h=38347cb5&itok=urNynJPI", | |
"width": 700, | |
"height": 1399 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/964/236577_1.jpg?itok=200v5B7G", | |
"width": 935, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/964/236577_1.jpg?itok=fvLYQdi_", | |
"width": 1400, | |
"height": 1048 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/964/236577_1.jpg?itok=vVhjgMN_", | |
"width": 1400, | |
"height": 1048 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/964/236577_1.jpg?itok=e8qzAChp", | |
"width": 480, | |
"height": 359 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/964/236577_1.jpg?itok=lhBEY7jz", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/964/236577_1.jpg?itok=KT83CINm", | |
"width": 1400, | |
"height": 1048 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/964/236577_1.jpg?itok=QBzml-_b", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/c126a24d-cff1-4b91-8016-9fe55406b25a/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/c126a24d-cff1-4b91-8016-9fe55406b25a/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "de07c864-fa9d-4315-8a60-360085fab951" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/c126a24d-cff1-4b91-8016-9fe55406b25a/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/c126a24d-cff1-4b91-8016-9fe55406b25a/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "2c00c651-16c5-4678-9023-dc883518b157" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/c126a24d-cff1-4b91-8016-9fe55406b25a/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/c126a24d-cff1-4b91-8016-9fe55406b25a/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/c126a24d-cff1-4b91-8016-9fe55406b25a" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "9acd0264-78b5-4a9d-97f7-0bc96c6d97a5", | |
"attributes": { | |
"status": true, | |
"title": "2x2", | |
"created": "2019-02-12T13:05:55+00:00", | |
"main_width": 50, | |
"offer_size": "1x2", | |
"offset_left": 50, | |
"offset_top": 50, | |
"price_color": "000000", | |
"price_placement": "left", | |
"text_color": "000000", | |
"text_placement": "left" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "fc145e6e-b4ba-4b8c-8e7d-1bccdc1bf83a", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 4200, | |
"height": 2803, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/961/479442_2%20%281%29.jpg?itok=Qjui8uvp", | |
"width": 700, | |
"height": 467 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/961/479442_2%20%281%29.jpg?h=4cd6bdc0&itok=BpzVof7N", | |
"width": 700, | |
"height": 1400 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/961/479442_2%20%281%29.jpg?itok=uXiSZnE3", | |
"width": 1049, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/961/479442_2%20%281%29.jpg?itok=LFazfwtS", | |
"width": 1400, | |
"height": 934 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/961/479442_2%20%281%29.jpg?itok=QZFnT6qi", | |
"width": 1400, | |
"height": 934 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/961/479442_2%20%281%29.jpg?itok=f1ZWeIj6", | |
"width": 480, | |
"height": 320 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/961/479442_2%20%281%29.jpg?itok=RiO0iFCS", | |
"width": 220, | |
"height": 147 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/961/479442_2%20%281%29.jpg?itok=2kJjd36p", | |
"width": 1400, | |
"height": 934 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/961/479442_2%20%281%29.jpg?itok=r5r7WHYp", | |
"width": 100, | |
"height": 67 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9acd0264-78b5-4a9d-97f7-0bc96c6d97a5/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9acd0264-78b5-4a9d-97f7-0bc96c6d97a5/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "02190ecc-b7b2-4c04-8dba-1dace0a6b42f" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9acd0264-78b5-4a9d-97f7-0bc96c6d97a5/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9acd0264-78b5-4a9d-97f7-0bc96c6d97a5/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "1cca2058-8e96-41fd-883c-b1fe57c98286" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9acd0264-78b5-4a9d-97f7-0bc96c6d97a5/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9acd0264-78b5-4a9d-97f7-0bc96c6d97a5/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9acd0264-78b5-4a9d-97f7-0bc96c6d97a5" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "0c739295-237e-4c50-b1f8-5f27427951d1", | |
"attributes": { | |
"status": true, | |
"title": "eqtq", | |
"created": "2019-02-12T13:11:43+00:00", | |
"main_width": 50, | |
"offer_size": "2x2", | |
"offset_left": 50, | |
"offset_top": 50, | |
"price_color": "FFFFFF", | |
"price_placement": "right", | |
"text_color": "FFFFFF", | |
"text_placement": "right" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "1b87b7f4-6be0-478c-8a8d-d5cae0379cba", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 2499, | |
"height": 1871, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/965/236577_1.jpg?itok=9jLgXr17", | |
"width": 700, | |
"height": 524 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/965/236577_1.jpg?itok=p9QOIQ0R", | |
"width": 700, | |
"height": 524 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/965/236577_1.jpg?itok=f37XqJEg", | |
"width": 935, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/965/236577_1.jpg?h=ec8fc756&itok=Zlk9Ef0D", | |
"width": 1400, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/965/236577_1.jpg?itok=tUZ5ut8l", | |
"width": 1400, | |
"height": 1048 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/965/236577_1.jpg?itok=rPHytWWv", | |
"width": 480, | |
"height": 359 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/965/236577_1.jpg?itok=KnKO-37-", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/965/236577_1.jpg?itok=C0iF2F_d", | |
"width": 1400, | |
"height": 1048 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/965/236577_1.jpg?itok=Aq0k4Ly7", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0c739295-237e-4c50-b1f8-5f27427951d1/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0c739295-237e-4c50-b1f8-5f27427951d1/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0c739295-237e-4c50-b1f8-5f27427951d1/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0c739295-237e-4c50-b1f8-5f27427951d1/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "6869a852-d70e-4aed-ad02-213ace3bfc79" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0c739295-237e-4c50-b1f8-5f27427951d1/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0c739295-237e-4c50-b1f8-5f27427951d1/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0c739295-237e-4c50-b1f8-5f27427951d1" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "1bd0b094-e8fc-43ef-8f7d-10ef62958b4a", | |
"attributes": { | |
"status": true, | |
"title": "2x3", | |
"created": "2019-02-12T13:07:41+00:00", | |
"main_width": 50, | |
"offer_size": "1x2", | |
"offset_left": 50, | |
"offset_top": 50, | |
"price_color": "000000", | |
"price_placement": "left", | |
"text_color": "000000", | |
"text_placement": "left" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "1380c56b-ad0f-4246-9f5b-e7b4a06e9102", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 3608, | |
"height": 1570, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/962/350556.png?itok=SUu-34GF", | |
"width": 700, | |
"height": 305 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/962/350556.png?h=29ea17a3&itok=rgpsrD8V", | |
"width": 700, | |
"height": 1400 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/962/350556.png?itok=TeU6-Zmq", | |
"width": 1400, | |
"height": 609 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/962/350556.png?itok=CEyzQWBc", | |
"width": 1400, | |
"height": 609 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/962/350556.png?itok=CrguILQo", | |
"width": 1400, | |
"height": 609 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/962/350556.png?itok=3fRzIoyv", | |
"width": 480, | |
"height": 209 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/962/350556.png?itok=7fbvFG7t", | |
"width": 220, | |
"height": 96 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/962/350556.png?itok=Tz8t7Eup", | |
"width": 1400, | |
"height": 609 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/962/350556.png?itok=xxMzve7r", | |
"width": 100, | |
"height": 44 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/1bd0b094-e8fc-43ef-8f7d-10ef62958b4a/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/1bd0b094-e8fc-43ef-8f7d-10ef62958b4a/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "d9babab7-47d4-41b0-b38b-f28baaf80c24" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/1bd0b094-e8fc-43ef-8f7d-10ef62958b4a/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/1bd0b094-e8fc-43ef-8f7d-10ef62958b4a/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "a6e54794-c5ff-4f99-a655-26bea6b16713" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/1bd0b094-e8fc-43ef-8f7d-10ef62958b4a/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/1bd0b094-e8fc-43ef-8f7d-10ef62958b4a/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/1bd0b094-e8fc-43ef-8f7d-10ef62958b4a" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "0b9dac79-29c9-4c68-98c2-3e753d9ad01f", | |
"attributes": { | |
"status": true, | |
"title": "ag", | |
"created": "2019-02-12T13:13:41+00:00", | |
"main_width": 50, | |
"offer_size": "2x3", | |
"offset_left": 50, | |
"offset_top": 50, | |
"price_color": "FFFFFF", | |
"price_placement": "left", | |
"text_color": "FFFFFF", | |
"text_placement": "left" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "e2e0ff8e-e489-416c-bd78-6f851ec0b2b2", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 4200, | |
"height": 2803, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/966/479442_2%20%281%29.jpg?itok=0ZpCjvp1", | |
"width": 700, | |
"height": 467 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/966/479442_2%20%281%29.jpg?itok=FOtOeDiu", | |
"width": 700, | |
"height": 467 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/966/479442_2%20%281%29.jpg?itok=UnQf70S8", | |
"width": 1049, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/966/479442_2%20%281%29.jpg?itok=busC2iBd", | |
"width": 1400, | |
"height": 934 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/966/479442_2%20%281%29.jpg?h=551e8e2e&itok=OT4SKbhd", | |
"width": 1400, | |
"height": 2100 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/966/479442_2%20%281%29.jpg?itok=KDrIa3G9", | |
"width": 480, | |
"height": 320 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/966/479442_2%20%281%29.jpg?itok=OV9GPus3", | |
"width": 220, | |
"height": 147 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/966/479442_2%20%281%29.jpg?itok=CSO-1o91", | |
"width": 1400, | |
"height": 934 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/966/479442_2%20%281%29.jpg?itok=ab6EV-0e", | |
"width": 100, | |
"height": 67 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0b9dac79-29c9-4c68-98c2-3e753d9ad01f/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0b9dac79-29c9-4c68-98c2-3e753d9ad01f/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0b9dac79-29c9-4c68-98c2-3e753d9ad01f/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0b9dac79-29c9-4c68-98c2-3e753d9ad01f/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "c2a1754b-9a20-457d-8445-52a74783ba80" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0b9dac79-29c9-4c68-98c2-3e753d9ad01f/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0b9dac79-29c9-4c68-98c2-3e753d9ad01f/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/0b9dac79-29c9-4c68-98c2-3e753d9ad01f" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "179104d4-15a8-4f45-8842-02405e5b4196", | |
"attributes": { | |
"status": true, | |
"title": "2x3", | |
"created": "2019-02-01T11:52:04+00:00", | |
"main_width": 36, | |
"offer_size": "2x3", | |
"offset_left": 48, | |
"offset_top": 51, | |
"price_color": "FFFFFF", | |
"price_placement": "right", | |
"text_color": "FFFFFF", | |
"text_placement": "left" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "04eb4188-53b4-40d6-bb99-f5927a037377", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 4200, | |
"height": 2803, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/866/479442_2%20%281%29.jpg?itok=f_zhghJn", | |
"width": 700, | |
"height": 467 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/866/479442_2%20%281%29.jpg?itok=6y9Uszc1", | |
"width": 700, | |
"height": 467 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/866/479442_2%20%281%29.jpg?itok=ZEHDiXcL", | |
"width": 1049, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/866/479442_2%20%281%29.jpg?itok=tK8Ccu5P", | |
"width": 1400, | |
"height": 934 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/866/479442_2%20%281%29.jpg?h=157da39a&itok=pIVA0JyG", | |
"width": 1400, | |
"height": 2100 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/866/479442_2%20%281%29.jpg?itok=rrOrvWE6", | |
"width": 480, | |
"height": 320 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/866/479442_2%20%281%29.jpg?itok=PoBNiduv", | |
"width": 220, | |
"height": 147 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/866/479442_2%20%281%29.jpg?itok=moNxLG-F", | |
"width": 1400, | |
"height": 934 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/866/479442_2%20%281%29.jpg?itok=JQ6u4VLF", | |
"width": 100, | |
"height": 67 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/179104d4-15a8-4f45-8842-02405e5b4196/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/179104d4-15a8-4f45-8842-02405e5b4196/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "a30a9427-00bb-45bf-90e3-b5e20ae1f70a" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/179104d4-15a8-4f45-8842-02405e5b4196/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/179104d4-15a8-4f45-8842-02405e5b4196/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "6ea48ab5-0875-419b-b757-12c68238767e" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/179104d4-15a8-4f45-8842-02405e5b4196/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/179104d4-15a8-4f45-8842-02405e5b4196/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/179104d4-15a8-4f45-8842-02405e5b4196" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "9f8fae34-57c0-444c-935a-441e43cb0c08", | |
"attributes": { | |
"status": true, | |
"title": "2x3", | |
"created": "2019-02-01T11:50:12+00:00", | |
"main_width": 66, | |
"offer_size": "2x2", | |
"offset_left": 35, | |
"offset_top": 29, | |
"price_color": "FFFFFF", | |
"price_placement": "right", | |
"text_color": "FFFFFF", | |
"text_placement": "right" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "ab0931e4-54ad-4ff8-8ab9-e9cba3acbfe2", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 2499, | |
"height": 1871, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/865/236577_1.jpg?itok=aUKXH-X2", | |
"width": 700, | |
"height": 524 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/865/236577_1.jpg?itok=s7Mxlkjw", | |
"width": 700, | |
"height": 524 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/865/236577_1.jpg?itok=y7GFclJd", | |
"width": 935, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/865/236577_1.jpg?h=ec8fc756&itok=lJj_6qrO", | |
"width": 1400, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/865/236577_1.jpg?itok=6wRRU9U4", | |
"width": 1400, | |
"height": 1048 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/865/236577_1.jpg?itok=tI0XXJXj", | |
"width": 480, | |
"height": 359 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/865/236577_1.jpg?itok=xfNDOAMU", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/865/236577_1.jpg?itok=3VzyBHuE", | |
"width": 1400, | |
"height": 1048 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/865/236577_1.jpg?itok=6O_ht5O8", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9f8fae34-57c0-444c-935a-441e43cb0c08/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9f8fae34-57c0-444c-935a-441e43cb0c08/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "5460a667-9386-4c16-8510-d299e33989a0" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9f8fae34-57c0-444c-935a-441e43cb0c08/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9f8fae34-57c0-444c-935a-441e43cb0c08/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "149cf46f-9d67-43d3-8425-7229223aa142" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9f8fae34-57c0-444c-935a-441e43cb0c08/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9f8fae34-57c0-444c-935a-441e43cb0c08/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/9f8fae34-57c0-444c-935a-441e43cb0c08" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "f914f5cc-660a-4757-a35d-db91c4274cd7", | |
"attributes": { | |
"status": true, | |
"title": "2x2", | |
"created": "2019-02-01T11:48:05+00:00", | |
"main_width": 50, | |
"offer_size": "2x2", | |
"offset_left": 50, | |
"offset_top": 50, | |
"price_color": "000000", | |
"price_placement": "left", | |
"text_color": "000000", | |
"text_placement": "left" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "0615c5b1-33d9-49e5-9214-302839cbcc65", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 2499, | |
"height": 1871, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/864/236577_1.jpg?itok=YQzP0joj", | |
"width": 700, | |
"height": 524 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/864/236577_1.jpg?itok=9hapJUfQ", | |
"width": 700, | |
"height": 524 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/864/236577_1.jpg?itok=K5R0C9JB", | |
"width": 935, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/864/236577_1.jpg?h=04cee200&itok=U90wrDuH", | |
"width": 1400, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/864/236577_1.jpg?itok=GkedJWGj", | |
"width": 1400, | |
"height": 1048 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/864/236577_1.jpg?itok=hAsUgYjF", | |
"width": 480, | |
"height": 359 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/864/236577_1.jpg?itok=i7Le7uJf", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/864/236577_1.jpg?itok=dylw7wOC", | |
"width": 1400, | |
"height": 1048 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/864/236577_1.jpg?itok=tdDtrmsI", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/f914f5cc-660a-4757-a35d-db91c4274cd7/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/f914f5cc-660a-4757-a35d-db91c4274cd7/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "52aab095-1734-4854-a144-d31591f2793a" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/f914f5cc-660a-4757-a35d-db91c4274cd7/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/f914f5cc-660a-4757-a35d-db91c4274cd7/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "0aaafaf0-ebda-48be-b956-24afea87eeb0" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/f914f5cc-660a-4757-a35d-db91c4274cd7/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/f914f5cc-660a-4757-a35d-db91c4274cd7/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/f914f5cc-660a-4757-a35d-db91c4274cd7" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "b9403e09-b677-4e06-8a02-0c72c62a3fa6", | |
"attributes": { | |
"status": true, | |
"title": "1x1", | |
"created": "2019-02-01T10:41:25+00:00", | |
"main_width": 64, | |
"offer_size": "1x2", | |
"offset_left": 68, | |
"offset_top": 82, | |
"price_color": "000000", | |
"price_placement": "left", | |
"text_color": "000000", | |
"text_placement": "left" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "8a25ef65-00dc-4dae-8e13-0c2b5f1a6071", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 5440, | |
"height": 5471, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/860/414102_2.jpg?h=a6739f43&itok=Y_TsLEZf", | |
"width": 700, | |
"height": 700 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/860/414102_2.jpg?h=bfd595ed&itok=nSdAnq6F", | |
"width": 700, | |
"height": 1400 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/860/414102_2.jpg?itok=n19V9686", | |
"width": 696, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/860/414102_2.jpg?itok=qwDBwFcv", | |
"width": 1392, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/860/414102_2.jpg?itok=4-YSYoh2", | |
"width": 1400, | |
"height": 1408 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/860/414102_2.jpg?itok=KGNu_rMW", | |
"width": 477, | |
"height": 480 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/860/414102_2.jpg?itok=LkT4cM77", | |
"width": 219, | |
"height": 220 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/860/414102_2.jpg?itok=vJuEdBPI", | |
"width": 1400, | |
"height": 1408 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/860/414102_2.jpg?itok=-IwKCXHw", | |
"width": 99, | |
"height": 100 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9403e09-b677-4e06-8a02-0c72c62a3fa6/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9403e09-b677-4e06-8a02-0c72c62a3fa6/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "5cd7e543-bacf-45be-9b2b-f5310eb17bfa" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9403e09-b677-4e06-8a02-0c72c62a3fa6/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9403e09-b677-4e06-8a02-0c72c62a3fa6/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "b7fd433a-f05e-4c21-863a-c417bad40b1d" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9403e09-b677-4e06-8a02-0c72c62a3fa6/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9403e09-b677-4e06-8a02-0c72c62a3fa6/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/b9403e09-b677-4e06-8a02-0c72c62a3fa6" | |
} | |
} | |
}, | |
{ | |
"type": "product-design", | |
"id": "30297e59-f3f8-4089-a44b-3ffd0e446932", | |
"attributes": { | |
"status": true, | |
"title": "Cocktailpølser", | |
"created": "2019-01-31T14:22:07+00:00", | |
"main_width": 18, | |
"offer_size": "1x2", | |
"offset_left": 50, | |
"offset_top": 50, | |
"price_color": "FFFFFF", | |
"price_placement": "right", | |
"text_color": "FFFFFF", | |
"text_placement": "left" | |
}, | |
"relationships": { | |
"background_image": { | |
"data": { | |
"type": "file", | |
"id": "549b6933-d47b-41e8-b6e4-2bc2b81e3788", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 1328, | |
"height": 1772, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/crops/842/254277_1.jpg?h=5651ed42&itok=r1Ts4SIc", | |
"width": 700, | |
"height": 700 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/crops/842/254277_1.jpg?h=e28b18be&itok=66FiAPoC", | |
"width": 700, | |
"height": 1400 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/crops/842/254277_1.jpg?itok=xeh6zTJz", | |
"width": 525, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/crops/842/254277_1.jpg?itok=HP7w73ZY", | |
"width": 1049, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/crops/842/254277_1.jpg?itok=CsTTtUpg", | |
"width": 1328, | |
"height": 1772 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/crops/842/254277_1.jpg?itok=dqVgMgEK", | |
"width": 360, | |
"height": 480 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/crops/842/254277_1.jpg?itok=tg1j9Lxh", | |
"width": 165, | |
"height": 220 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/crops/842/254277_1.jpg?itok=gqNesoD4", | |
"width": 1328, | |
"height": 1772 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/crops/842/254277_1.jpg?itok=p3E9kJMU", | |
"width": 75, | |
"height": 100 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/30297e59-f3f8-4089-a44b-3ffd0e446932/relationships/background_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/30297e59-f3f8-4089-a44b-3ffd0e446932/background_image" | |
} | |
} | |
}, | |
"main_image": { | |
"data": { | |
"type": "media--image", | |
"id": "c8603ebb-4359-4732-850f-9b3a4774f176" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/30297e59-f3f8-4089-a44b-3ffd0e446932/relationships/main_image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/30297e59-f3f8-4089-a44b-3ffd0e446932/main_image" | |
} | |
} | |
}, | |
"related_product": { | |
"data": { | |
"type": "product", | |
"id": "64bcd4e3-dfe6-476b-b335-41e24cb5a7bd" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/30297e59-f3f8-4089-a44b-3ffd0e446932/relationships/related_product" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/30297e59-f3f8-4089-a44b-3ffd0e446932/related_product" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-design/30297e59-f3f8-4089-a44b-3ffd0e446932" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "dec899c9-dd34-48bc-ab51-ada9dcf1dbcb", | |
"attributes": { | |
"name": "397964.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "c6e7474a-e942-4d40-9c30-d95ac6995c3a", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 640, | |
"height": 480, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/25/b5/397964.png?itok=ZRRdoPax", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/25/b5/397964.png?itok=LainFJDh", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/25/b5/397964.png?itok=hs6E9N3o", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/25/b5/397964.png?itok=vS301ul9", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/25/b5/397964.png?itok=7TH6Gv9O", | |
"width": 640, | |
"height": 480 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/25/b5/397964.png?itok=QzrdAXJe", | |
"width": 480, | |
"height": 360 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/25/b5/397964.png?itok=MMkq6ZFJ", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/25/b5/397964.png?itok=7RN9bHr2", | |
"width": 640, | |
"height": 480 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/25/b5/397964.png?itok=QWocLR6v", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/dec899c9-dd34-48bc-ab51-ada9dcf1dbcb/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/dec899c9-dd34-48bc-ab51-ada9dcf1dbcb/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/dec899c9-dd34-48bc-ab51-ada9dcf1dbcb" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "2f10b43e-7c4b-4b68-a7c1-b99bb223dc50", | |
"attributes": { | |
"name": "264065.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "4c02fa6d-9f57-414f-847d-36cc40a1f1de", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 40, | |
"height": 40, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/9d/37/264065.png?itok=-PB7jpkm", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/9d/37/264065.png?itok=mzg4Rt1h", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/9d/37/264065.png?itok=0jlC7vnP", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/9d/37/264065.png?itok=nTjqyGDi", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/9d/37/264065.png?itok=DJsDNNWv", | |
"width": 40, | |
"height": 40 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/9d/37/264065.png?itok=GS-RP980", | |
"width": 40, | |
"height": 40 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/9d/37/264065.png?itok=-WbaMZgp", | |
"width": 40, | |
"height": 40 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/9d/37/264065.png?itok=lo1GtEBY", | |
"width": 40, | |
"height": 40 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/9d/37/264065.png?itok=PjOQiMsH", | |
"width": 40, | |
"height": 40 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/2f10b43e-7c4b-4b68-a7c1-b99bb223dc50/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/2f10b43e-7c4b-4b68-a7c1-b99bb223dc50/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/2f10b43e-7c4b-4b68-a7c1-b99bb223dc50" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "a02cd7e6-19be-4002-a52d-29e172e294ea", | |
"attributes": { | |
"name": "396457.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "5acf1ac8-77a0-438a-8765-a7cc93436601", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 40, | |
"height": 40, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/25/65/396457.png?itok=U8Upog1u", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/25/65/396457.png?itok=ffZtVEE2", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/25/65/396457.png?itok=yYyAmSKn", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/25/65/396457.png?itok=xJ0jZ3Zd", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/25/65/396457.png?itok=1R_lUDZ3", | |
"width": 40, | |
"height": 40 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/25/65/396457.png?itok=bgQo44Ol", | |
"width": 40, | |
"height": 40 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/25/65/396457.png?itok=8v_fEDUH", | |
"width": 40, | |
"height": 40 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/25/65/396457.png?itok=n8vUZHKt", | |
"width": 40, | |
"height": 40 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/25/65/396457.png?itok=5VZcT-B6", | |
"width": 40, | |
"height": 40 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/a02cd7e6-19be-4002-a52d-29e172e294ea/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/a02cd7e6-19be-4002-a52d-29e172e294ea/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/a02cd7e6-19be-4002-a52d-29e172e294ea" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "1dbe8215-013a-453e-95eb-2cb139a58c18", | |
"attributes": { | |
"name": "397972.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "6f989a02-1e9b-45f6-841a-62d3b03ae240", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 640, | |
"height": 480, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/a9/b2/397972.png?itok=3cdp0ptv", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/a9/b2/397972.png?itok=JrHb4y01", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/a9/b2/397972.png?itok=VHqRmo5d", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/a9/b2/397972.png?itok=5WdGvnaR", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/a9/b2/397972.png?itok=P3l1dKWH", | |
"width": 640, | |
"height": 480 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/a9/b2/397972.png?itok=5zUAJ8la", | |
"width": 480, | |
"height": 360 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/a9/b2/397972.png?itok=lGyILkYZ", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/a9/b2/397972.png?itok=x1j3sX9S", | |
"width": 640, | |
"height": 480 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/a9/b2/397972.png?itok=Q4icpxIN", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/1dbe8215-013a-453e-95eb-2cb139a58c18/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/1dbe8215-013a-453e-95eb-2cb139a58c18/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/1dbe8215-013a-453e-95eb-2cb139a58c18" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "de07c864-fa9d-4315-8a60-360085fab951", | |
"attributes": { | |
"name": "344771.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "cdee9358-ff0b-4576-a8c8-c2eaab60a8de", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 40, | |
"height": 40, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/29/14/344771.png?itok=2PYY4nla", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/29/14/344771.png?itok=mRrdCrqm", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/29/14/344771.png?itok=WqA1SSDd", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/29/14/344771.png?itok=fosSlCTO", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/29/14/344771.png?itok=OQ9G1Mg0", | |
"width": 40, | |
"height": 40 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/29/14/344771.png?itok=sMYJZHOh", | |
"width": 40, | |
"height": 40 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/29/14/344771.png?itok=oV6CTO3R", | |
"width": 40, | |
"height": 40 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/29/14/344771.png?itok=FidVrDov", | |
"width": 40, | |
"height": 40 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/29/14/344771.png?itok=UqN_PEQi", | |
"width": 40, | |
"height": 40 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/de07c864-fa9d-4315-8a60-360085fab951/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/de07c864-fa9d-4315-8a60-360085fab951/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/de07c864-fa9d-4315-8a60-360085fab951" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "02190ecc-b7b2-4c04-8dba-1dace0a6b42f", | |
"attributes": { | |
"name": "394087.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "1916b5ea-beaf-483c-840a-c47c9c2ef0c9", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 40, | |
"height": 40, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/38/96/394087.png?itok=6rstr_u1", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/38/96/394087.png?itok=x7Er0wir", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/38/96/394087.png?itok=GmRMRgCg", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/38/96/394087.png?itok=Be9DIUCW", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/38/96/394087.png?itok=HLm3R4D6", | |
"width": 40, | |
"height": 40 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/38/96/394087.png?itok=abisAcMp", | |
"width": 40, | |
"height": 40 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/38/96/394087.png?itok=8LZ87zSJ", | |
"width": 40, | |
"height": 40 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/38/96/394087.png?itok=zRUpeHcr", | |
"width": 40, | |
"height": 40 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/38/96/394087.png?itok=03lEV_L7", | |
"width": 40, | |
"height": 40 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/02190ecc-b7b2-4c04-8dba-1dace0a6b42f/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/02190ecc-b7b2-4c04-8dba-1dace0a6b42f/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/02190ecc-b7b2-4c04-8dba-1dace0a6b42f" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "d9babab7-47d4-41b0-b38b-f28baaf80c24", | |
"attributes": { | |
"name": "302401.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "b2e24ddd-be4e-4a0c-b0d2-be2696a7e440", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 1853, | |
"height": 2702, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/03/f9/302401.png?itok=hp2OJ10_", | |
"width": 480, | |
"height": 700 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/03/f9/302401.png?itok=7m1-R2Ym", | |
"width": 700, | |
"height": 1021 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/03/f9/302401.png?itok=-LuRzhh_", | |
"width": 480, | |
"height": 700 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/03/f9/302401.png?itok=G0Nstz2W", | |
"width": 960, | |
"height": 1400 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/03/f9/302401.png?itok=XxSBVNvs", | |
"width": 1400, | |
"height": 2041 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/03/f9/302401.png?itok=JYtrRHsx", | |
"width": 329, | |
"height": 480 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/03/f9/302401.png?itok=R77KxX6H", | |
"width": 151, | |
"height": 220 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/03/f9/302401.png?itok=S17yP-BB", | |
"width": 1400, | |
"height": 2041 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/03/f9/302401.png?itok=-vFxZdr2", | |
"width": 69, | |
"height": 100 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/d9babab7-47d4-41b0-b38b-f28baaf80c24/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/d9babab7-47d4-41b0-b38b-f28baaf80c24/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/d9babab7-47d4-41b0-b38b-f28baaf80c24" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "a30a9427-00bb-45bf-90e3-b5e20ae1f70a", | |
"attributes": { | |
"name": "397971.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "c34cfc5a-f3db-4081-bbcb-988da0895f94", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 640, | |
"height": 480, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/26/53/397971.png?itok=D-kS8fkI", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/26/53/397971.png?itok=rjsP80vu", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/26/53/397971.png?itok=Ba-sYdBY", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/26/53/397971.png?itok=wJSw5Sug", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/26/53/397971.png?itok=Czibcw2H", | |
"width": 640, | |
"height": 480 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/26/53/397971.png?itok=jFAP6MVa", | |
"width": 480, | |
"height": 360 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/26/53/397971.png?itok=LoyNLUK3", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/26/53/397971.png?itok=B302N898", | |
"width": 640, | |
"height": 480 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/26/53/397971.png?itok=v2EgJzho", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/a30a9427-00bb-45bf-90e3-b5e20ae1f70a/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/a30a9427-00bb-45bf-90e3-b5e20ae1f70a/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/a30a9427-00bb-45bf-90e3-b5e20ae1f70a" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "5460a667-9386-4c16-8510-d299e33989a0", | |
"attributes": { | |
"name": "397968.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "f6d1ccb2-55a1-4aec-94c6-866cc8f73610", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 640, | |
"height": 480, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/41/52/397968.png?itok=A4MNTkYA", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/41/52/397968.png?itok=fXo8gtki", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/41/52/397968.png?itok=mtSCCZMR", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/41/52/397968.png?itok=bKjsWf6r", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/41/52/397968.png?itok=f88GT3A5", | |
"width": 640, | |
"height": 480 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/41/52/397968.png?itok=BljaZOzg", | |
"width": 480, | |
"height": 360 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/41/52/397968.png?itok=jv2K0xgJ", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/41/52/397968.png?itok=h-9-p9Ne", | |
"width": 640, | |
"height": 480 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/41/52/397968.png?itok=yX8EFM59", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/5460a667-9386-4c16-8510-d299e33989a0/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/5460a667-9386-4c16-8510-d299e33989a0/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/5460a667-9386-4c16-8510-d299e33989a0" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "52aab095-1734-4854-a144-d31591f2793a", | |
"attributes": { | |
"name": "397967.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "23429f24-fe6b-4d86-800a-4dd0afa812e0", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 640, | |
"height": 480, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/c0/5d/397967.png?itok=Up3hCG1g", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/c0/5d/397967.png?itok=oh6bzDyv", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/c0/5d/397967.png?itok=QOPxa9kq", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/c0/5d/397967.png?itok=OUiFDc84", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/c0/5d/397967.png?itok=N_ajenXo", | |
"width": 640, | |
"height": 480 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/c0/5d/397967.png?itok=ryP_bGMk", | |
"width": 480, | |
"height": 360 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/c0/5d/397967.png?itok=IurRN1Y6", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/c0/5d/397967.png?itok=dolSqyU6", | |
"width": 640, | |
"height": 480 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/c0/5d/397967.png?itok=x4Uqycd6", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/52aab095-1734-4854-a144-d31591f2793a/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/52aab095-1734-4854-a144-d31591f2793a/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/52aab095-1734-4854-a144-d31591f2793a" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "5cd7e543-bacf-45be-9b2b-f5310eb17bfa", | |
"attributes": { | |
"name": "397963.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "5c0abf9c-2acf-4358-a311-ae8dcf5bdab8", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 640, | |
"height": 480, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/b0/47/397963.png?itok=bmYc1nSb", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/b0/47/397963.png?itok=BRrffTIC", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/b0/47/397963.png?itok=kmZ3Qbd1", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/b0/47/397963.png?itok=c2cJ5xiD", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/b0/47/397963.png?itok=tYZDXRwB", | |
"width": 640, | |
"height": 480 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/b0/47/397963.png?itok=VmM06tOA", | |
"width": 480, | |
"height": 360 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/b0/47/397963.png?itok=BVIG-XVQ", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/b0/47/397963.png?itok=wT3-fVTI", | |
"width": 640, | |
"height": 480 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/b0/47/397963.png?itok=UayXWkJA", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/5cd7e543-bacf-45be-9b2b-f5310eb17bfa/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/5cd7e543-bacf-45be-9b2b-f5310eb17bfa/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/5cd7e543-bacf-45be-9b2b-f5310eb17bfa" | |
} | |
} | |
}, | |
{ | |
"type": "media--image", | |
"id": "c8603ebb-4359-4732-850f-9b3a4774f176", | |
"attributes": { | |
"name": "265093.png", | |
"field_type": "product" | |
}, | |
"relationships": { | |
"image": { | |
"data": { | |
"type": "file", | |
"id": "70b1ed5b-be0f-4e6c-a6b5-a9d714522413", | |
"meta": { | |
"alt": null, | |
"title": null, | |
"width": 40, | |
"height": 40, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/import-images/3f/a6/265093.png?itok=OIieFEFK", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/import-images/3f/a6/265093.png?itok=N4XYSAeh", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/import-images/3f/a6/265093.png?itok=s-BxrcdX", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/import-images/3f/a6/265093.png?itok=5GWaiF3p", | |
"width": 40, | |
"height": 40 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/import-images/3f/a6/265093.png?itok=ns_abrZr", | |
"width": 40, | |
"height": 40 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/import-images/3f/a6/265093.png?itok=aGgKq79k", | |
"width": 40, | |
"height": 40 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/import-images/3f/a6/265093.png?itok=rv9CcFnO", | |
"width": 40, | |
"height": 40 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/import-images/3f/a6/265093.png?itok=YRjiFz0j", | |
"width": 40, | |
"height": 40 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/import-images/3f/a6/265093.png?itok=r8IYpx-r", | |
"width": 40, | |
"height": 40 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/c8603ebb-4359-4732-850f-9b3a4774f176/relationships/image" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/c8603ebb-4359-4732-850f-9b3a4774f176/image" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/media/image/c8603ebb-4359-4732-850f-9b3a4774f176" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "b018039d-abdc-463f-9645-c2f52c39ee79", | |
"attributes": { | |
"status": true, | |
"title": "Baguette rustic durum ", | |
"created": "2019-02-01T09:12:01+00:00", | |
"description": null, | |
"category": [ | |
"frozen" | |
], | |
"field_external_id": "377199", | |
"pant": false, | |
"product_number": "159005", | |
"sales_unit": "Pr. ks.", | |
"subtitle": "392 g. Ca. 55 cm. Kasse a 14 stk. Pr. stk. 8,36." | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "17a4df5d-d8f4-42f4-85f7-25122d25cbf4" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b018039d-abdc-463f-9645-c2f52c39ee79/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b018039d-abdc-463f-9645-c2f52c39ee79/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "da2f0af5-5630-48c0-bbc2-589702ff07e4" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b018039d-abdc-463f-9645-c2f52c39ee79/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b018039d-abdc-463f-9645-c2f52c39ee79/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b018039d-abdc-463f-9645-c2f52c39ee79" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "c1c45279-c0f9-47b0-b95d-4ba0713c09a6", | |
"attributes": { | |
"status": true, | |
"title": "Bacon", | |
"created": "2019-01-31T10:29:01+00:00", | |
"description": null, | |
"category": null, | |
"field_external_id": "237422", | |
"pant": false, | |
"product_number": "451940", | |
"sales_unit": "Pr. pk.", | |
"subtitle": "2,5 kg. I skiver. " | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "c7fdf721-804b-4f92-98e2-837d353ddfc4" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c1c45279-c0f9-47b0-b95d-4ba0713c09a6/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c1c45279-c0f9-47b0-b95d-4ba0713c09a6/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "54ebd7c5-0e31-4c07-aa60-e16a5ef05604" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c1c45279-c0f9-47b0-b95d-4ba0713c09a6/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c1c45279-c0f9-47b0-b95d-4ba0713c09a6/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c1c45279-c0f9-47b0-b95d-4ba0713c09a6" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "cf3d9f5d-86f4-44f8-a3a4-86cd1e8a04fc", | |
"attributes": { | |
"status": true, | |
"title": "Rustik burgerbøf", | |
"created": "2019-01-31T10:29:01+00:00", | |
"description": null, | |
"category": [ | |
"frozen" | |
], | |
"field_external_id": "309639", | |
"pant": false, | |
"product_number": "224552", | |
"sales_unit": "Pr. ks.", | |
"subtitle": "150 g. Kasse a 36 stk." | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "c7fdf721-804b-4f92-98e2-837d353ddfc4" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/cf3d9f5d-86f4-44f8-a3a4-86cd1e8a04fc/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/cf3d9f5d-86f4-44f8-a3a4-86cd1e8a04fc/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "5549d2ff-c5b6-40fb-be28-62fb3396f502" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/cf3d9f5d-86f4-44f8-a3a4-86cd1e8a04fc/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/cf3d9f5d-86f4-44f8-a3a4-86cd1e8a04fc/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/cf3d9f5d-86f4-44f8-a3a4-86cd1e8a04fc" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "6846d846-c057-4694-88a6-9355e8081b95", | |
"attributes": { | |
"status": true, | |
"title": "Hakket oksekød Hej", | |
"created": "2019-02-01T09:13:01+00:00", | |
"description": null, | |
"category": null, | |
"field_external_id": "268098", | |
"pant": false, | |
"product_number": "467554", | |
"sales_unit": "Pr. pk.", | |
"subtitle": "Pakke a 2,5 kg. 8-12%. Pr. kg. 39,60" | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "fec8cc44-7a87-4509-9dbb-ae6a4e83d644" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6846d846-c057-4694-88a6-9355e8081b95/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6846d846-c057-4694-88a6-9355e8081b95/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "1ae3cbb9-e9e0-4d66-98f8-8482dbc149ad" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6846d846-c057-4694-88a6-9355e8081b95/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6846d846-c057-4694-88a6-9355e8081b95/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6846d846-c057-4694-88a6-9355e8081b95" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "2c00c651-16c5-4678-9023-dc883518b157", | |
"attributes": { | |
"status": true, | |
"title": "Melboller", | |
"created": "2019-02-12T13:05:01+00:00", | |
"description": null, | |
"category": [ | |
"frozen" | |
], | |
"field_external_id": "265496", | |
"pant": false, | |
"product_number": "427179", | |
"sales_unit": "Pr. ps.", | |
"subtitle": "2 kg" | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "507066b5-6c0f-4f7c-9b61-bc2db04a06fd" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/2c00c651-16c5-4678-9023-dc883518b157/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/2c00c651-16c5-4678-9023-dc883518b157/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "d12acf1c-2b09-4841-a2d0-358a4e177633" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/2c00c651-16c5-4678-9023-dc883518b157/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/2c00c651-16c5-4678-9023-dc883518b157/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/2c00c651-16c5-4678-9023-dc883518b157" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "1cca2058-8e96-41fd-883c-b1fe57c98286", | |
"attributes": { | |
"status": true, | |
"title": "Fuldkornssandwich ", | |
"created": "2019-02-12T13:05:01+00:00", | |
"description": null, | |
"category": [ | |
"frozen" | |
], | |
"field_external_id": "371644", | |
"pant": false, | |
"product_number": "259649", | |
"sales_unit": "Pr. ks.", | |
"subtitle": "125 g. Kasse a 24 stk. Pr. stk. 3,46." | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "18c95aae-c32c-4dfc-8b1c-b223e19c2f94" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/1cca2058-8e96-41fd-883c-b1fe57c98286/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/1cca2058-8e96-41fd-883c-b1fe57c98286/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "3e385b83-621a-4203-abae-114f87898752" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/1cca2058-8e96-41fd-883c-b1fe57c98286/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/1cca2058-8e96-41fd-883c-b1fe57c98286/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/1cca2058-8e96-41fd-883c-b1fe57c98286" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "6869a852-d70e-4aed-ad02-213ace3bfc79", | |
"attributes": { | |
"status": true, | |
"title": "Grove buffalo boller", | |
"created": "2019-02-12T13:05:01+00:00", | |
"description": null, | |
"category": [ | |
"frozen" | |
], | |
"field_external_id": "377183", | |
"pant": false, | |
"product_number": "103246", | |
"sales_unit": "Pr. ks.", | |
"subtitle": "90 g. Kasse a 48 stk. Pr. stk. 3,36." | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "72727ea1-0a18-4d95-bbfd-7fde9f53dfb0" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6869a852-d70e-4aed-ad02-213ace3bfc79/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6869a852-d70e-4aed-ad02-213ace3bfc79/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "da2f0af5-5630-48c0-bbc2-589702ff07e4" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6869a852-d70e-4aed-ad02-213ace3bfc79/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6869a852-d70e-4aed-ad02-213ace3bfc79/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6869a852-d70e-4aed-ad02-213ace3bfc79" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "a6e54794-c5ff-4f99-a655-26bea6b16713", | |
"attributes": { | |
"status": true, | |
"title": "Rejer 200/300", | |
"created": "2019-02-12T13:05:01+00:00", | |
"description": null, | |
"category": [ | |
"frozen", | |
"fishmsc" | |
], | |
"field_external_id": "245184", | |
"pant": false, | |
"product_number": "414102", | |
"sales_unit": "Pr. ps.", | |
"subtitle": "2 kg. Kogte. Pillede. " | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "e1dfd46a-4e7a-4890-8ef2-b04298335116" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/a6e54794-c5ff-4f99-a655-26bea6b16713/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/a6e54794-c5ff-4f99-a655-26bea6b16713/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "cab0c7fd-8a5f-4f9c-891a-b9e6d1eccfd6" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/a6e54794-c5ff-4f99-a655-26bea6b16713/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/a6e54794-c5ff-4f99-a655-26bea6b16713/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/a6e54794-c5ff-4f99-a655-26bea6b16713" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "c2a1754b-9a20-457d-8445-52a74783ba80", | |
"attributes": { | |
"status": true, | |
"title": "Luksusrejer XL 125/175", | |
"created": "2019-02-12T13:05:01+00:00", | |
"description": { | |
"value": "Den nordatlantiske koldtvandsreje (Pandalus borealis) er kendt over hele verden for sin delikate, sødlige smag og kød, der har en fast og saftig konsistens. Koldtvandsrejen er en god kilde til protein og har et lavt fedtindhold, hvilket gør den til en sund og nærende delikatesse.", | |
"format": null, | |
"processed": "<p>Den nordatlantiske koldtvandsreje (Pandalus borealis) er kendt over hele verden for sin delikate, sødlige smag og kød, der har en fast og saftig konsistens. Koldtvandsrejen er en god kilde til protein og har et lavt fedtindhold, hvilket gør den til en sund og nærende delikatesse.</p>\n", | |
"summary": null | |
}, | |
"category": [ | |
"frozen", | |
"fishmsc" | |
], | |
"field_external_id": "273083", | |
"pant": false, | |
"product_number": "419460", | |
"sales_unit": "Pr. ps.", | |
"subtitle": "2 kg / 1,8 kg" | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "484c8668-44c6-497f-801a-08cce045fd6a" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c2a1754b-9a20-457d-8445-52a74783ba80/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c2a1754b-9a20-457d-8445-52a74783ba80/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "4f179cd2-980c-438b-868c-b80090ab2d33" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c2a1754b-9a20-457d-8445-52a74783ba80/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c2a1754b-9a20-457d-8445-52a74783ba80/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/c2a1754b-9a20-457d-8445-52a74783ba80" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "6ea48ab5-0875-419b-b757-12c68238767e", | |
"attributes": { | |
"status": true, | |
"title": "Kalkunbryst", | |
"created": "2019-02-01T09:13:01+00:00", | |
"description": null, | |
"category": [ | |
"frozen", | |
"halal" | |
], | |
"field_external_id": "238382", | |
"pant": false, | |
"product_number": "435409", | |
"sales_unit": "Pr. kg", | |
"subtitle": "Ca. 1 kg" | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "fec8cc44-7a87-4509-9dbb-ae6a4e83d644" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6ea48ab5-0875-419b-b757-12c68238767e/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6ea48ab5-0875-419b-b757-12c68238767e/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "8cec1be1-3780-4841-98b2-6d15996c7d66" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6ea48ab5-0875-419b-b757-12c68238767e/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6ea48ab5-0875-419b-b757-12c68238767e/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/6ea48ab5-0875-419b-b757-12c68238767e" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "149cf46f-9d67-43d3-8425-7229223aa142", | |
"attributes": { | |
"status": true, | |
"title": "Svinefilet ", | |
"created": "2019-02-01T09:13:01+00:00", | |
"description": null, | |
"category": null, | |
"field_external_id": "331235", | |
"pant": false, | |
"product_number": "233003", | |
"sales_unit": "Pr. kg", | |
"subtitle": "Ca. 4 kg" | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "fec8cc44-7a87-4509-9dbb-ae6a4e83d644" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/149cf46f-9d67-43d3-8425-7229223aa142/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/149cf46f-9d67-43d3-8425-7229223aa142/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "bda30707-0e17-43db-a1d5-acb385c69c6c" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/149cf46f-9d67-43d3-8425-7229223aa142/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/149cf46f-9d67-43d3-8425-7229223aa142/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/149cf46f-9d67-43d3-8425-7229223aa142" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "0aaafaf0-ebda-48be-b956-24afea87eeb0", | |
"attributes": { | |
"status": true, | |
"title": "Stegte kyllingestrimler", | |
"created": "2019-02-01T09:13:01+00:00", | |
"description": null, | |
"category": [ | |
"frozen", | |
"halal" | |
], | |
"field_external_id": "238369", | |
"pant": false, | |
"product_number": "436048", | |
"sales_unit": "Pr. ps.", | |
"subtitle": "2,5 kg. 10 mm." | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "17a4df5d-d8f4-42f4-85f7-25122d25cbf4" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/0aaafaf0-ebda-48be-b956-24afea87eeb0/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/0aaafaf0-ebda-48be-b956-24afea87eeb0/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "e20d6072-fea1-4cbd-b5b8-38043e6f65dd" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/0aaafaf0-ebda-48be-b956-24afea87eeb0/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/0aaafaf0-ebda-48be-b956-24afea87eeb0/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/0aaafaf0-ebda-48be-b956-24afea87eeb0" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "b7fd433a-f05e-4c21-863a-c417bad40b1d", | |
"attributes": { | |
"status": true, | |
"title": "NN creme fraiche dressing", | |
"created": "2019-02-01T09:12:01+00:00", | |
"description": null, | |
"category": null, | |
"field_external_id": "276023", | |
"pant": false, | |
"product_number": "127180", | |
"sales_unit": "Pr. sp.", | |
"subtitle": "10 kg" | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "17a4df5d-d8f4-42f4-85f7-25122d25cbf4" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b7fd433a-f05e-4c21-863a-c417bad40b1d/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b7fd433a-f05e-4c21-863a-c417bad40b1d/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "8ee4acb2-cda0-4232-a1d6-cee30b0604fb" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b7fd433a-f05e-4c21-863a-c417bad40b1d/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b7fd433a-f05e-4c21-863a-c417bad40b1d/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/b7fd433a-f05e-4c21-863a-c417bad40b1d" | |
} | |
} | |
}, | |
{ | |
"type": "product", | |
"id": "64bcd4e3-dfe6-476b-b335-41e24cb5a7bd", | |
"attributes": { | |
"status": true, | |
"title": "Cocktailpølser", | |
"created": "2019-01-31T10:29:01+00:00", | |
"description": null, | |
"category": [ | |
"frozen" | |
], | |
"field_external_id": "238031", | |
"pant": false, | |
"product_number": "429904", | |
"sales_unit": "Pr. pk.", | |
"subtitle": "10 g. Klippet. Pakke a 1 kg." | |
}, | |
"relationships": { | |
"group": { | |
"data": { | |
"type": "product-group", | |
"id": "c7fdf721-804b-4f92-98e2-837d353ddfc4" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/64bcd4e3-dfe6-476b-b335-41e24cb5a7bd/relationships/group" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/64bcd4e3-dfe6-476b-b335-41e24cb5a7bd/group" | |
} | |
} | |
}, | |
"brand": { | |
"data": { | |
"type": "media--image", | |
"id": "d12acf1c-2b09-4841-a2d0-358a4e177633" | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/64bcd4e3-dfe6-476b-b335-41e24cb5a7bd/relationships/brand" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/64bcd4e3-dfe6-476b-b335-41e24cb5a7bd/brand" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product/64bcd4e3-dfe6-476b-b335-41e24cb5a7bd" | |
} | |
} | |
}, | |
{ | |
"type": "product-group", | |
"id": "17a4df5d-d8f4-42f4-85f7-25122d25cbf4", | |
"attributes": { | |
"name": "meat", | |
"field_external_id": "Kød", | |
"offer_size": "2x1" | |
}, | |
"relationships": { | |
"picture": { | |
"data": { | |
"type": "file", | |
"id": "7eafce46-9323-4bc4-a56e-f96fac205d2c", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 1028, | |
"height": 297, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/2019-02/Strandbyfisk_header_0.JPG?itok=F4bUKMFU", | |
"width": 700, | |
"height": 202 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/2019-02/Strandbyfisk_header_0.JPG?itok=NYoA_K7D", | |
"width": 700, | |
"height": 202 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/2019-02/Strandbyfisk_header_0.JPG?itok=4z-22qbM", | |
"width": 1028, | |
"height": 297 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/2019-02/Strandbyfisk_header_0.JPG?itok=yrFI6Rlb", | |
"width": 1028, | |
"height": 297 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/2019-02/Strandbyfisk_header_0.JPG?itok=DWYlAINz", | |
"width": 1028, | |
"height": 297 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/2019-02/Strandbyfisk_header_0.JPG?itok=PkFiPshh", | |
"width": 480, | |
"height": 139 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/2019-02/Strandbyfisk_header_0.JPG?itok=boxUZEcU", | |
"width": 220, | |
"height": 64 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/2019-02/Strandbyfisk_header_0.JPG?itok=XsiUXv2i", | |
"width": 1028, | |
"height": 297 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/2019-02/Strandbyfisk_header_0.JPG?itok=8p8r4JAy", | |
"width": 100, | |
"height": 29 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/17a4df5d-d8f4-42f4-85f7-25122d25cbf4/relationships/picture" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/17a4df5d-d8f4-42f4-85f7-25122d25cbf4/picture" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/17a4df5d-d8f4-42f4-85f7-25122d25cbf4" | |
} | |
} | |
}, | |
{ | |
"type": "product-group", | |
"id": "c7fdf721-804b-4f92-98e2-837d353ddfc4", | |
"attributes": { | |
"name": "Kød - okse", | |
"field_external_id": "Kød - okse", | |
"offer_size": "1x2" | |
}, | |
"relationships": { | |
"picture": { | |
"data": null, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/c7fdf721-804b-4f92-98e2-837d353ddfc4/relationships/picture" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/c7fdf721-804b-4f92-98e2-837d353ddfc4/picture" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/c7fdf721-804b-4f92-98e2-837d353ddfc4" | |
} | |
} | |
}, | |
{ | |
"type": "product-group", | |
"id": "fec8cc44-7a87-4509-9dbb-ae6a4e83d644", | |
"attributes": { | |
"name": "beverages", | |
"field_external_id": "Drikkevarer", | |
"offer_size": "2x1" | |
}, | |
"relationships": { | |
"picture": { | |
"data": { | |
"type": "file", | |
"id": "99ac8261-afad-426c-8f43-51db9131c9b6", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 910, | |
"height": 450, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/2019-02/Webshopbanner_Helligdagsk%C3%B8rsel_0.jpg?itok=YcJrtZq5", | |
"width": 700, | |
"height": 346 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/2019-02/Webshopbanner_Helligdagsk%C3%B8rsel_0.jpg?itok=rGvBYkHr", | |
"width": 700, | |
"height": 346 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/2019-02/Webshopbanner_Helligdagsk%C3%B8rsel_0.jpg?itok=5JVzExnH", | |
"width": 910, | |
"height": 450 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/2019-02/Webshopbanner_Helligdagsk%C3%B8rsel_0.jpg?itok=E07xfXEU", | |
"width": 910, | |
"height": 450 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/2019-02/Webshopbanner_Helligdagsk%C3%B8rsel_0.jpg?itok=FB2Kq-GY", | |
"width": 910, | |
"height": 450 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/2019-02/Webshopbanner_Helligdagsk%C3%B8rsel_0.jpg?itok=t3OeoQGf", | |
"width": 480, | |
"height": 237 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/2019-02/Webshopbanner_Helligdagsk%C3%B8rsel_0.jpg?itok=9EYPGWKz", | |
"width": 220, | |
"height": 109 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/2019-02/Webshopbanner_Helligdagsk%C3%B8rsel_0.jpg?itok=Hf2FrNCK", | |
"width": 910, | |
"height": 450 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/2019-02/Webshopbanner_Helligdagsk%C3%B8rsel_0.jpg?itok=oD6iXmIa", | |
"width": 100, | |
"height": 49 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/fec8cc44-7a87-4509-9dbb-ae6a4e83d644/relationships/picture" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/fec8cc44-7a87-4509-9dbb-ae6a4e83d644/picture" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/fec8cc44-7a87-4509-9dbb-ae6a4e83d644" | |
} | |
} | |
}, | |
{ | |
"type": "product-group", | |
"id": "507066b5-6c0f-4f7c-9b61-bc2db04a06fd", | |
"attributes": { | |
"name": "bread", | |
"field_external_id": "Brød", | |
"offer_size": "2x1" | |
}, | |
"relationships": { | |
"picture": { | |
"data": { | |
"type": "file", | |
"id": "a74b8420-e157-4663-aa82-4d40305e7b42", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 600, | |
"height": 600, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/2019-02/403598_w600_h600_raw_1.jpg?itok=hsR4fW2C", | |
"width": 600, | |
"height": 600 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/2019-02/403598_w600_h600_raw_1.jpg?itok=Hi3KdR9O", | |
"width": 600, | |
"height": 600 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/2019-02/403598_w600_h600_raw_1.jpg?itok=OMmK7LkN", | |
"width": 600, | |
"height": 600 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/2019-02/403598_w600_h600_raw_1.jpg?itok=YF378ykh", | |
"width": 600, | |
"height": 600 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/2019-02/403598_w600_h600_raw_1.jpg?itok=O5KXUlzf", | |
"width": 600, | |
"height": 600 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/2019-02/403598_w600_h600_raw_1.jpg?itok=JlIpbx43", | |
"width": 480, | |
"height": 480 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/2019-02/403598_w600_h600_raw_1.jpg?itok=w1JljcbF", | |
"width": 220, | |
"height": 220 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/2019-02/403598_w600_h600_raw_1.jpg?itok=2HAuTflJ", | |
"width": 600, | |
"height": 600 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/2019-02/403598_w600_h600_raw_1.jpg?itok=0GyBTmxi", | |
"width": 100, | |
"height": 100 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/507066b5-6c0f-4f7c-9b61-bc2db04a06fd/relationships/picture" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/507066b5-6c0f-4f7c-9b61-bc2db04a06fd/picture" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/507066b5-6c0f-4f7c-9b61-bc2db04a06fd" | |
} | |
} | |
}, | |
{ | |
"type": "product-group", | |
"id": "18c95aae-c32c-4dfc-8b1c-b223e19c2f94", | |
"attributes": { | |
"name": "fruit_vegetables", | |
"field_external_id": "Frugt & Grønt", | |
"offer_size": "2x1" | |
}, | |
"relationships": { | |
"picture": { | |
"data": { | |
"type": "file", | |
"id": "f4f451ab-5201-4897-a46d-3abf5ef30d6f", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 600, | |
"height": 600, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/2019-02/403598_w600_h600_raw_0.jpg?itok=gapqOcCq", | |
"width": 600, | |
"height": 600 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/2019-02/403598_w600_h600_raw_0.jpg?itok=5LYB-1ye", | |
"width": 600, | |
"height": 600 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/2019-02/403598_w600_h600_raw_0.jpg?itok=lC-XzJZs", | |
"width": 600, | |
"height": 600 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/2019-02/403598_w600_h600_raw_0.jpg?itok=_4VgL_jv", | |
"width": 600, | |
"height": 600 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/2019-02/403598_w600_h600_raw_0.jpg?itok=ElYG92Gm", | |
"width": 600, | |
"height": 600 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/2019-02/403598_w600_h600_raw_0.jpg?itok=NtAITb80", | |
"width": 480, | |
"height": 480 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/2019-02/403598_w600_h600_raw_0.jpg?itok=jWLhGj7y", | |
"width": 220, | |
"height": 220 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/2019-02/403598_w600_h600_raw_0.jpg?itok=rmlNUVkF", | |
"width": 600, | |
"height": 600 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/2019-02/403598_w600_h600_raw_0.jpg?itok=vty00lbv", | |
"width": 100, | |
"height": 100 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/18c95aae-c32c-4dfc-8b1c-b223e19c2f94/relationships/picture" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/18c95aae-c32c-4dfc-8b1c-b223e19c2f94/picture" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/18c95aae-c32c-4dfc-8b1c-b223e19c2f94" | |
} | |
} | |
}, | |
{ | |
"type": "product-group", | |
"id": "72727ea1-0a18-4d95-bbfd-7fde9f53dfb0", | |
"attributes": { | |
"name": "nonfood", | |
"field_external_id": "Nonfood", | |
"offer_size": "2x1" | |
}, | |
"relationships": { | |
"picture": { | |
"data": { | |
"type": "file", | |
"id": "d2b99345-8d5d-4670-8656-69b1b462a0e3", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 1028, | |
"height": 297, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/2019-02/Strandbyfisk_header.JPG?itok=d2afB9gI", | |
"width": 700, | |
"height": 202 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/2019-02/Strandbyfisk_header.JPG?itok=3ijuiZUc", | |
"width": 700, | |
"height": 202 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/2019-02/Strandbyfisk_header.JPG?itok=4_9PEtWK", | |
"width": 1028, | |
"height": 297 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/2019-02/Strandbyfisk_header.JPG?itok=5Fd2ZFCV", | |
"width": 1028, | |
"height": 297 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/2019-02/Strandbyfisk_header.JPG?itok=Ow4dnSMj", | |
"width": 1028, | |
"height": 297 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/2019-02/Strandbyfisk_header.JPG?itok=oMF_kvSH", | |
"width": 480, | |
"height": 139 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/2019-02/Strandbyfisk_header.JPG?itok=NVg8IxKo", | |
"width": 220, | |
"height": 64 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/2019-02/Strandbyfisk_header.JPG?itok=GbyFabcJ", | |
"width": 1028, | |
"height": 297 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/2019-02/Strandbyfisk_header.JPG?itok=_kPh_C2j", | |
"width": 100, | |
"height": 29 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/72727ea1-0a18-4d95-bbfd-7fde9f53dfb0/relationships/picture" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/72727ea1-0a18-4d95-bbfd-7fde9f53dfb0/picture" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/72727ea1-0a18-4d95-bbfd-7fde9f53dfb0" | |
} | |
} | |
}, | |
{ | |
"type": "product-group", | |
"id": "e1dfd46a-4e7a-4890-8ef2-b04298335116", | |
"attributes": { | |
"name": "colonial", | |
"field_external_id": "Kolonial", | |
"offer_size": "2x1" | |
}, | |
"relationships": { | |
"picture": { | |
"data": { | |
"type": "file", | |
"id": "a6008fc1-8466-4619-bfac-63ad9ffeb073", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 640, | |
"height": 480, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/2019-02/Paradis%20p%C3%A5%20gren.jpg?itok=T28DUElS", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/2019-02/Paradis%20p%C3%A5%20gren.jpg?itok=XlyLlvX-", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/2019-02/Paradis%20p%C3%A5%20gren.jpg?itok=ErPzU-XI", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/2019-02/Paradis%20p%C3%A5%20gren.jpg?itok=uEOUDnVT", | |
"width": 640, | |
"height": 480 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/2019-02/Paradis%20p%C3%A5%20gren.jpg?itok=WVUOtoAG", | |
"width": 640, | |
"height": 480 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/2019-02/Paradis%20p%C3%A5%20gren.jpg?itok=v9B-54eg", | |
"width": 480, | |
"height": 360 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/2019-02/Paradis%20p%C3%A5%20gren.jpg?itok=GuMnxq4P", | |
"width": 220, | |
"height": 165 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/2019-02/Paradis%20p%C3%A5%20gren.jpg?itok=PCHzYZk3", | |
"width": 640, | |
"height": 480 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/2019-02/Paradis%20p%C3%A5%20gren.jpg?itok=WMzsek4J", | |
"width": 100, | |
"height": 75 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/e1dfd46a-4e7a-4890-8ef2-b04298335116/relationships/picture" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/e1dfd46a-4e7a-4890-8ef2-b04298335116/picture" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/e1dfd46a-4e7a-4890-8ef2-b04298335116" | |
} | |
} | |
}, | |
{ | |
"type": "product-group", | |
"id": "484c8668-44c6-497f-801a-08cce045fd6a", | |
"attributes": { | |
"name": "ready_meals", | |
"field_external_id": "Færdigretter", | |
"offer_size": "2x1" | |
}, | |
"relationships": { | |
"picture": { | |
"data": { | |
"type": "file", | |
"id": "d8baac65-2b9c-49ea-97fd-da48a9328604", | |
"meta": { | |
"alt": "", | |
"title": "", | |
"width": 642, | |
"height": 511, | |
"derivatives": { | |
"crop_1x1": { | |
"url": "/sites/default/files/styles/crop_1x1/public/2019-02/Klementiner%20m%20blade.jpg?itok=BP_B9uxe", | |
"width": 642, | |
"height": 511 | |
}, | |
"crop_1x2": { | |
"url": "/sites/default/files/styles/crop_1x2/public/2019-02/Klementiner%20m%20blade.jpg?itok=uNVqgXeM", | |
"width": 642, | |
"height": 511 | |
}, | |
"crop_2x1": { | |
"url": "/sites/default/files/styles/crop_2x1/public/2019-02/Klementiner%20m%20blade.jpg?itok=OgA7sM7k", | |
"width": 642, | |
"height": 511 | |
}, | |
"crop_2x2": { | |
"url": "/sites/default/files/styles/crop_2x2/public/2019-02/Klementiner%20m%20blade.jpg?itok=HZiPmpJR", | |
"width": 642, | |
"height": 511 | |
}, | |
"crop_2x3": { | |
"url": "/sites/default/files/styles/crop_2x3/public/2019-02/Klementiner%20m%20blade.jpg?itok=DruUDHLG", | |
"width": 642, | |
"height": 511 | |
}, | |
"large": { | |
"url": "/sites/default/files/styles/large/public/2019-02/Klementiner%20m%20blade.jpg?itok=EkBPLbx1", | |
"width": 480, | |
"height": 382 | |
}, | |
"medium": { | |
"url": "/sites/default/files/styles/medium/public/2019-02/Klementiner%20m%20blade.jpg?itok=hEGkd3N0", | |
"width": 220, | |
"height": 175 | |
}, | |
"product_design_main_image": { | |
"url": "/sites/default/files/styles/product_design_main_image/public/2019-02/Klementiner%20m%20blade.jpg?itok=2ZqnaMZI", | |
"width": 642, | |
"height": 511 | |
}, | |
"thumbnail": { | |
"url": "/sites/default/files/styles/thumbnail/public/2019-02/Klementiner%20m%20blade.jpg?itok=D7I3fuME", | |
"width": 100, | |
"height": 80 | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/484c8668-44c6-497f-801a-08cce045fd6a/relationships/picture" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/484c8668-44c6-497f-801a-08cce045fd6a/picture" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/product-group/484c8668-44c6-497f-801a-08cce045fd6a" | |
} | |
} | |
}, | |
{ | |
"type": "segment", | |
"id": "57f2fa4e-9aad-4951-bac3-d7853d4d8299", | |
"attributes": { | |
"name": "Kantineoperatører", | |
"description": "A01" | |
}, | |
"relationships": { | |
"parent": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "1f69ecd0-6c28-49e5-aa89-18374be3fe4c" | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/57f2fa4e-9aad-4951-bac3-d7853d4d8299/relationships/parent" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/57f2fa4e-9aad-4951-bac3-d7853d4d8299/parent" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/57f2fa4e-9aad-4951-bac3-d7853d4d8299" | |
} | |
} | |
}, | |
{ | |
"type": "segment", | |
"id": "1f69ecd0-6c28-49e5-aa89-18374be3fe4c", | |
"attributes": { | |
"name": "00A", | |
"description": null | |
}, | |
"relationships": { | |
"parent": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "virtual", | |
"meta": { | |
"links": { | |
"help": { | |
"href": "https://www.drupal.org/docs/8/modules/json-api/core-concepts#virtual", | |
"meta": { | |
"about": "Usage and meaning of the 'virtual' resource identifier." | |
} | |
} | |
} | |
} | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/1f69ecd0-6c28-49e5-aa89-18374be3fe4c/relationships/parent" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/1f69ecd0-6c28-49e5-aa89-18374be3fe4c/parent" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/1f69ecd0-6c28-49e5-aa89-18374be3fe4c" | |
} | |
} | |
}, | |
{ | |
"type": "segment", | |
"id": "51cf80c1-8120-43cf-b262-400da1728b88", | |
"attributes": { | |
"name": "Offentlige kantiner", | |
"description": "A03" | |
}, | |
"relationships": { | |
"parent": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "1f69ecd0-6c28-49e5-aa89-18374be3fe4c" | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/51cf80c1-8120-43cf-b262-400da1728b88/relationships/parent" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/51cf80c1-8120-43cf-b262-400da1728b88/parent" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/51cf80c1-8120-43cf-b262-400da1728b88" | |
} | |
} | |
}, | |
{ | |
"type": "segment", | |
"id": "48e6425e-688c-4c9c-bcaf-1fc2bcda842e", | |
"attributes": { | |
"name": "Private kantiner", | |
"description": "A02" | |
}, | |
"relationships": { | |
"parent": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "1f69ecd0-6c28-49e5-aa89-18374be3fe4c" | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/48e6425e-688c-4c9c-bcaf-1fc2bcda842e/relationships/parent" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/48e6425e-688c-4c9c-bcaf-1fc2bcda842e/parent" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/48e6425e-688c-4c9c-bcaf-1fc2bcda842e" | |
} | |
} | |
}, | |
{ | |
"type": "segment", | |
"id": "c4b2b333-149c-477e-8967-f221861a2ba1", | |
"attributes": { | |
"name": "Rejser", | |
"description": "C01" | |
}, | |
"relationships": { | |
"parent": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "a4edc314-4e18-438c-ba66-69de0379c600" | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/c4b2b333-149c-477e-8967-f221861a2ba1/relationships/parent" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/c4b2b333-149c-477e-8967-f221861a2ba1/parent" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/c4b2b333-149c-477e-8967-f221861a2ba1" | |
} | |
} | |
}, | |
{ | |
"type": "segment", | |
"id": "a141a080-6bd2-41c6-ae4d-9c04ee9fbc2a", | |
"attributes": { | |
"name": "Uvaskede kunder", | |
"description": null | |
}, | |
"relationships": { | |
"parent": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "3e192991-c364-4b55-9c98-0cc5ef033771" | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/a141a080-6bd2-41c6-ae4d-9c04ee9fbc2a/relationships/parent" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/a141a080-6bd2-41c6-ae4d-9c04ee9fbc2a/parent" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/a141a080-6bd2-41c6-ae4d-9c04ee9fbc2a" | |
} | |
} | |
}, | |
{ | |
"type": "segment", | |
"id": "a4edc314-4e18-438c-ba66-69de0379c600", | |
"attributes": { | |
"name": "00C", | |
"description": null | |
}, | |
"relationships": { | |
"parent": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "virtual", | |
"meta": { | |
"links": { | |
"help": { | |
"href": "https://www.drupal.org/docs/8/modules/json-api/core-concepts#virtual", | |
"meta": { | |
"about": "Usage and meaning of the 'virtual' resource identifier." | |
} | |
} | |
} | |
} | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/a4edc314-4e18-438c-ba66-69de0379c600/relationships/parent" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/a4edc314-4e18-438c-ba66-69de0379c600/parent" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/a4edc314-4e18-438c-ba66-69de0379c600" | |
} | |
} | |
}, | |
{ | |
"type": "segment", | |
"id": "3e192991-c364-4b55-9c98-0cc5ef033771", | |
"attributes": { | |
"name": "00D", | |
"description": null | |
}, | |
"relationships": { | |
"parent": { | |
"data": [ | |
{ | |
"type": "segment", | |
"id": "virtual", | |
"meta": { | |
"links": { | |
"help": { | |
"href": "https://www.drupal.org/docs/8/modules/json-api/core-concepts#virtual", | |
"meta": { | |
"about": "Usage and meaning of the 'virtual' resource identifier." | |
} | |
} | |
} | |
} | |
} | |
], | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/3e192991-c364-4b55-9c98-0cc5ef033771/relationships/parent" | |
}, | |
"related": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/3e192991-c364-4b55-9c98-0cc5ef033771/parent" | |
} | |
} | |
} | |
}, | |
"links": { | |
"self": { | |
"href": "http://sengros-loyalty.ffwdev.com/api/segment/3e192991-c364-4b55-9c98-0cc5ef033771" | |
} | |
} | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import Vox | |
class SegmentResource_V2: Resource { | |
@objc dynamic var name: String? | |
@objc dynamic var text: String? | |
@objc dynamic var parent: SegmentResource? | |
override class var resourceType: String { return "segment" } | |
override class var codingKeys: [String: String] { return ["text": "description"] } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import Vox | |
class StoreResource_V2: Resource { | |
override class var resourceType: String { return "store" } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment