# workflow

From **GitHub v3 REST API**.

A GitHub Actions workflow

- Type: `object`

## Properties

### `badge_url`

- Required: true
- Type: `string`
- Example: `https://github.com/actions/setup-ruby/workflows/CI/badge.svg`

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2019-12-06T14:20:20.000Z`

### `deleted_at`

- Required: false
- Type: `string`
- Format: `date-time`
- Example: `2019-12-06T14:20:20.000Z`

### `html_url`

- Required: true
- Type: `string`
- Example: `https://github.com/actions/setup-ruby/blob/master/.github/workflows/ruby.yaml`

### `id`

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

### `name`

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

### `node_id`

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

### `path`

- Required: true
- Type: `string`
- Example: `ruby.yaml`

### `state`

- Required: true
- Type: `string`
- Example: `active`
- Allowed values: `"active"`, `"deleted"`, `"disabled_fork"`, `"disabled_inactivity"`, `"disabled_manually"`

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2019-12-06T14:20:20.000Z`

### `url`

- Required: true
- Type: `string`
- Example: `https://api.github.com/repos/actions/setup-ruby/workflows/5`

## JSON Schema

```json
{"description":"A GitHub Actions workflow","properties":{"badge_url":{"example":"https://github.com/actions/setup-ruby/workflows/CI/badge.svg","type":"string"},"created_at":{"example":"2019-12-06T14:20:20.000Z","format":"date-time","type":"string"},"deleted_at":{"example":"2019-12-06T14:20:20.000Z","format":"date-time","type":"string"},"html_url":{"example":"https://github.com/actions/setup-ruby/blob/master/.github/workflows/ruby.yaml","type":"string"},"id":{"example":5,"type":"integer"},"name":{"example":"CI","type":"string"},"node_id":{"example":"MDg6V29ya2Zsb3cxMg==","type":"string"},"path":{"example":"ruby.yaml","type":"string"},"state":{"enum":["active","deleted","disabled_fork","disabled_inactivity","disabled_manually"],"example":"active","type":"string"},"updated_at":{"example":"2019-12-06T14:20:20.000Z","format":"date-time","type":"string"},"url":{"example":"https://api.github.com/repos/actions/setup-ruby/workflows/5","type":"string"}},"required":["id","node_id","name","path","state","url","html_url","badge_url","created_at","updated_at"],"title":"Workflow","type":"object"}
```
