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": "number"
      }
    }
  },
  "rhs": {
    "type": "array",
    "items": [
      {"const": "start_unmerge"},
      {"$ref": "#/definitions/Hello"}
    ],
    "definitions": {
      "Hello": {
        "type": "number",
        "minimum": 1.0
      }
    }
  }
}