# combined-commit-status

From **GitHub v3 REST API**.

Combined Commit Status

- Type: `object`

## Properties

### `commit_url`

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

### `repository`

- Required: true
- Type: `object`

Minimal Repository

### `sha`

- Required: true
- Type: `string`

### `state`

- Required: true
- Type: `string`

### `statuses`

- Required: true
- Type: `array`

### `total_count`

- Required: true
- Type: `integer`

### `url`

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

## JSON Schema

```json
{"description":"Combined Commit Status","properties":{"commit_url":{"format":"uri","type":"string"},"repository":{"$ref":"#/components/schemas/minimal-repository"},"sha":{"type":"string"},"state":{"type":"string"},"statuses":{"items":{"$ref":"#/components/schemas/simple-commit-status"},"type":"array"},"total_count":{"type":"integer"},"url":{"format":"uri","type":"string"}},"required":["state","sha","total_count","statuses","repository","commit_url","url"],"title":"Combined Commit Status","type":"object"}
```
