{
  "type": "object",
  "required": [
    "r",
    "p",
    "b",
    "v",
    "g",
    "l"
  ],
  "properties": {
    "r": {
      "type": "integer",
      "const": 3
    },
    "p": {
      "type": "object",
      "required": [
        "t",
        "g",
        "i",
        "s",
        "o",
        "a"
      ],
      "properties": {
        "t": {
          "type": "string",
          "minLength": 5,
          "maxLength": 22
        },
        "g": {
          "type": "string",
          "minLength": 20,
          "maxLength": 48
        },
        "i": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 8,
            "maxLength": 24
          },
          "minItems": 1,
          "maxItems": 1
        },
        "s": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 8,
            "maxLength": 28
          },
          "minItems": 3,
          "maxItems": 3
        },
        "o": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 8,
            "maxLength": 24
          },
          "minItems": 1,
          "maxItems": 1
        },
        "a": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 8,
            "maxLength": 28
          },
          "minItems": 2,
          "maxItems": 2
        }
      },
      "additionalProperties": false
    },
    "b": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 8,
        "maxLength": 28
      },
      "minItems": 4,
      "maxItems": 4
    },
    "v": {
      "type": "object",
      "required": [
        "l",
        "d",
        "c",
        "r"
      ],
      "properties": {
        "l": {
          "type": "string",
          "const": "unknown"
        },
        "d": {
          "type": "string",
          "const": "quarantine"
        },
        "c": {
          "type": "string",
          "const": "blocked"
        },
        "r": {
          "type": "string",
          "minLength": 20,
          "maxLength": 48
        }
      },
      "additionalProperties": false
    },
    "g": {
      "type": "object",
      "required": [
        "k",
        "a",
        "f",
        "r"
      ],
      "properties": {
        "k": {
          "type": "string",
          "minLength": 3,
          "maxLength": 10
        },
        "a": {
          "type": "string",
          "enum": [
            "continue",
            "escalate",
            "refuse"
          ]
        },
        "f": {
          "type": "boolean",
          "const": false
        },
        "r": {
          "type": "string",
          "minLength": 20,
          "maxLength": 48
        }
      },
      "additionalProperties": false
    },
    "l": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 8,
        "maxLength": 28
      },
      "minItems": 2,
      "maxItems": 2
    }
  },
  "additionalProperties": false
}
