freshworks · Schema

TimeEntry

Properties

Name Type Description
id integer Unique ID of the time entry.
agent_id integer ID of the agent who logged 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.
start_time string Start time of the time entry.
time_spent string Duration of time spent in HH:MM format.
timer_running boolean Whether the timer is currently running.
created_at string Timestamp when the time entry was created.
updated_at string Timestamp when the time entry was last updated.
View JSON Schema on GitHub

JSON Schema

freshworks-timeentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeEntry",
  "title": "TimeEntry",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique ID of the time entry."
    },
    "agent_id": {
      "type": "integer",
      "description": "ID of the agent who logged 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."
    },
    "start_time": {
      "type": "string",
      "format": "date-time",
      "description": "Start time of the time entry."
    },
    "time_spent": {
      "type": "string",
      "description": "Duration of time spent in HH:MM format."
    },
    "timer_running": {
      "type": "boolean",
      "description": "Whether the timer is currently running."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the time entry was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the time entry was last updated."
    }
  }
}