{
  "schemaVersion": 1,
  "brand": "Happiest Labs",
  "industry": "Consumer goods",
  "proof": "illustrative_synthetic",
  "nativeEvaluation": "pending",
  "status": "Native product evaluation pending. This is an authored example of the intended workflow, not a recording of model output or a customer result.",
  "sources": [
    {
      "id": "sales",
      "name": "category-sales.csv",
      "description": "Synthetic SKU-level actuals",
      "content": "sku,units,revenue,cost\nSKU-A,100,2000,1300\nSKU-B,80,2400,1800"
    },
    {
      "id": "inventory",
      "name": "inventory.csv",
      "description": "Synthetic stock reconciliation",
      "content": "sku,opening,received,sold,reported_closing\nSKU-A,120,30,100,45\nSKU-B,100,20,80,40"
    }
  ],
  "workflows": [
    {
      "slug": "inventory-reconciliation",
      "industry": "consumer-goods",
      "title": "Reconcile inventory movements",
      "description": "Find where reported stock differs from the movement records.",
      "question": "Does reported closing inventory match the movements?",
      "resultTitle": "SKU-A differs by five units",
      "columns": [
        "SKU",
        "Expected closing",
        "Reported closing",
        "Gap"
      ],
      "rows": [
        [
          "SKU-A",
          "50",
          "45",
          "5"
        ],
        [
          "SKU-B",
          "40",
          "40",
          "0"
        ]
      ],
      "explanation": "Expected closing = opening + received − sold. A discrepancy does not establish theft, waste, or its cause.",
      "sourceIds": [
        "inventory"
      ]
    },
    {
      "slug": "category-margin-analysis",
      "industry": "consumer-goods",
      "title": "Inspect category margins",
      "description": "Calculate contribution from the actuals supplied.",
      "question": "What gross margin do the two product rows imply?",
      "resultTitle": "Inspect each product contribution",
      "columns": [
        "SKU",
        "Revenue",
        "Cost",
        "Gross margin"
      ],
      "rows": [
        [
          "SKU-A",
          "$2,000",
          "$1,300",
          "35%"
        ],
        [
          "SKU-B",
          "$2,400",
          "$1,800",
          "25%"
        ]
      ],
      "explanation": "Gross margin = (revenue − cost) / revenue. Other operating costs are not included in the supplied file.",
      "sourceIds": [
        "sales"
      ]
    }
  ]
}