# artifact

From **GitHub v3 REST API**.

An artifact

- Type: `object`

## Properties

### `archive_download_url`

- Required: true
- Type: `string`
- Example: `https://api.github.com/repos/github/hello-world/actions/artifacts/5/zip`

### `created_at`

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

### `expired`

- Required: true
- Type: `boolean`

Whether or not the artifact has expired.

### `expires_at`

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

### `id`

- Required: true
- Type: `integer`
- Example: `5`

### `name`

- Required: true
- Type: `string`
- Example: `AdventureWorks.Framework`

The name of the artifact.

### `node_id`

- Required: true
- Type: `string`
- Example: `MDEwOkNoZWNrU3VpdGU1`

### `size_in_bytes`

- Required: true
- Type: `integer`
- Example: `12345`

The size in bytes of the artifact.

### `updated_at`

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

### `url`

- Required: true
- Type: `string`
- Example: `https://api.github.com/repos/github/hello-world/actions/artifacts/5`

## JSON Schema

```json
{"description":"An artifact","properties":{"archive_download_url":{"example":"https://api.github.com/repos/github/hello-world/actions/artifacts/5/zip","type":"string"},"created_at":{"format":"date-time","nullable":true,"type":"string"},"expired":{"description":"Whether or not the artifact has expired.","type":"boolean"},"expires_at":{"format":"date-time","nullable":true,"type":"string"},"id":{"example":5,"type":"integer"},"name":{"description":"The name of the artifact.","example":"AdventureWorks.Framework","type":"string"},"node_id":{"example":"MDEwOkNoZWNrU3VpdGU1","type":"string"},"size_in_bytes":{"description":"The size in bytes of the artifact.","example":12345,"type":"integer"},"updated_at":{"format":"date-time","nullable":true,"type":"string"},"url":{"example":"https://api.github.com/repos/github/hello-world/actions/artifacts/5","type":"string"}},"required":["id","node_id","name","size_in_bytes","url","archive_download_url","expired","created_at","expires_at","updated_at"],"title":"Artifact","type":"object"}
```
