{
  "id": "retail-candle",
  "name": "Candle Jar Label",
  "description": "Candle Jar Label layout with mapped Product Name, Scent Name, Net Weight, Batch Number fields, XLSX sample data, and print-ready sizing.",
  "category": "Retail & Product",
  "thumbnail": "/templates/thumbnails/retail-candle.svg",
  "settings": {
    "width": 50,
    "height": 50,
    "unit": "mm",
    "dpi": 203,
    "name": "Candle Jar Label",
    "type": "candle_jar_label"
  },
  "elements": [
    {
      "id": "shape-border",
      "type": "CIRCLE",
      "x": 1,
      "y": 1,
      "width": 48,
      "height": 48,
      "strokeWidth": 0.8,
      "stroke": "#111827",
      "fill": "#ffffff"
    },
    {
      "id": "main",
      "type": "TEXT",
      "x": 7,
      "y": 8,
      "width": 36,
      "height": 8,
      "content": "{{Product Name}}",
      "fontSize": 9,
      "fontWeight": "bold",
      "textAlign": "center",
      "textFitMode": "shrink",
      "color": "#111827"
    },
    {
      "id": "secondary",
      "type": "TEXT",
      "x": 7,
      "y": 18,
      "width": 36,
      "height": 8,
      "content": "{{Scent Name}}",
      "fontSize": 7,
      "textAlign": "center",
      "textFitMode": "shrink",
      "color": "#111827"
    },
    {
      "id": "detail",
      "type": "TEXT",
      "x": 8,
      "y": 28,
      "width": 34,
      "height": 5,
      "content": "{{Net Weight}}",
      "fontSize": 5,
      "textAlign": "center",
      "textFitMode": "shrink",
      "color": "#111827"
    },
    {
      "id": "qr",
      "type": "QR",
      "x": 19,
      "y": 33,
      "width": 12,
      "height": 12,
      "content": "{{QR Code}}",
      "qrCorrectionLevel": "M"
    },
    {
      "id": "mapped-details",
      "type": "TEXT",
      "x": 3,
      "y": 44,
      "width": 44,
      "height": 4,
      "content": "Batch Number: {{Batch Number}}",
      "fontSize": 4,
      "textFitMode": "shrink",
      "textAlign": "center",
      "color": "#374151"
    }
  ],
  "columns": [
    {
      "key": "product_name",
      "label": "Product Name",
      "required": true
    },
    {
      "key": "scent_name",
      "label": "Scent Name",
      "required": true
    },
    {
      "key": "net_weight",
      "label": "Net Weight",
      "required": true
    },
    {
      "key": "batch_number",
      "label": "Batch Number",
      "required": false
    },
    {
      "key": "qr_code",
      "label": "QR Code",
      "required": false
    }
  ],
  "files": {
    "xlsx": "/label-templates/retail-candle.xlsx",
    "json": "/templates/retail-candle.json",
    "svg": "/templates/thumbnails/retail-candle.svg"
  }
}