{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/invopop/jsonschema/test-nullable",
  "$ref": "#/$defs/TestNullable",
  "$defs": {
    "TestNullable": {
      "properties": {
        "child1": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ]
        }
      },
      "additionalProperties": false,
      "type": "object",
      "required": [
        "child1"
      ]
    }
  }
}