jsoncompat 0.4.2

JSON Schema and OpenAPI Compatibility Checker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {
    "Value": {
      "allOf": [
        { "$ref": "#/$defs/Value" },
        { "type": "string" }
      ]
    }
  },
  "type": "object",
  "properties": {
    "value": { "$ref": "#/$defs/Value" }
  },
  "additionalProperties": false
}