A list of appointments with the following properties:

  • date (str): The date of the appointment
  • time (str): The time of the appointment
  • location (str): The location of the appointment
  • appointment_with_person (str): The person with whom the appointment is made
  • reason (str): The reason of the appointment
result
{
  "appointments": [
    {
      "date": "str",
      "time": "str",
      "location": "str",
      "appointment_with_person": "str",
      "reason": "str"
    }
  ]
}

Was this page helpful?