Payroll Summary (JSON)
A monthly payroll summary derived from the employee directory — headcount, annual and monthly gross totals, and a per-department breakdown. A fixture for testing finance/HR dashboards and JSON aggregation.
{
"period": "2026-01",
"currency": "USD",
"headcount": 30,
"annual_gross_total": 3886000,
"monthly_gross_total": 323833.33,
"by_department": [
{
"department": "Engineering",
"annual_gross": 768000,
"headcount": 6
},
{
"department": "Finance",
"annual_gross": 928000,
"headcount": 7
},
{
"department": "Marketing",
"annual_gross": 496000,
"headcount": 4
},
{
"department": "People",
"annual_gross": 293000,
"headcount": 3
},
{
"department": "Sales",
"annual_gross": 548000,
"headcount": 4
},
{
"department": "Support",
"annual_gross": 853000,
"headcount": 6
}
]
}
Specifications
- Period
- 2026-01
- Headcount
- 30
- Note
- derived from the employee directory
What is a .json file?
JSON (JavaScript Object Notation) is a lightweight, text-based data-interchange format representing objects, arrays, strings, numbers, booleans, and null. It is language-independent, human-readable, and the dominant format for web APIs and configuration. It requires a single well-formed root value.
How to use this file
Use an example JSON file to test parsers and serializers, schema validation, Unicode and number-precision handling, and API request or response processing.
How to use this file for testing
“Payroll Summary (JSON)” is a deterministic Novus Examples fixture for Data import, Conversion testing. Realistic faker-generated datasets with documented schemas for testing import and ETL flows.
Documented properties for this file: JSON · 772 bytes. 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 json
with open("payroll-summary.json") as f:
data = json.load(f)
print(type(data), len(data))Related files
- csvEmployee Directory (CSV, 30 rows)An employee directory — 30 staff with department, title, hire date, salary, and manager reference. Synthetic HR data for testing org-chart builders, directory imports, and payroll pipelines.

- jsonEmployee Directory (JSON, 30 records)The employee directory as a JSON array — the format twin of the CSV, for HR import testing.

- csvBank Transactions (CSV, 60 rows)A bank-transaction statement — 60 debits and credits across three accounts (masked numbers) with running balances, categories, and merchants. Synthetic data for testing statement parsers, categorisation, and reconciliation.

- jsonBank Transactions (JSON, 60 records)The bank transactions as a JSON array — the format twin of the CSV, for import and reconciliation testing.

- jsonColumnar Nulls Schema (JSON)JSON description of nullable columns in the null-heavy columnar fixtures.

- gexfDirected Acyclic Pipeline - GEXF 1.3A six-stage software pipeline DAG for testing dependency import, cycle checks and reproducible topological sorting. This GEXF 1.3 member carries the same node IDs, edge IDs, directions and weights as its two format twins.

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