# tag

From **GitHub v3 REST API**.

Tag

- Type: `object`

## Properties

### `commit`

- Required: true
- Type: `object`

### `name`

- Required: true
- Type: `string`
- Example: `v0.1`

### `node_id`

- Required: true
- Type: `string`

### `tarball_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://github.com/octocat/Hello-World/tarball/v0.1`

### `zipball_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://github.com/octocat/Hello-World/zipball/v0.1`

## JSON Schema

```json
{"description":"Tag","properties":{"commit":{"properties":{"sha":{"type":"string"},"url":{"format":"uri","type":"string"}},"required":["sha","url"],"type":"object"},"name":{"example":"v0.1","type":"string"},"node_id":{"type":"string"},"tarball_url":{"example":"https://github.com/octocat/Hello-World/tarball/v0.1","format":"uri","type":"string"},"zipball_url":{"example":"https://github.com/octocat/Hello-World/zipball/v0.1","format":"uri","type":"string"}},"required":["name","node_id","commit","zipball_url","tarball_url"],"title":"Tag","type":"object"}
```
