json-schema-diff 0.1.8

Diff changes between JSON schema files.
Documentation
{
  "lhs": {
    "anyOf": [
      {"properties": {"foo": {}}},
      {"properties": {"type": {"const": "bar"}}}
    ]
  },
  "rhs": {
    "anyOf": [
      { "type": "boolean" },
      {
        "title": "replay_recording",
        "type": "object",
        "properties": {"foo": {}}
      },
      {"properties": {"type": {"const": "bar"}}}
    ]
  }
}