Wrike · Schema

Timelog

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
id string
taskId string
userId string
hours number Number of hours logged
createdDate string
trackedDate string Date the time was tracked
comment string
View JSON Schema on GitHub

JSON Schema

wrike-timelog-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Timelog",
  "title": "Timelog",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "taskId": {
      "type": "string"
    },
    "userId": {
      "type": "string"
    },
    "hours": {
      "type": "number",
      "format": "float",
      "description": "Number of hours logged"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    },
    "trackedDate": {
      "type": "string",
      "format": "date",
      "description": "Date the time was tracked"
    },
    "comment": {
      "type": "string"
    }
  }
}