The Comments Object
This is an object representing a comment.
Properties
-
id
numberThe numeric ID
-
created_at
stringCreation date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
updated_at
stringLatest update date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
message
null or stringThe message of a comment, with the datatype of
null
or a string. -
message_json
objectThe
message_json
property is an array containing JSON objects representing the comments’ messages.-
text
stringThe text part
-
type
stringThe type
-
attrs
objectAttributes
-
-
user_id
numberUser/numeric id of collaborator
-
uuid
stringGenerated UUID string
Example Object
{
"comments":[
{
"user_id":99734,
"id":141546,
"message":null,
"message_json":[
{
"text":"hello 4",
"type":"text"
}
],
"created_at":"2024-02-06T22:11:00.119Z",
"updated_at":"2024-02-06T22:11:00.119Z"
}
]
}