# gist-comment

From **GitHub v3 REST API**.

A comment made to a gist.

- Type: `object`

## Properties

### `author_association`

- Required: true
- Type: `string`
- Example: `OWNER`
- Allowed values: `"COLLABORATOR"`, `"CONTRIBUTOR"`, `"FIRST_TIMER"`, `"FIRST_TIME_CONTRIBUTOR"`, `"MANNEQUIN"`, `"MEMBER"`, `"NONE"`, `"OWNER"`

How the author is associated with the repository.

### `body`

- Required: true
- Type: `string`
- Example: `Body of the attachment`
- maxLength: `65535`

The comment text.

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2011-04-18T23:23:56Z`

### `id`

- Required: true
- Type: `integer`
- Example: `1`

### `node_id`

- Required: true
- Type: `string`
- Example: `MDExOkdpc3RDb21tZW50MQ==`

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2011-04-18T23:23:56Z`

### `url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/gists/a6db0bec360bb87e9418/comments/1`

### `user`

- Required: true
- Type: `object`
- Nullable: true

Simple User

## JSON Schema

```json
{"description":"A comment made to a gist.","properties":{"author_association":{"$ref":"#/components/schemas/author_association"},"body":{"description":"The comment text.","example":"Body of the attachment","maxLength":65535,"type":"string"},"created_at":{"example":"2011-04-18T23:23:56Z","format":"date-time","type":"string"},"id":{"example":1,"type":"integer"},"node_id":{"example":"MDExOkdpc3RDb21tZW50MQ==","type":"string"},"updated_at":{"example":"2011-04-18T23:23:56Z","format":"date-time","type":"string"},"url":{"example":"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1","format":"uri","type":"string"},"user":{"$ref":"#/components/schemas/nullable-simple-user"}},"required":["url","id","node_id","user","body","author_association","created_at","updated_at"],"title":"Gist Comment","type":"object"}
```
