# Comment

## Base definition

```javascript
{
    "kind": "comment",
    "createdAt": int,
    "updatedAt": int,
    "text": str,
    "user": {
      ...user.base // See user resource definition
    } 
}
```

## Documentation

| Fields    | Description                                                                                                                                                           |
| --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| kind      | <p><strong>string</strong></p><p>The resource type. Will always be "comment".</p>                                                                                     |
| createdAt | <p><strong>integer</strong></p><p>Timestamp for when the comment was created. Stored as milliseconds since the epoch (1970-01-01).</p>                                |
| updatedAt | <p><strong>integer</strong></p><p>Timestamp for when the comment was last updated. Stored as milliseconds since the epoch (1970-01-01).</p>                           |
| user      | <p><strong>object</strong><br>The user who left the comment. Will contain the contents of the <a href="../user#base-definition">user.base resource definition</a></p> |
