{
  "tool_id": "intermittent_fasting_window_planner",
  "slug": "intermittent-fasting-window-planner",
  "path": "/intermittent-fasting-window-planner/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/intermittent-fasting-window-planner/?<params>",
  "sample_input": {
    "tool": "intermittent_fasting_window",
    "protocol": "16:8",
    "first_meal_time": "12:00",
    "fast_days": [
      "Monday",
      "Thursday"
    ]
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "protocol": {
        "type": "string"
      },
      "first_meal_time": {
        "type": "string"
      },
      "fast_days": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    },
    "required": [
      "tool",
      "protocol",
      "first_meal_time",
      "fast_days"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "protocol": {
        "type": "string"
      },
      "protocolLabel": {
        "type": "string"
      },
      "eatingHours": {
        "type": "number"
      },
      "fastingHours": {
        "type": "number"
      },
      "isDayBased": {
        "type": "boolean"
      },
      "tip": {
        "type": "string"
      },
      "eatingStartMinute": {
        "type": "number"
      },
      "eatingWindowStart": {
        "type": "object",
        "properties": {
          "hours": {
            "type": "number"
          },
          "minutes": {
            "type": "number"
          },
          "dayOffset": {
            "type": "number"
          }
        }
      },
      "eatingWindowEnd": {
        "type": "object",
        "properties": {
          "hours": {
            "type": "number"
          },
          "minutes": {
            "type": "number"
          },
          "dayOffset": {
            "type": "number"
          }
        }
      },
      "fastingWindowStart": {
        "type": "object",
        "properties": {
          "hours": {
            "type": "number"
          },
          "minutes": {
            "type": "number"
          },
          "dayOffset": {
            "type": "number"
          }
        }
      },
      "fastingWindowEnd": {
        "type": "object",
        "properties": {
          "hours": {
            "type": "number"
          },
          "minutes": {
            "type": "number"
          },
          "dayOffset": {
            "type": "number"
          }
        }
      },
      "fastDays": {
        "type": "array",
        "items": {}
      }
    }
  }
}
