# event

From **GitHub v3 REST API**.

Event

- Type: `object`

## Properties

### `actor`

- Required: true
- Type: `object`

Actor

### `created_at`

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

### `id`

- Required: true
- Type: `string`

### `org`

- Required: false
- Type: `object`

Actor

### `payload`

- Required: true
- Type: `object`

### `public`

- Required: true
- Type: `boolean`

### `repo`

- Required: true
- Type: `object`

### `type`

- Required: true
- Type: `string`
- Nullable: true

## JSON Schema

```json
{"description":"Event","properties":{"actor":{"$ref":"#/components/schemas/actor"},"created_at":{"format":"date-time","nullable":true,"type":"string"},"id":{"type":"string"},"org":{"$ref":"#/components/schemas/actor"},"payload":{"properties":{"action":{"type":"string"},"comment":{"$ref":"#/components/schemas/issue-comment"},"issue":{"$ref":"#/components/schemas/issue"},"pages":{"items":{"properties":{"action":{"type":"string"},"html_url":{"type":"string"},"page_name":{"type":"string"},"sha":{"type":"string"},"summary":{"nullable":true,"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"},"public":{"type":"boolean"},"repo":{"properties":{"id":{"type":"integer"},"name":{"type":"string"},"url":{"format":"uri","type":"string"}},"required":["id","name","url"],"type":"object"},"type":{"nullable":true,"type":"string"}},"required":["id","type","actor","repo","payload","public","created_at"],"title":"Event","type":"object"}
```
