Skip to content

Instantly share code, notes, and snippets.

@karnie6
karnie6 / video_card.json
Last active August 29, 2015 14:09
video card
{
"pair_version": "0.4.6",
"card_type": "video",
"web_url": "https://www.youtube.com/watch?v=0RFfrsABtQo",
"media": {
"type": "video",
"title": "Best of Phantom: Cavaliers Practice",
"embedded_url": "https://www.youtube.com/embed/0RFfrsABtQo",
"embedded_url_width": 400,
"embedded_url_height": 400,
@karnie6
karnie6 / product_card.json
Last active August 29, 2015 14:09
product card
{
"pair_version": "0.3.1",
"card_type": "product",
"web_url": "http://www.examplestore.com/listing/36226783/green-leather-shoes",
"offers": [
{
"price": {
"price": 7.99,
"currency": "USD"
},
@karnie6
karnie6 / article_card.json
Last active August 29, 2015 14:09
Article Card
{
"pair_version": "0.3.1",
"card_type": "article",
"web_url": "http://www.huffingtonpost.com/2014/09/23/leonardo-dicaprio-un_n_5868718.html",
"article": {
"title": "U.N. hosts Global Warming Summit",
"html_content": "<p>Leonardo DiCaprio addressed world leaders assembled for the <a href=\"http://www.un.org/climatechange/summit/\" target=\"_hplink\">United Nations Climate Summit</a> early Tuesday morning, urging them to take action to address \"the greatest challenge of our existence on this planet.\"</p>",
"publication_date": "2014-09-22T00:00:00.000+0000",
"abstract_content": "U.N. hosts Global Warming Summit in New York hosted by thousands. Dignataries speak.",
"source": "Associated Press",
@karnie6
karnie6 / invalid_video_card
Created November 7, 2014 05:23
Invalid Video Card - no web url, invalid width + height
{
"pair_version": "0.3.0",
"card_type": "video",
"media": {
"type": "video",
"title": "Best of Phantom: Cavaliers Practice",
"embedded_url": "https://www.youtube.com/embed/0RFfrsABtQo",
"embedded_url_width": "haha",
"embedded_url_height": "haha",
@karnie6
karnie6 / invalid_article_card
Last active August 29, 2015 14:08
Invalid Article Card, no html_content, media is an image, but has video type
{
"pair_version": "0.3.0",
"card_type": "article",
"web_url": "http://www.huffingtonpost.com/2014/09/23/leonardo-dicaprio-un_n_5868718.html",
"article": {
"title": "U.N. hosts Global Warming Summit",
"publication_date": "2014-09-22T00:00:00.000+0000",
"abstract_content": "U.N. hosts Global Warming Summit in New York hosted by thousands. Dignataries speak.",
"source": "Associated Press",
@karnie6
karnie6 / invalid_product_card
Last active August 29, 2015 14:08
Invalid Product Card, no price value in offers.price and gender has invalid value
{
"pair_version": "0.3.0",
"card_type": "product",
"web_url": "http://www.examplestore.com/listing/36226783/green-leather-shoes",
"offers": [
{
"price": {
"currency": "USD"
},
@karnie6
karnie6 / pairrubyoutput1.json
Last active August 29, 2015 14:03
Ruby Pair SDK output
{"card_type":"product","pair_version": 0.1,"name":"Green leather shoes","web_url":"http://www.examplestore.com/listing/36226783/green-leather-shoes","offers":[{"price":7.99,"original_price":17.99,"shipping_cost":1.5,"description":"Primary offer","availability":"InStock","quantity":15,"sale_start_date":"2014-06-01","sale_end_date":"2014-06-24","expiration_date":"2014-07-13","gender":"unisex","weight":17.0,"weight_units":"oz","offerId":"36226783-3"}],"merchant":"Example Store","brand":"Shoemaster","description":"Brilliant, colorful shoes made from recycled materials.","colors":["Green"],"images":["http://img.examplestore.com/02/wer4554/il_5d9184_iqm9.jpg","http://img.examplestore.com/017/fgh/il_57w9.jpg","https://img.examplestore.com/020rjt/24554/il_570d14_3us0.jpg","https://img.examplestore.com/0166f54/il_570xg90_87gc.jpg"],"rating":8.0,"rating_scale":10.0,"rating_count":12,"related_items":["http://www.examplestore.com/listing/36226783/green-leather-shoes","http://www.examplestore.com/listing/16362355/maroon-c
price = Money.new(799, 'USD')
=> #<Money fractional:799 currency:USD>
original_price = Money.new(1799, 'USD')
=> #<Money fractional:1799 currency:USD>
shipping_cost = Money.new(150, 'USD')
=> #<Money fractional:150 currency:USD>
offer = Offer.new price: price, originalPrice: original_price, shippingCost: shipping_cost, description: 'Primary offer', availability: 'InStock', quantity: 15
=> #<Offer:0x007fa2aaac25e8 @price=#<Money fractional:799 currency:USD>, @originalPrice=#<Money fractional:1799 currency:USD>, @shippingCost=#<Money fractional:150 currency:USD>, @description="Primary offer", @availability="InStock", @quantity=15>