Skip to content
Novus Examples
csv5.5 KB

Willow Event Kitchen: Supplier price list CSV

Supplier price list CSV for Willow Event Kitchen. 48 rows covering 2 suppliers, 6 items and 4 effective dates (2026-08-05, 2026-08-12, 2026-08-19, 2026-08-26). Each row carries the list unit price, the case pack quantity, the price per case and a contract tier price that applies only at 250 units. Every purchase order line in this set is priced from the row matching its supplier, item and order date.

csv

text/csv

5.5 KB
Kit
restaurant-catering
Schema Version
1
Synthetic
true
As Of
2026-09-08
Currency
CAD
Tax Name
GST

Binary csv: no in-browser preview. Download it above to open in a compatible application.

Specifications

Kit
restaurant-catering
Schema Version
1
Synthetic
true
As Of
2026-09-08
Currency
CAD
Tax Name
GST
Tax Rate
0.05
Rows
48
Columns
15
Delimiter
comma
Encoding
UTF-8
Byte Order Mark
false
Line Endings
LF
Decimal Separator
.

Testing contract

Expected to pass
Scenario
Read supplier price list csv into a procure-to-pay import, three-way match and reconciliation workflow for Willow Event Kitchen.
Expected result
48 rows covering 2 suppliers, 6 items and 4 effective dates (2026-08-05, 2026-08-12, 2026-08-19, 2026-08-26). Each row carries the list unit price, the case pack quantity, the price per case and a contract tier price that applies only at 250 units. Every purchase order line in this set is priced from the row matching its supplier, item and order date.

What is a .csv file?

CSV (Comma-Separated Values) is a plain-text tabular format where rows are lines and fields are separated by commas, with quoting rules for values that contain delimiters, quotes, or newlines. It has no formal type system and depends on encoding and dialect conventions. It is the most portable format for tabular data exchange.

How to use this file

Use an example CSV to test parsers against quoting and embedded-delimiter edge cases, header handling, encoding detection, and import pipelines into databases or spreadsheets.

How to use this file for testing

“Willow Event Kitchen: Supplier price list CSV” is a deterministic Novus Examples fixture for Data import, CSV parsing. Realistic faker-generated datasets with documented schemas for testing import and ETL flows.

Documented properties for this file: 48 rows · 15 columns · UTF-8 · LF. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such, expect parsers to fail loudly rather than silently accept them.

Data fixtures document their exact quirks (delimiters, encodings, null handling, schema, and row counts) in the spec table. Point your parser or importer at the file and assert it handles the documented edge cases; clean and deliberately-messy siblings make before/after diffs straightforward.

Code examples

import pandas as pd

df = pd.read_csv("price-list.csv")
print(df.head())
print(df.dtypes)

Generated by generation/restaurant_procurement.py. Free for any use, no attribution required, license.