{
  "$id": "plan.get",
  "anyOf": [{
    "type": "string",
    "minLength": 1,
    "maxLength": 100
  }, {
    "description": "Plan object",
    "type": "object",
    "required": ["id"],
    "properties": {
      "id": {
        "type": "string",
        "minLength": 1,
        "maxLength": 100
      },
      "fetchParent": {
        "type": "boolean"
      }
    }
  }]
}
