home / shop

product_backend_data

Data scraped from admin backend (stock status, etc)

1 row where product_id = "83iycmctii"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: saleexpire (date), scraped_at (date)

instock 1

  • 1 1
product_id ▼ instock inventory useinventory autostock sku title url_slug saleprice special saleexpire alcohol floral addon restricted vase raw_data scraped_at
83iycmctii 1 0 0 0   The Classic Dreamy Red and White flowers combo in Box dreamy-red-box 0   2024-02-11 0 0 0 0 0 {"siteid": "ccvxmy5xly", "id": "83iycmctii", "edit": "1", "name": "Dreamy Red Box", "newcategory": "Best Sellers,Bestselger,Blomster i en boks,Christmas,Flowers in a box,Jul,Red,Rod,Valentines,Valentines Day", "saleprice": false, "special": "", "saleexpire": "2024-02-11", "price_one": "1335", "desc_one": "As Displayed (ca 23 stk)", "price_two": "", "desc_two": "", "price_three": "", "desc_three": "", "price_four": "", "desc_four": "", "price_five": "", "desc_five": "", "price_six": "", "desc_six": "", "price_seven": "", "desc_seven": "", "price_eight": "", "desc_eight": "", "instock": true, "subscribe": false, "useinventory": false, "inventory": "0", "autostock": false, "emailnotify": false, "colour": "", "alcohol": false, "floral": false, "addon": false, "restricted": false, "showadvanced": false, "size": "", "sku": "", "pet": false, "hospital": false, "vase": false, "title": "The Classic Dreamy Red and White flowers combo in Box", "sad": false, "url": "dreamy-red-box", "headingone": "Dreamy Red Box", "imagealt": "Dreamy Red Box", "enableai": false, "aititle": "Dreamy Red Box", "material": "", "videolink": "", "relatedproducts": "", "pid": "83iycmctii", "cat": "83iycmctii", "imagename": "", "product_category": "", "age_group": "", "weight": "", "length": "", "width": "", "height": "", "description": "<p><strong>NOTE: The decoration  is made round box, choose between White or black in the further instrutions box, depending on stock availability we might use other color.</strong></p>\n<p>Our roses in a box collection can´t exclude this absolute stunner, and classic combination of our premium quality, deep red, Colombian roses, with the ever so popular and time less baby’s breath – also known as Gypsophilia. <br>We use an assortment of our very biggest roses, for maximum durability of this timeless beauty. <br>It´s the perfect gift for any grand celebration, or precious romantic gesture. The decoration is big enough to impress, yet compact and stylishly set together in our premium MDF Rose boxes, to seamles… 2026-07-06 11:02:40

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE product_backend_data (
    product_id TEXT PRIMARY KEY,
    instock INTEGER,  -- 1 = in stock, 0 = out of stock
    inventory INTEGER,  -- Number of items available
    useinventory INTEGER,  -- Track inventory?
    autostock INTEGER,  -- Stop selling when out of stock?
    sku TEXT,
    title TEXT,  -- SEO title
    url_slug TEXT,  -- Backend URL slug
    saleprice INTEGER,  -- Is on sale?
    special TEXT,  -- Special/sale price
    saleexpire TEXT,  -- Sale expiry date
    alcohol INTEGER,
    floral INTEGER,
    addon INTEGER,
    restricted INTEGER,
    vase INTEGER,
    raw_data TEXT,  -- Full JSON of scraped data
    scraped_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
    FOREIGN KEY (product_id) REFERENCES products(id)
);
Powered by Datasette · Queries took 13.063ms