# git-tag

From **GitHub v3 REST API**.

Metadata for a Git tag

- Type: `object`

## Properties

### `message`

- Required: true
- Type: `string`
- Example: `Initial public release`

Message describing the purpose of the tag

### `node_id`

- Required: true
- Type: `string`
- Example: `MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==`

### `object`

- Required: true
- Type: `object`

### `sha`

- Required: true
- Type: `string`
- Example: `940bd336248efae0f9ee5bc7b2d5c985887b16ac`

### `tag`

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

Name of the tag

### `tagger`

- Required: true
- Type: `object`

### `url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/repositories/42/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac`

URL for the tag

### `verification`

- Required: false
- Type: `object`

## JSON Schema

```json
{"description":"Metadata for a Git tag","properties":{"message":{"description":"Message describing the purpose of the tag","example":"Initial public release","type":"string"},"node_id":{"example":"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==","type":"string"},"object":{"properties":{"sha":{"type":"string"},"type":{"type":"string"},"url":{"format":"uri","type":"string"}},"required":["sha","type","url"],"type":"object"},"sha":{"example":"940bd336248efae0f9ee5bc7b2d5c985887b16ac","type":"string"},"tag":{"description":"Name of the tag","example":"v0.0.1","type":"string"},"tagger":{"properties":{"date":{"type":"string"},"email":{"type":"string"},"name":{"type":"string"}},"required":["date","email","name"],"type":"object"},"url":{"description":"URL for the tag","example":"https://api.github.com/repositories/42/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac","format":"uri","type":"string"},"verification":{"$ref":"#/components/schemas/verification"}},"required":["sha","url","node_id","tagger","object","tag","message"],"title":"Git Tag","type":"object"}
```
