home / shop

product_backend_data

Data scraped from admin backend (stock status, etc)

1 row where product_id = "xi1iwix2km"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: scraped_at (date)

instock 1

  • 0 1
product_id ▼ instock inventory useinventory autostock sku title url_slug saleprice special saleexpire alcohol floral addon restricted vase raw_data scraped_at
xi1iwix2km 0 0 0 0   Oransje orientalske lillies i en vakker bukett lily-delight 0     0 0 0 0 0 {"siteid": "ccvxmy5xly", "id": "xi1iwix2km", "edit": "1", "name": "Lily Delight", "newcategory": "Bouquets,Buketter,Orange,Snittblomster", "saleprice": false, "special": "", "saleexpire": "", "price_one": "300", "desc_one": "Regular (6 stems)", "price_two": "450", "desc_two": "As displayed (9 stems)", "price_three": "750", "desc_three": "Large (15 stems)", "price_four": "", "desc_four": "", "price_five": "", "desc_five": "", "price_six": "", "desc_six": "", "price_seven": "", "desc_seven": "", "price_eight": "", "desc_eight": "", "instock": false, "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": " Oransje orientalske lillies i en vakker bukett", "sad": false, "url": "lily-delight", "headingone": "Lily Delight", "imagealt": "Lily Delight", "enableai": false, "aititle": "Lily Delight", "material": "", "videolink": "", "relatedproducts": "", "pid": "xi1iwix2km", "cat": "xi1iwix2km", "imagename": "", "product_category": "", "age_group": "", "weight": "", "length": "", "width": "", "height": "", "description": "<p>The oriental lilly is a special type of Lilly, that comes in many beautiful colours and is not as strong in scent as the stargazer lillies. This is the perfect alternative for those, who are a bit more sensitive to the strong floral scents, which sometimes can even give you headaches. </p>\n<p>One of our favourite oriental lillies, are the gentle, soft and warm orange ones. It´s this very special shade, that can easily be combined with many different interiors, as it works well with pastels, as well as strong, dark colours. </p>\n<p>Choose your size above, and consider going for the large option, if you want to make an extra statement with 20 beautiful, long stemmed oriental lillies. </p>\n<p><strong>Regular:</strong> 6 stems</p>\n<p><strong>Medium:</strong> 9 ste… 2026-02-06 11:35:15

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 27.89ms