# application-grant

From **GitHub v3 REST API**.

The authorization associated with an OAuth Access.

- Type: `object`

## Properties

### `app`

- Required: true
- Type: `object`

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2011-09-06T17:26:27Z`

### `id`

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

### `scopes`

- Required: true
- Type: `array`
- Example: `[
  "public_repo"
]`

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2011-09-06T20:39:23Z`

### `url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/applications/grants/1`

### `user`

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

Simple User

## JSON Schema

```json
{"description":"The authorization associated with an OAuth Access.","properties":{"app":{"properties":{"client_id":{"type":"string"},"name":{"type":"string"},"url":{"format":"uri","type":"string"}},"required":["client_id","name","url"],"type":"object"},"created_at":{"example":"2011-09-06T17:26:27Z","format":"date-time","type":"string"},"id":{"example":1,"type":"integer"},"scopes":{"example":["public_repo"],"items":{"type":"string"},"type":"array"},"updated_at":{"example":"2011-09-06T20:39:23Z","format":"date-time","type":"string"},"url":{"example":"https://api.github.com/applications/grants/1","format":"uri","type":"string"},"user":{"$ref":"#/components/schemas/nullable-simple-user"}},"required":["app","id","scopes","url","created_at","updated_at"],"title":"Application Grant","type":"object"}
```
