# project-column

From **GitHub v3 REST API**.

Project columns contain cards of work.

- Type: `object`

## Properties

### `cards_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/projects/columns/367/cards`

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2016-09-05T14:18:44Z`

### `id`

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

The unique identifier of the project column

### `name`

- Required: true
- Type: `string`
- Example: `Remaining tasks`

Name of the project column

### `node_id`

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

### `project_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/projects/120`

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2016-09-05T14:22:28Z`

### `url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/projects/columns/367`

## JSON Schema

```json
{"description":"Project columns contain cards of work.","properties":{"cards_url":{"example":"https://api.github.com/projects/columns/367/cards","format":"uri","type":"string"},"created_at":{"example":"2016-09-05T14:18:44Z","format":"date-time","type":"string"},"id":{"description":"The unique identifier of the project column","example":42,"type":"integer"},"name":{"description":"Name of the project column","example":"Remaining tasks","type":"string"},"node_id":{"example":"MDEzOlByb2plY3RDb2x1bW4zNjc=","type":"string"},"project_url":{"example":"https://api.github.com/projects/120","format":"uri","type":"string"},"updated_at":{"example":"2016-09-05T14:22:28Z","format":"date-time","type":"string"},"url":{"example":"https://api.github.com/projects/columns/367","format":"uri","type":"string"}},"required":["id","node_id","url","project_url","cards_url","name","created_at","updated_at"],"title":"Project Column","type":"object"}
```
