json-schema-diff 0.1.8

Diff changes between JSON schema files.
Documentation
{
  "lhs": {
    "type": "array",
    "items": [
      {"const": "start_unmerge"},
      {"$ref": "#/definitions/Hello"}
    ],
    "definitions": {
      "Hello": {
        "type": "object"
      }
    }
  },
  "rhs": {
    "type": "array",
    "items": [
      {"const": "start_unmerge"},
      {"$ref": "#/definitions/Hello"}
    ],
    "definitions": {
      "Hello": {
        "type": "object",
        "properties": {"transaction_id": {"type": "string"}}
      }
    }
  }
}