# team-discussion-comment

From **GitHub v3 REST API**.

A reply to a discussion within a team.

- Type: `object`

## Properties

### `author`

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

Simple User

### `body`

- Required: true
- Type: `string`
- Example: `I agree with this suggestion.`

The main text of the comment.

### `body_html`

- Required: true
- Type: `string`
- Example: `<p>Do you like apples?</p>`

### `body_version`

- Required: true
- Type: `string`
- Example: `0307116bbf7ced493b8d8a346c650b71`

The current version of the body content. If provided, this update operation will be rejected if the given version does not match the latest version on the server.

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2018-01-15T23:53:58Z`

### `discussion_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/organizations/1/team/2403582/discussions/1`

### `html_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1`

### `last_edited_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Nullable: true

### `node_id`

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

### `number`

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

The unique sequence number of a team discussion comment.

### `reactions`

- Required: false
- Type: `object`

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2018-01-15T23:53:58Z`

### `url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1`

## JSON Schema

```json
{"description":"A reply to a discussion within a team.","properties":{"author":{"$ref":"#/components/schemas/nullable-simple-user"},"body":{"description":"The main text of the comment.","example":"I agree with this suggestion.","type":"string"},"body_html":{"example":"\u003cp\u003eDo you like apples?\u003c/p\u003e","type":"string"},"body_version":{"description":"The current version of the body content. If provided, this update operation will be rejected if the given version does not match the latest version on the server.","example":"0307116bbf7ced493b8d8a346c650b71","type":"string"},"created_at":{"example":"2018-01-15T23:53:58Z","format":"date-time","type":"string"},"discussion_url":{"example":"https://api.github.com/organizations/1/team/2403582/discussions/1","format":"uri","type":"string"},"html_url":{"example":"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1","format":"uri","type":"string"},"last_edited_at":{"format":"date-time","nullable":true,"type":"string"},"node_id":{"example":"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=","type":"string"},"number":{"description":"The unique sequence number of a team discussion comment.","example":42,"type":"integer"},"reactions":{"$ref":"#/components/schemas/reaction-rollup"},"updated_at":{"example":"2018-01-15T23:53:58Z","format":"date-time","type":"string"},"url":{"example":"https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1","format":"uri","type":"string"}},"required":["author","body","body_html","body_version","created_at","last_edited_at","discussion_url","html_url","node_id","number","updated_at","url"],"title":"Team Discussion Comment","type":"object"}
```
