freshworks · Schema
TimeEntryCreate
Properties
| Name | Type | Description |
|---|---|---|
| agent_id | integer | ID of the agent logging the time. |
| billable | boolean | Whether the time entry is billable. |
| executed_at | string | Timestamp when the work was executed. |
| note | string | Note describing the work performed. |
| time_spent | string | Duration of time spent in HH:MM format. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TimeEntryCreate",
"title": "TimeEntryCreate",
"type": "object",
"required": [
"time_spent"
],
"properties": {
"agent_id": {
"type": "integer",
"description": "ID of the agent logging the time."
},
"billable": {
"type": "boolean",
"description": "Whether the time entry is billable."
},
"executed_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the work was executed."
},
"note": {
"type": "string",
"description": "Note describing the work performed."
},
"time_spent": {
"type": "string",
"description": "Duration of time spent in HH:MM format."
}
}
}