Wrike · Schema

Comment

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
id string
authorId string
text string
updatedDate string
createdDate string
taskId string
folderId string
View JSON Schema on GitHub

JSON Schema

wrike-comment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Comment",
  "title": "Comment",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "authorId": {
      "type": "string"
    },
    "text": {
      "type": "string"
    },
    "updatedDate": {
      "type": "string",
      "format": "date-time"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    },
    "taskId": {
      "type": "string"
    },
    "folderId": {
      "type": "string"
    }
  }
}