Skip to main content

custom-json-diff

Comparing two JSON files presents an issue when the two files have certain fields which are dynamically generated (e.g. timestamps), variable ordering, or other fields which need to be excluded for one reason or another. Enter custom-json-diff, which allows you to specify fields to ignore in the comparison and sorts all fields.

Installation

pip install custom-json-diff

CLI Usage

usage: cjd [-h] -i INPUT INPUT [-o OUTPUT] [-c CONFIG] {bom-diff,json-diff} ...

positional arguments:
  {bom-diff,json-diff}  subcommand help
    bom-diff            compare CycloneDX BOMs
    json-diff           compare two JSON files

options:
  -h, --help            show this help message and exit
  -i INPUT INPUT, --input INPUT INPUT
                        Two JSON files to compare - older file first.
  -o OUTPUT, --output OUTPUT
                        Export JSON of differences to this file.
  -c CONFIG, --config-file CONFIG
                        Import TOML configuration file (overrides commandline options).

bom-diff usage

usage: cjd bom-diff [-h] [--allow-new-versions] [--allow-new-data] [--components-only] [-r REPORT_TEMPLATE] [--include-extra INCLUDE [INCLUDE ...]]

options:
  -h, --help            show this help message and exit
  --allow-new-versions, -anv
                        Allow newer versions in second BOM to pass.
  --allow-new-data, -and
                        Allow populated BOM values in newer BOM to pass against empty values in original BOM.
  --components-only     Only compare components.
  -r REPORT_TEMPLATE, --report-template REPORT_TEMPLATE
                        Jinja2 template to use for report generation.
  --include-extra INCLUDE [INCLUDE ...]
                        Include properties/evidence/licenses/hashes in comparison (list which with space inbetween).

json-diff usage

usage: cjd json-diff [-h] [-x EXCLUDE [EXCLUDE ...]]

options:
  -h, --help            show this help message and exit
  -x EXCLUDE [EXCLUDE ...], --exclude EXCLUDE [EXCLUDE ...]
                        Exclude field(s) from comparison.

Specifying fields to exclude

To exclude fields from comparison, use the -x or --exclude flag and specify the field name(s) to exclude. The json will be flattened, so fields are specified using dot notation. For example:

{
    "field1": {
        "field2": "value", 
        "field3": [
            {"a": "val1", "b": "val2"}, 
            {"a": "val3", "b": "val4"}
        ]
    }
}

is flattened to:

{
    "field1.field2": "value",
    "field1.field3.[0].a": "val1",
    "field1.field3.[0].b": "val2",
    "field1.field3.[1].a": "val3",
    "field1.field3.[1].b": "val4"
}

To exclude field2, you would specify field1.field2. To exclude the a field in the array of objects, you would specify field1.field3.[].a (do NOT include the array index, just do []). Multiple fields may be specified separated by a space. To better understand what your fields should be, check out json-flatten, which is the package used for this function.

Note: In the context of BOM diffing, this list is only used for the metadata, not the components, services, or dependencies.

Bom Diff

The bom-diff command compares CycloneDx BOM components, services, and dependencies, as well as data outside of these parts.

Some fields are excluded from the component comparison by default but can be explicitly specified for inclusion using bom-diff --include-extra and whichever field(s) you wish to include :

  • properties
  • evidence
  • licenses
  • hashes

Default included fields:

components (application, framework, and library types):

  • author
  • bom-ref
  • description
  • group
  • name
  • publisher
  • purl
  • scope
  • type
  • version

services

  • name
  • endpoints
  • authenticated
  • x-trust-boundary

dependencies

  • ref
  • dependsOn

The --allow-new-versions option attempts to parse component versions and ascertain if a discrepancy is attributable to an updated version. Dependency refs and dependents are compared with the version string removed rather than checking for a newer version.

The --allow-new-data option allows for empty fields in the original BOM not to be reported as a difference when the data is populated in the second specified BOM. This option only applies to the fields included by default.

The --components-only option only analyzes components, not services, dependencies, or other data.

Sorting

custom-json-diff will sort the imported JSON alphabetically. If your JSON document contains arrays of objects, you will need to specify any keys you want to sort by in a toml file or use a preset. The first key located from the provided keys that is present in the object will be used for sorting.

TOML config file example

[settings]
excluded_fields = []
sort_keys = ["url", "content", "ref", "name", "value"]

[bom_settings]
allow_new_data = false
allow_new_versions = true
components_only = false
include_extra = ["licenses", "properties", "hashes", "evidence"]
report_template = "custom_json_diff/bom_diff_template.j2"

Download files

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

Source Distribution

custom_json_diff-0.7.0.tar.gz (19.1 kB view details)

Uploaded Source

Built Distribution

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

custom_json_diff-0.7.0-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file custom_json_diff-0.7.0.tar.gz.

File metadata

  • Download URL: custom_json_diff-0.7.0.tar.gz
  • Upload date:
  • Size: 19.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for custom_json_diff-0.7.0.tar.gz
Algorithm Hash digest
SHA256 8ac2100342df891ca165b6cf836423e7db1afe18af648dfe1aa0b69daf63c7c2
MD5 3373725cdff1a3b007cde0cfac6d8959
BLAKE2b-256 a2de6e627cf3715cce1d377bef3f420502dfb8a2f6726129de77676e8fe7399c

See more details on using hashes here.

File details

Details for the file custom_json_diff-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for custom_json_diff-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d3bb22c59d6fdcda764a9c2fe01f672931b7ad2a17080b7cb4cd97ca26915f6b
MD5 ce79f325f28d67c63e811270446b45d5
BLAKE2b-256 3cc0d746a4f5d41862481f7797e43db260e1dd89618bbafcb42bf318e4a61f2f

See more details on using hashes here.

Release history Release notifications | RSS feed

2.1.6

2 files

2.1.5

2 files

2.1.4

2 files

2.1.3

2 files

2.1.2

2 files

2.1.1

2 files

2.1.0

2 files

2.0.0

2 files

1.7.0

2 files

1.6.0

2 files

1.5.6

2 files

1.5.5

2 files

1.5.4

2 files

1.5.3

2 files

1.5.2

2 files

1.5.1

2 files

1.5.0

2 files

1.4.0

2 files

1.3.0

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

This release

0.7.0 This release

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page