{
  "version": "2.0",
  "productId": "demo-flyer-sizes",
  "title": "Flyers",
  "layout": "stacked",
  "pricing": {
    "currency": "USD",
    "basePrice": { "amount": 0, "per": "order" }
  },
  "sections": [
    {
      "id": "options",
      "title": "Your flyer",
      "fields": [
        {
          "id": "size",
          "type": "select-one",
          "display": "list",
          "label": "Size",
          "role": "size",
          "required": true,
          "options": [
            {
              "id": "a6",
              "label": "A6 (105 × 148 mm)",
              "description": "Handout / club flyer",
              "priceModifiers": [
                {
                  "type": "perUnit",
                  "amount": 0.06,
                  "tiers": {
                    "basis": "quantity",
                    "mode": "flat",
                    "rows": [
                      { "upTo": 249, "amount": 0.06 },
                      { "upTo": 999, "amount": 0.04 },
                      { "amount": 0.025 }
                    ]
                  }
                }
              ],
              "filecheck": {
                "context": { "artworkSize": { "width_mm": 105, "height_mm": 148 } }
              }
            },
            {
              "id": "a5",
              "label": "A5 (148 × 210 mm)",
              "description": "The classic flyer",
              "default": true,
              "priceModifiers": [
                {
                  "type": "perUnit",
                  "amount": 0.09,
                  "tiers": {
                    "basis": "quantity",
                    "mode": "flat",
                    "rows": [
                      { "upTo": 249, "amount": 0.09 },
                      { "upTo": 999, "amount": 0.06 },
                      { "amount": 0.04 }
                    ]
                  }
                }
              ],
              "filecheck": {
                "context": { "artworkSize": { "width_mm": 148, "height_mm": 210 } }
              }
            },
            {
              "id": "dl",
              "label": "DL (99 × 210 mm)",
              "description": "Rack card / price list",
              "priceModifiers": [
                {
                  "type": "perUnit",
                  "amount": 0.08,
                  "tiers": {
                    "basis": "quantity",
                    "mode": "flat",
                    "rows": [
                      { "upTo": 249, "amount": 0.08 },
                      { "upTo": 999, "amount": 0.055 },
                      { "amount": 0.035 }
                    ]
                  }
                }
              ],
              "filecheck": {
                "context": { "artworkSize": { "width_mm": 99, "height_mm": 210 } }
              }
            },
            {
              "id": "a4",
              "label": "A4 (210 × 297 mm)",
              "description": "Menu / poster flyer",
              "priceModifiers": [
                {
                  "type": "perUnit",
                  "amount": 0.14,
                  "tiers": {
                    "basis": "quantity",
                    "mode": "flat",
                    "rows": [
                      { "upTo": 249, "amount": 0.14 },
                      { "upTo": 999, "amount": 0.1 },
                      { "amount": 0.07 }
                    ]
                  }
                }
              ],
              "filecheck": {
                "context": { "artworkSize": { "width_mm": 210, "height_mm": 297 } }
              }
            }
          ]
        },
        {
          "id": "sides",
          "type": "select-one",
          "display": "pills",
          "label": "Sides",
          "required": true,
          "options": [
            {
              "id": "single",
              "label": "Single-sided",
              "default": true,
              "priceModifiers": [],
              "filecheck": { "context": { "pageCount": { "min": 1, "max": 1 } } }
            },
            {
              "id": "double",
              "label": "Double-sided",
              "description": "Upload a 2-page file, front, then back.",
              "priceModifiers": [{ "type": "multiplier", "amount": 1.6 }],
              "filecheck": { "context": { "pageCount": { "min": 2, "max": 2 } } }
            }
          ]
        }
      ]
    },
    {
      "id": "artwork",
      "title": "Your artwork - Filecheck",
      "fields": [
        {
          "id": "artwork",
          "type": "file",
          "display": "dropzone",
          "label": "Upload your flyer",
          "helpText": "Checked against the exact size and sides you picked above; change either and the check re-runs without re-uploading.",
          "required": true,
          "accept": ["application/pdf", "image/jpeg", "image/png", "image/tiff"],
          "providerId": "filecheck",
          "filecheck": {
            "workflowId": "wf_inline_demo",
            "workflow": {
              "schemaVersion": 1,
              "title": "Flyer demo, size follows selection",
              "trigger": "order_placed",
              "intake": { "ruleId": null, "onError": "halt", "enabled": true },
              "streams": [],
              "merge": { "mode": "none", "config": {}, "onError": "halt", "enabled": true },
              "finalize": [],
              "proofing": {
                "enabled": false,
                "type": "basic",
                "timing": "after_intake",
                "requireApproval": false,
                "config": {}
              },
              "delivery": { "enabled": false, "destinationIds": [] },
              "enabled": true,
              "ui": {},
              "rule": {
                "description": "Flyer demo inline rule; size, sides and bleed targets are DEFAULTS, overwritten at runtime by the shopper's selections via the configurator context bridge.",
                "cardinality": { "min": 1, "max": 1, "slots": [] },
                "accepts": [
                  {
                    "kind": "pdf",
                    "mimeTypes": ["application/pdf"],
                    "extensions": ["pdf"],
                    "maxSize": 100000000,
                    "convertToPdf": false,
                    "preflight": {
                      "enabled": true,
                      "profile": {
                        "id": "prof_demo_flyer",
                        "schemaVersion": 1,
                        "description": "Flyer checks; size and sides come from the page",
                        "sections": {
                          "geometry": {
                            "id": "geometry",
                            "enabled": true,
                            "rules": {
                              "geom.page_size": {
                                "id": "geom.page_size",
                                "enabled": true,
                                "severity": "reject",
                                "target": {
                                  "allowed": [{ "width_mm": 148, "height_mm": 210 }],
                                  "tolerance_mm": 2,
                                  "autofix_within_percent": 0
                                }
                              },
                              "geom.page_count": {
                                "id": "geom.page_count",
                                "enabled": true,
                                "severity": "reject",
                                "target": { "min": 1, "max": 1, "allowed": [] }
                              },
                              "geom.bleed.required": {
                                "id": "geom.bleed.required",
                                "enabled": true,
                                "severity": "warn",
                                "target": {
                                  "required_mm": 3,
                                  "tolerance_mm": 1,
                                  "sides": ["all"],
                                  "fill": "none"
                                }
                              }
                            }
                          },
                          "raster": {
                            "id": "raster",
                            "enabled": true,
                            "rules": {
                              "raster.effective_dpi": {
                                "id": "raster.effective_dpi",
                                "enabled": true,
                                "severity": "warn",
                                "target": {
                                  "min_dpi": 300,
                                  "target_width_mm": 148,
                                  "target_height_mm": 210
                                }
                              }
                            }
                          },
                          "text": {
                            "id": "text",
                            "enabled": true,
                            "rules": {
                              "text.fonts_embedded": {
                                "id": "text.fonts_embedded",
                                "enabled": true,
                                "severity": "warn"
                              }
                            }
                          }
                        }
                      }
                    },
                    "onFail": "reject"
                  },
                  {
                    "kind": "raster",
                    "mimeTypes": ["image/jpeg", "image/png", "image/tiff"],
                    "extensions": ["jpg", "jpeg", "png", "tif", "tiff"],
                    "maxSize": 100000000,
                    "convertToPdf": false,
                    "preflight": {
                      "enabled": true,
                      "profile": {
                        "id": "prof_demo_flyer_raster",
                        "schemaVersion": 1,
                        "description": "Flyer raster checks",
                        "sections": {
                          "geometry": {
                            "id": "geometry",
                            "enabled": true,
                            "rules": {
                              "geom.page_size": {
                                "id": "geom.page_size",
                                "enabled": true,
                                "severity": "reject",
                                "target": {
                                  "allowed": [{ "width_mm": 148, "height_mm": 210 }],
                                  "tolerance_mm": 2,
                                  "autofix_within_percent": 0
                                }
                              }
                            }
                          },
                          "raster": {
                            "id": "raster",
                            "enabled": true,
                            "rules": {
                              "raster.effective_dpi": {
                                "id": "raster.effective_dpi",
                                "enabled": true,
                                "severity": "warn",
                                "target": {
                                  "min_dpi": 300,
                                  "target_width_mm": 148,
                                  "target_height_mm": 210
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "onFail": "reject"
                  }
                ],
                "rejectUnknownTypes": true,
                "enabled": true,
                "ui": { "title": "Upload your flyer artwork" }
              }
            }
          }
        }
      ]
    },
    {
      "id": "finishing",
      "title": "Paper & quantity",
      "fields": [
        {
          "id": "paper",
          "type": "select-one",
          "display": "pills",
          "label": "Paper",
          "required": true,
          "options": [
            {
              "id": "gloss-135",
              "label": "135 gsm gloss",
              "default": true,
              "priceModifiers": []
            },
            {
              "id": "silk-170",
              "label": "170 gsm silk",
              "priceModifiers": [{ "type": "percent", "amount": 15 }]
            },
            {
              "id": "recycled-115",
              "label": "115 gsm recycled",
              "priceModifiers": []
            }
          ]
        },
        {
          "id": "copies",
          "type": "quantity",
          "display": "pills",
          "label": "How many?",
          "min": 50,
          "defaultValue": 100,
          "presets": [50, 100, 250, 500, 1000]
        }
      ]
    },
    {
      "id": "summary",
      "title": "Summary",
      "fields": [{ "id": "recap", "type": "info", "display": "summary" }]
    }
  ]
}
