Facebook Business Manager · Schema
Comment
AdvertisingAnalyticsBusiness ManagementMarketingSocial Media
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ID of the comment |
| message | string | The text content of the comment |
| from | object | The person or Page that made the comment |
| created_time | string | When the comment was created |
| like_count | integer | Number of likes on the comment |
| comment_count | integer | Number of replies to the comment |
| is_hidden | boolean | Whether the comment is hidden |
| attachment | object | Media attachment on the comment |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Comment",
"title": "Comment",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The ID of the comment"
},
"message": {
"type": "string",
"description": "The text content of the comment"
},
"from": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"description": "The person or Page that made the comment"
},
"created_time": {
"type": "string",
"format": "date-time",
"description": "When the comment was created"
},
"like_count": {
"type": "integer",
"description": "Number of likes on the comment"
},
"comment_count": {
"type": "integer",
"description": "Number of replies to the comment"
},
"is_hidden": {
"type": "boolean",
"description": "Whether the comment is hidden"
},
"attachment": {
"type": "object",
"description": "Media attachment on the comment"
}
}
}