# page-build

From **GitHub v3 REST API**.

Page Build

- Type: `object`

## Properties

### `commit`

- Required: true
- Type: `string`

### `created_at`

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

### `duration`

- Required: true
- Type: `integer`

### `error`

- Required: true
- Type: `object`

### `pusher`

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

Simple User

### `status`

- Required: true
- Type: `string`

### `updated_at`

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

### `url`

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

## JSON Schema

```json
{"description":"Page Build","properties":{"commit":{"type":"string"},"created_at":{"format":"date-time","type":"string"},"duration":{"type":"integer"},"error":{"properties":{"message":{"nullable":true,"type":"string"}},"required":["message"],"type":"object"},"pusher":{"$ref":"#/components/schemas/nullable-simple-user"},"status":{"type":"string"},"updated_at":{"format":"date-time","type":"string"},"url":{"format":"uri","type":"string"}},"required":["url","status","error","pusher","commit","duration","created_at","updated_at"],"title":"Page Build","type":"object"}
```
