Asana · Schema

TimeTrackingEntryCompact

A generic Asana Resource, containing a globally unique identifier.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string Globally unique identifier of the resource, as a string.
resource_type string The base type of this resource.
duration_minutes integer Time in minutes tracked by the entry.
entered_on string The day that this entry is logged on.
created_by object
View JSON Schema on GitHub

JSON Schema

asana-timetrackingentrycompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeTrackingEntryCompact",
  "title": "TimeTrackingEntryCompact",
  "description": "A generic Asana Resource, containing a globally unique identifier.",
  "type": "object",
  "properties": {
    "gid": {
      "description": "Globally unique identifier of the resource, as a string.",
      "type": "string",
      "readOnly": true,
      "example": "12345",
      "x-insert-after": false
    },
    "resource_type": {
      "description": "The base type of this resource.",
      "type": "string",
      "readOnly": true,
      "example": "task",
      "x-insert-after": "gid"
    },
    "duration_minutes": {
      "description": "Time in minutes tracked by the entry.",
      "type": "integer",
      "example": 12
    },
    "entered_on": {
      "description": "The day that this entry is logged on.",
      "type": "string",
      "format": "date",
      "example": "2015-03-14"
    },
    "created_by": {
      "$ref": "#/components/schemas/UserCompact",
      "readOnly": true
    }
  }
}