diff --git a/doc.json b/doc.json index b9e8631..e3fc162 100644 --- a/doc.json +++ b/doc.json @@ -4231,7 +4231,8 @@ "end": { "example": "2023-01-14T05:12:43", "type": "string", - "format": "date-time" + "format": "date-time", + "x-nullable": true }, "project": { "description": "Project ID", diff --git a/models/timesheet_edit_form.go b/models/timesheet_edit_form.go index ce80351..8ed4ce8 100644 --- a/models/timesheet_edit_form.go +++ b/models/timesheet_edit_form.go @@ -38,7 +38,7 @@ type TimesheetEditForm struct { // end // Example: 2023-01-14T05:12:43 // Format: date-time - End strfmt.DateTime `json:"end,omitempty"` + End *strfmt.DateTime `json:"end,omitempty"` // exported Exported bool `json:"exported,omitempty"`