# project-card

From **GitHub v3 REST API**.

Project cards represent a scope of work.

- Type: `object`

## Properties

### `archived`

- Required: false
- Type: `boolean`
- Example: `false`

Whether or not the card is archived

### `column_name`

- Required: false
- Type: `string`

### `column_url`

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

### `content_url`

- Required: false
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/repos/api-playground/projects-test/issues/3`

### `created_at`

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

### `creator`

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

Simple User

### `id`

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

The project card's ID

### `node_id`

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

### `note`

- Required: true
- Type: `string`
- Nullable: true
- Example: `Add payload for delete Project column`

### `project_id`

- Required: false
- Type: `string`

### `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:20:22Z`

### `url`

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

## JSON Schema

```json
{"description":"Project cards represent a scope of work.","properties":{"archived":{"description":"Whether or not the card is archived","example":false,"type":"boolean"},"column_name":{"type":"string"},"column_url":{"example":"https://api.github.com/projects/columns/367","format":"uri","type":"string"},"content_url":{"example":"https://api.github.com/repos/api-playground/projects-test/issues/3","format":"uri","type":"string"},"created_at":{"example":"2016-09-05T14:21:06Z","format":"date-time","type":"string"},"creator":{"$ref":"#/components/schemas/nullable-simple-user"},"id":{"description":"The project card's ID","example":42,"type":"integer"},"node_id":{"example":"MDExOlByb2plY3RDYXJkMTQ3OA==","type":"string"},"note":{"example":"Add payload for delete Project column","nullable":true,"type":"string"},"project_id":{"type":"string"},"project_url":{"example":"https://api.github.com/projects/120","format":"uri","type":"string"},"updated_at":{"example":"2016-09-05T14:20:22Z","format":"date-time","type":"string"},"url":{"example":"https://api.github.com/projects/columns/cards/1478","format":"uri","type":"string"}},"required":["id","node_id","note","url","column_url","project_url","creator","created_at","updated_at"],"title":"Project Card","type":"object"}
```
