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