{
"section_title": "Premium Books Collection",
  "products": [
    {
      "id": "prod_unique_id",
      "name": "Product Name",
      "slug": "product-name",
      "category": "Category Name",
      "subcategory": "Sub Category",
      "brand": "Brand Name",

      "sku": "SKU001",
      "barcode": "",
      "tax_category": "Standard",

      "price": 1000,
      "sale_price": 850,
      "currency": "INR",

      "visible": true,
      "featured": false,
      "status": "active",

      "short_description": "Short product summary for listing page.",
      "description": "<p>Detailed product description with features, quality, usage, and customer benefits.</p>",

      "inventory": {
        "track": true,
        "quantity": 50,
        "low_inventory": 5,
        "limited": false,
        "stock_status": "in_stock"
      },

      "options": [
        {
          "id": "opt_001",
          "name": "Size",
          "type": "dropdown",
          "choices": [
            {
              "label": "Small",
              "color": null
            },
            {
              "label": "Medium",
              "color": null
            },
            {
              "label": "Large",
              "color": null
            }
          ]
        },
        {
          "id": "opt_002",
          "name": "Color",
          "type": "color",
          "choices": [
            {
              "label": "Black",
              "color": "#000000"
            },
            {
              "label": "White",
              "color": "#FFFFFF"
            }
          ]
        }
      ],

      "variants": [
        {
          "id": "var_001",
          "active": true,

          "option_values": {
            "Size": "Medium",
            "Color": "Black"
          },

          "sku": "SKU001-M-BLK",

          "price": 1000,
          "sale_price": 850,

          "price_manual": false,
          "sale_price_manual": false,

          "inventory_quantity": 20
        }
      ],

      "shipping": {
        "weight": "0.5",
        "weight_unit": "kg",

        "dimensions": {
          "length": "20",
          "width": "15",
          "height": "5",
          "unit": "cm"
        },

        "free_shipping": false,
        "free_return": false
      },

      "seo": {
        "meta_title": "Product Meta Title",
        "meta_description": "SEO-friendly product meta description.",
        "meta_keywords": [
          "keyword1",
          "keyword2"
        ]
      },

      "media": [
        {
          "type": "image",
          "url": "assets/images/product-image-1.png",
          "alt": "Product image 1"
        },
        {
          "type": "image",
          "url": "assets/images/product-image-2.png",
          "alt": "Product image 2"
        }
      ],

      "tags": [
        "new-arrival",
        "best-seller"
      ],

      "created_by": 1,
      "created_at": "2026-04-27 10:00:00",
      "updated_at": "2026-04-27 10:00:00"
    }
  ]
}
