{
  "id": "plan.switch",
  "type": "object",
  "required": ["data"],
  "properties": {
    "data": {
      "type": "object",
      "required": ["type", "attributes"],
      "properties": {
        "type": {
          "type": "string",
          "constant": "switch"
        },
        "attributes": {
          "type": "object",
          "required": ["plan"],
          "properties": {
            "user": {
              "type": "string",
              "minLength": 1
            },
            "plan": {
              "type": "string",
              "minLength": 1
            }
          }
        }
      }
    }
  }
}
