# short-branch

From **GitHub v3 REST API**.

Short Branch

- Type: `object`

## Properties

### `commit`

- Required: true
- Type: `object`

### `name`

- Required: true
- Type: `string`

### `protected`

- Required: true
- Type: `boolean`

### `protection`

- Required: false
- Type: `object`

Branch Protection

### `protection_url`

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

## JSON Schema

```json
{"description":"Short Branch","properties":{"commit":{"properties":{"sha":{"type":"string"},"url":{"format":"uri","type":"string"}},"required":["sha","url"],"type":"object"},"name":{"type":"string"},"protected":{"type":"boolean"},"protection":{"$ref":"#/components/schemas/branch-protection"},"protection_url":{"format":"uri","type":"string"}},"required":["name","commit","protected"],"title":"Short Branch","type":"object"}
```
