Column Names
Required: `name`, `subcategory`, `foodBasketName`, `portions`, `method`, `ingredients`
Optional: `categoryName`, `regionCode`, `clientCode`, `allergens`
Ingredients Format
Use SAP codes with quantities, separated by `|`.
SAP-1001:3|SAP-1002:4.273|SAP-1003:1
Excel Header Example
name | categoryName | subcategory | foodBasketName | regionCode | clientCode | portions | method | allergens | ingredients
XML Item Example
<recipes>
<recipe>
<name>Chicken Rice Bowl</name>
<categoryName>Main Line</categoryName>
<subcategory>MAIN_COURSES</subcategory>
<foodBasketName>Standard Basket</foodBasketName>
<regionCode>EU-S</regionCode>
<clientCode>CSK</clientCode>
<portions>10</portions>
<method>Cook chicken, steam rice, combine and serve.</method>
<allergens></allergens>
<ingredients>SAP-1001:3|SAP-1002:4.273</ingredients>
</recipe>
</recipes>