{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/invopop/jsonschema/grandfather-type",
  "$ref": "#/$defs/GrandfatherType",
  "$defs": {
    "GrandfatherType": {
      "properties": {
        "family_name": {
          "type": "string"
        },
        "ip_addr": {
          "type": "string",
          "format": "ipv4"
        }
      },
      "additionalProperties": false,
      "type": "object",
      "required": [
        "family_name",
        "ip_addr"
      ]
    }
  }
}