{
  "id": "retail-price-tag",
  "name": "Retail Price Tag",
  "description": "Retail Price Tag layout with mapped Product Name, SKU, Price, Unit Price fields, XLSX sample data, and print-ready sizing.",
  "category": "Retail & Product",
  "thumbnail": "/templates/thumbnails/retail-price-tag.svg",
  "settings": {
    "width": 70,
    "height": 30,
    "unit": "mm",
    "dpi": 203,
    "name": "Retail Price Tag",
    "type": "retail_price_tag"
  },
  "elements": [
    {
      "id": "border",
      "type": "RECTANGLE",
      "x": 1,
      "y": 1,
      "width": 68,
      "height": 28,
      "fill": "#ffffff",
      "stroke": "#111827",
      "strokeWidth": 0.4,
      "borderRadius": 1
    },
    {
      "id": "title",
      "type": "TEXT",
      "x": 3,
      "y": 3,
      "width": 64,
      "height": 5.3999999999999995,
      "content": "Retail Price Tag",
      "fontSize": 5,
      "fontWeight": "bold",
      "textAlign": "center",
      "textFitMode": "shrink",
      "color": "#111827"
    },
    {
      "id": "main",
      "type": "TEXT",
      "x": 4,
      "y": 12,
      "width": 62,
      "height": 7,
      "content": "{{Product Name}}",
      "fontSize": 6,
      "fontWeight": "bold",
      "textFitMode": "shrink",
      "color": "#111827"
    },
    {
      "id": "secondary",
      "type": "TEXT",
      "x": 4,
      "y": 22,
      "width": 62,
      "height": 5,
      "content": "{{SKU}} | {{Price}}",
      "fontSize": 6,
      "textFitMode": "shrink",
      "color": "#111827"
    },
    {
      "id": "barcode",
      "type": "BARCODE",
      "x": 4,
      "y": 28,
      "width": 62,
      "height": 7.5,
      "content": "{{SKU}}",
      "barcodeFormat": "CODE128",
      "barcodeShowText": true
    },
    {
      "id": "mapped-details",
      "type": "TEXT",
      "x": 3,
      "y": 24,
      "width": 64,
      "height": 4,
      "content": "Unit Price: {{Unit Price}} | Barcode: {{Barcode}}",
      "fontSize": 4,
      "textFitMode": "shrink",
      "textAlign": "center",
      "color": "#374151"
    }
  ],
  "columns": [
    {
      "key": "product_name",
      "label": "Product Name",
      "required": true
    },
    {
      "key": "sku",
      "label": "SKU",
      "required": true
    },
    {
      "key": "price",
      "label": "Price",
      "required": true
    },
    {
      "key": "unit_price",
      "label": "Unit Price",
      "required": false
    },
    {
      "key": "barcode",
      "label": "Barcode",
      "required": false
    }
  ],
  "files": {
    "xlsx": "/label-templates/retail-price-tag.xlsx",
    "json": "/templates/retail-price-tag.json",
    "svg": "/templates/thumbnails/retail-price-tag.svg"
  }
}