# page.corvus.project

> Published by [corvus.page](https://lexicon.garden/identity/did:plc:3qc4cbzcriye72qqqodeda26)

✓ This is the authoritative definition for this NSID.

## Description

A project is a root document block with a list of collaborators

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:3qc4cbzcriye72qqqodeda26/page.corvus.project)
- [Documentation](https://lexicon.garden/lexicon/did:plc:3qc4cbzcriye72qqqodeda26/page.corvus.project/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:3qc4cbzcriye72qqqodeda26/page.corvus.project/examples)

## Definitions

### `page.corvus.project`

**Type**: `record`

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `blocks` | `array` | Yes |  |
| `createdAt` | `string` (datetime) | Yes | ISO 8601 datetime the project was created |

## Raw Schema

```json
{
  "id": "page.corvus.project",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "blocks",
          "createdAt"
        ],
        "properties": {
          "blocks": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            }
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "ISO 8601 datetime the project was created"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A project is a root document block with a list of collaborators"
}
```
