json-schema-diff 0.1.8

Diff changes between JSON schema files.
Documentation
---
source: tests/test.rs
expression: diff
info:
  lhs:
    definitions:
      Hello:
        type: number
    items:
      - const: start_unmerge
      - $ref: "#/definitions/Hello"
    type: array
  rhs:
    definitions:
      Hello:
        minimum: 1
        type: number
    items:
      - const: start_unmerge
      - $ref: "#/definitions/Hello"
    type: array
input_file: tests/fixtures/range/add_minimum_in_array.json
---
[
    Change {
        path: ".1",
        change: RangeAdd {
            added: Minimum(
                1.0,
            ),
        },
    },
]