{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateTimeTrackingEntryRequest", "title": "UpdateTimeTrackingEntryRequest", "type": "object", "properties": { "duration_minutes": { "description": "*Optional*. Time in minutes tracked by the entry", "type": "integer", "example": 12 }, "entered_on": { "description": "*Optional*. The day that this entry is logged on. Defaults to today if no day specified", "type": "string", "format": "date", "example": "2023-03-19" } } }