Skip to content
Novus Examples
csv1.5 KB

Alder Books Reconciliation — Generic primary records CSV

Generic primary records CSV for Alder Books Reconciliation. 24 generic records with stable primary keys. Map the documented fields before importing into another platform.

Preview, first 26 linescsv
transaction_id,date,description,opening_balance,amount,closing_balance,currency
TXN-001,2026-08-01,Client receipt,5000,650,5650.0,USD
TXN-002,2026-08-02,Operating payment,5650.0,-52,5598.0,USD
TXN-003,2026-08-03,Operating payment,5598.0,-59,5539.0,USD
TXN-004,2026-08-04,Client receipt,5539.0,725,6264.0,USD
TXN-005,2026-08-05,Operating payment,6264.0,-73,6191.0,USD
TXN-006,2026-08-06,Operating payment,6191.0,-80,6111.0,USD
TXN-007,2026-08-07,Client receipt,6111.0,800,6911.0,USD
TXN-008,2026-08-08,Operating payment,6911.0,-94,6817.0,USD
TXN-009,2026-08-09,Operating payment,6817.0,-101,6716.0,USD
TXN-010,2026-08-10,Client receipt,6716.0,875,7591.0,USD
TXN-011,2026-08-11,Operating payment,7591.0,-115,7476.0,USD
TXN-012,2026-08-12,Operating payment,7476.0,-122,7354.0,USD
TXN-013,2026-08-13,Client receipt,7354.0,950,8304.0,USD
TXN-014,2026-08-14,Operating payment,8304.0,-136,8168.0,USD
TXN-015,2026-08-15,Operating payment,8168.0,-143,8025.0,USD
TXN-016,2026-08-16,Client receipt,8025.0,1025,9050.0,USD
TXN-017,2026-08-17,Operating payment,9050.0,-157,8893.0,USD
TXN-018,2026-08-18,Operating payment,8893.0,-164,8729.0,USD
TXN-019,2026-08-19,Client receipt,8729.0,1100,9829.0,USD
TXN-020,2026-08-20,Operating payment,9829.0,-178,9651.0,USD
TXN-021,2026-08-21,Operating payment,9651.0,-185,9466.0,USD
TXN-022,2026-08-22,Client receipt,9466.0,1175,10641.0,USD
TXN-023,2026-08-23,Operating payment,10641.0,-199,10442.0,USD
TXN-024,2026-08-24,Operating payment,10442.0,-206,10236.0,USD

Specifications

Kit
accounting-reconciliation
Industry
finance
Schema Version
1
Synthetic
true
As Of
2026-09-08
Rows
24
Columns
7
Encoding
UTF-8

Testing contract

Expected to pass
Scenario
Use generic primary records csv in the Alder Books Reconciliation bank-import, ledger, reconciliation, budgets, expenses, receivables, management-reporting workflow.
Expected result
24 generic records with stable primary keys. Map the documented fields before importing into another platform.

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

“Alder Books Reconciliation — Generic primary records CSV” is a deterministic Novus Examples fixture for Data import. Realistic faker-generated datasets with documented schemas for testing import and ETL flows.

Documented properties for this file: 24 rows · 7 columns · UTF-8. 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("primary-records.csv")
print(df.head())
print(df.dtypes)

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