# actor

From **GitHub v3 REST API**.

Actor

- Type: `object`

## Properties

### `avatar_url`

- Required: true
- Type: `string`
- Format: `uri`

### `display_login`

- Required: false
- Type: `string`

### `gravatar_id`

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

### `id`

- Required: true
- Type: `integer`

### `login`

- Required: true
- Type: `string`

### `url`

- Required: true
- Type: `string`
- Format: `uri`

## JSON Schema

```json
{"description":"Actor","properties":{"avatar_url":{"format":"uri","type":"string"},"display_login":{"type":"string"},"gravatar_id":{"nullable":true,"type":"string"},"id":{"type":"integer"},"login":{"type":"string"},"url":{"format":"uri","type":"string"}},"required":["id","login","gravatar_id","url","avatar_url"],"title":"Actor","type":"object"}
```
