# release-asset

From **GitHub v3 REST API**.

Data related to a release.

- Type: `object`

## Properties

### `browser_download_url`

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

### `content_type`

- Required: true
- Type: `string`

### `created_at`

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

### `download_count`

- Required: true
- Type: `integer`

### `id`

- Required: true
- Type: `integer`

### `label`

- Required: true
- Type: `string`
- Nullable: true

### `name`

- Required: true
- Type: `string`
- Example: `Team Environment`

The file name of the asset.

### `node_id`

- Required: true
- Type: `string`

### `size`

- Required: true
- Type: `integer`

### `state`

- Required: true
- Type: `string`
- Allowed values: `"uploaded"`, `"open"`

State of the release asset.

### `updated_at`

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

### `uploader`

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

Simple User

### `url`

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

## JSON Schema

```json
{"description":"Data related to a release.","properties":{"browser_download_url":{"format":"uri","type":"string"},"content_type":{"type":"string"},"created_at":{"format":"date-time","type":"string"},"download_count":{"type":"integer"},"id":{"type":"integer"},"label":{"nullable":true,"type":"string"},"name":{"description":"The file name of the asset.","example":"Team Environment","type":"string"},"node_id":{"type":"string"},"size":{"type":"integer"},"state":{"description":"State of the release asset.","enum":["uploaded","open"],"type":"string"},"updated_at":{"format":"date-time","type":"string"},"uploader":{"$ref":"#/components/schemas/nullable-simple-user"},"url":{"format":"uri","type":"string"}},"required":["id","name","content_type","size","state","url","node_id","download_count","label","uploader","browser_download_url","created_at","updated_at"],"title":"Release Asset","type":"object"}
```
