diff --git a/api/schema/objects.go b/api/schema/objects.go index 74c4650..5850c29 100644 --- a/api/schema/objects.go +++ b/api/schema/objects.go @@ -79,8 +79,8 @@ type Meeting struct { Start_date time.Time `bson:"start_date" json:"start_date"` End_date time.Time `bson:"end_date" json:"end_date"` Meeting_days []string `bson:"meeting_days" json:"meeting_days"` - Start_time time.Time `bson:"start_time" json:"start_time"` - End_time time.Time `bson:"end_time" json:"end_time"` + Start_time string `bson:"start_time" json:"start_time"` + End_time string `bson:"end_time" json:"end_time"` Modality string `bson:"modality" json:"modality"` Location Location `bson:"location" json:"location"` } diff --git a/docs/schemas/meeting.md b/docs/schemas/meeting.md index 11b686a..efc58fa 100644 --- a/docs/schemas/meeting.md +++ b/docs/schemas/meeting.md @@ -50,17 +50,17 @@ Meeting = { > > **Type**: string > -> The time the meeting starts on each meeting day. +> The time the meeting starts on each meeting day. The timezone is the same as UTD (CST/CDT). > -> **Example**: `0000-01-01T16:00:00-05:50` +> **Example**: `7:00pm` > `.end_time` > > **Type**: string > -> The time a meeting ends on each meeting day. +> The time a meeting ends on each meeting day. The timezone is the same as UTD (CST/CDT). > -> **Example**: `0000-01-01T17:15:00-05:50` +> **Example**: `9:45pm` > `.modality` >