Skip to content
Novus Examples
csv592 B

Pine Property Services: Application for payment summary

Application for payment summary for Pine Property Services. The nine numbered lines of an AIA G702 style application. Contract sum 3858.00 plus 255.00 of change orders gives 4113.00; 3248.00 is completed and stored, retainage of 324.80 splits 310.80 on work and 14.00 on stored material, and after 1341.00 of previous certificates the current payment due is 1582.20.

csv

text/csv

592 B
Document Set
construction
Industry
trades-property
Source Kit
trades-property
Synthetic
true
As Of
2026-09-08
Rows
11

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

Specifications

Document Set
construction
Industry
trades-property
Source Kit
trades-property
Synthetic
true
As Of
2026-09-08
Rows
11
Contract Sum To Date Usd
4113.00
Payment Due Usd
1582.20
Retainage Usd
324.80
Encoding
UTF-8

Testing contract

Expected to pass
Scenario
Recompute every numbered line from the lines it is defined in terms of, and check line 4 and line 5 against the continuation sheet.
Expected result
Line 3 = 1 + 2 = 4113.00; line 5 = 5a + 5b = 324.80; line 6 = 4 - 5 = 2923.20; line 8 = 6 - 7 = 1582.20; line 9 = 3 - 6 = 1189.80. Lines 4 and 5 equal the TOTAL row of the continuation sheet. Line 9 is 324.80 larger than the continuation sheet's balance_to_finish column (865.00) because the continuation column excludes retainage and line 9 includes it; the two differ by exactly the retainage and neither is wrong.

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

“Pine Property Services: Application for payment summary” 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: 11 rows · 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("application-for-payment-002-summary.csv")
print(df.head())
print(df.dtypes)

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