# org-hook

From **GitHub v3 REST API**.

Org Hook

- Type: `object`

## Properties

### `active`

- Required: true
- Type: `boolean`
- Example: `true`

### `config`

- Required: true
- Type: `object`

### `created_at`

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

### `events`

- Required: true
- Type: `array`
- Example: `[
  "push",
  "pull_request"
]`

### `id`

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

### `name`

- Required: true
- Type: `string`
- Example: `web`

### `ping_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/orgs/octocat/hooks/1/pings`

### `type`

- Required: true
- Type: `string`

### `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/orgs/octocat/hooks/1`

## JSON Schema

```json
{"description":"Org Hook","properties":{"active":{"example":true,"type":"boolean"},"config":{"properties":{"content_type":{"example":"\"form\"","type":"string"},"insecure_ssl":{"example":"\"0\"","type":"string"},"secret":{"example":"\"********\"","type":"string"},"url":{"example":"\"http://example.com/2\"","type":"string"}},"type":"object"},"created_at":{"example":"2011-09-06T17:26:27Z","format":"date-time","type":"string"},"events":{"example":["push","pull_request"],"items":{"type":"string"},"type":"array"},"id":{"example":1,"type":"integer"},"name":{"example":"web","type":"string"},"ping_url":{"example":"https://api.github.com/orgs/octocat/hooks/1/pings","format":"uri","type":"string"},"type":{"type":"string"},"updated_at":{"example":"2011-09-06T20:39:23Z","format":"date-time","type":"string"},"url":{"example":"https://api.github.com/orgs/octocat/hooks/1","format":"uri","type":"string"}},"required":["id","url","type","name","active","events","config","ping_url","created_at","updated_at"],"title":"Org Hook","type":"object"}
```
