Skip to content
Novus Examples
json772 B

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.

Preview — first 40 linesjson
{
  "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.

Code examples

import json

with open("payroll-summary.json") as f:
    data = json.load(f)
print(type(data), len(data))

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