json-schema-diff 0.1.8

Diff changes between JSON schema files.
Documentation
---
source: tests/test.rs
expression: diff
info:
  lhs:
    definitions:
      Hello:
        type: object
    items:
      - const: start_unmerge
      - $ref: "#/definitions/Hello"
    type: array
  rhs:
    definitions:
      Hello:
        properties:
          transaction_id:
            type: string
        type: object
    items:
      - const: start_unmerge
      - $ref: "#/definitions/Hello"
    type: array
input_file: tests/fixtures/properties/add_property_in_array.json
---
[
    Change {
        path: ".1",
        change: PropertyAdd {
            lhs_additional_properties: true,
            added: "transaction_id",
        },
    },
]