{
  "$defs": {
    "StrictParent": {
      "properties": {
        "value": {
          "minimum": 5,
          "title": "Value",
          "type": "integer"
        }
      },
      "required": [
        "value"
      ],
      "title": "StrictParent",
      "type": "object",
      "x-is-base-class": true
    }
  },
  "allOf": [
    {
      "$ref": "#/$defs/StrictParent"
    }
  ],
  "properties": {
    "value": {
      "minimum": 0,
      "title": "Value",
      "type": "integer"
    }
  },
  "required": [
    "value"
  ],
  "title": "RelaxedChild",
  "type": "object"
}