# Liquid Objects: Comment
An article comment object in Shopify's Liquid templating language.
## Properties
| Property | Type | Description |
|----------|------|-------------|
| `author` | string | "The full name of the author of the comment." |
| `content` | string | "The content of the comment." |
| `created_at` | string | When the comment was created. Use the `date` filter to format this timestamp. |
| `email` | string | "The email of he author of the comment." |
| `id` | number | "The ID of the comment." |
| `status` | string | "The status of the comment. Always returns `published`." Only published comments appear in the `article.comments` array. |
| `updated_at` | string | When the comment status was last updated. Apply the `date` filter for formatting. |
| `url` | string | Relative URL to the associated article with the comment ID appended. |
## Example
```json
{
"author": "Cornelius",
"content": "Wow, this is going to save me a fortune in invisibility potion!",
"created_at": "2022-06-05 19:33:57 -0400",
"email": "cornelius.potionmaker@gmail.com",
"id": 129089273921,
"status": "published",
"updated_at": "2022-06-05 19:33:57 -0400",
"url": "/blogs/potion-notions/how-to-tell-if-you-have-run-out-of-invisibility-potion#129089273921"
}
```