{
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "additionalProperties": false,
  "properties": {
    "$schema": {
      "type": "string"
    },
    "plugin-redirects": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "fromUrl": {
          "type": "string"
        },
        "toUrlType": {
          "type": "string"
        },
        "internalLink": {
          "type": "string"
        },
        "customUrl": {
          "type": "string"
        },
        "documentToRedirect": {
          "type": "string"
        },
        "redirectType": {
          "type": "string"
        }
      },
      "required": [
        "fromUrl",
        "toUrlType",
        "internalLink",
        "customUrl",
        "documentToRedirect",
        "redirectType"
      ]
    }
  },
  "required": ["plugin-redirects"]
}
