Skip to main content

Reduces JSON, YAML, and NDJSON volume by collapsing repeated structures while preserving the schema, making the schema easier for you to read.

Project description

JSON's Razor — Cut the fat

tests

Reduces JSON, YAML, and NDJSON volume by collapsing repeated structures while preserving the schema, making the schema easier for you to read.

Large structured data files are hard to parse — not because the structure is complex, but because repetition obscures it. A list of 10,000 objects with identical shape tells you nothing more than a list of 1. JSON's Razor collapses that repetition to its minimum essential form: one representative example of each repeated structure, at every level of nesting.

The output is valid, parseable data in the same format as input — not a summary, not a schema definition. It just has far less volume.


Install

pip install json-razor

Usage

cat big.json | json-razor                    # stdin → stdout
json-razor big.json                          # file input → stdout
json-razor big.json -o small.json            # file input → file output
json-razor big.yaml                          # auto-detected as YAML
json-razor app.log --format ndjson           # NDJSON log file

Options

Flag Default Description
--keep N 1 Number of examples to keep per repeated structure
--depth N unlimited Stop collapsing below this nesting depth
--format auto Force format: json, yaml, or ndjson
--truncate N 100 Max string length before truncating

How it works

Arrays — collapsed to one item. Mixed-type arrays keep one of each distinct type.

// input
[{"id": 1, "name": "alice"}, {"id": 2, "name": "bob"}, {"id": 3, "name": "carol"}]

// output
[{"id": 1, "name": "alice"}]

Mixed types — one representative per JSON type (null, bool, number, string, array, object).

// input
[1, "hello", {"id": 1}, null, true, [1, 2, 3]]

// output
[1, "hello", {"id": 1}, null, true, [1]]

Nested structures — collapsed recursively at every level.

NDJSON — collapsed across lines; one representative line kept.

Nulls and empty values — always preserved (null, [], {}).

Long strings — truncated to a configurable preview.


Supported formats

Format Auto-detected from
JSON .json
YAML .yaml, .yml
NDJSON .ndjson

Use case: OpenAPI specs

OpenAPI specs are a natural fit for JSON's Razor. They're long, deeply nested, and repeat the same response structures across dozens of endpoints.

Run the included sample to see it in action:

json-razor tests/samples/openapi.yaml

You get the full API shape — every path, method, status code, and referenced schema — without the repetition that obscures it. Useful for:

  • Reviewing an unfamiliar API quickly
  • Inspecting generated specs in CI before they're published
  • Diffing structural changes between spec versions

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

json_razor-0.1.3.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

json_razor-0.1.3-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file json_razor-0.1.3.tar.gz.

File metadata

  • Download URL: json_razor-0.1.3.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for json_razor-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e59cd5cbbfe297fc5ee38dc1fdb926e973f238b845818c19cab5029625657a37
MD5 9dfd6d47d1bf916555b090cb5aae7b45
BLAKE2b-256 59275bdef7fd24f13464bdad6a6c46d21250321da51c254497633455da0ea3eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_razor-0.1.3.tar.gz:

Publisher: release.yml on rick-does/json-razor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file json_razor-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: json_razor-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for json_razor-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3d7a7d67c9b1c2c8915940e65ebaf466e951b9d7c277c2dddf468ab6888a6fa5
MD5 091614e795aacba6dcf1c54dbac02915
BLAKE2b-256 f14868a7711f45b57cd42fecd4569277fc047978cad1822cf25949ce16f43006

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_razor-0.1.3-py3-none-any.whl:

Publisher: release.yml on rick-does/json-razor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page