Asana · Schema

CreateTimeTrackingEntryRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
duration_minutes integer Time in minutes tracked by the entry. Must be greater than 0
entered_on string *Optional*. The day that this entry is logged on. Defaults to today if not specified
View JSON Schema on GitHub

JSON Schema

asana-createtimetrackingentryrequest-schema.json Raw ↑
{
  "$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"
    }
  }
}