# com.chrisvanderloo.project

> Published by [chrisvanderloo.com](https://lexicon.garden/identity/did:plc:3u26lcxyhiyq3ygsfyrc7xx2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:3u26lcxyhiyq3ygsfyrc7xx2/com.chrisvanderloo.project)
- [Documentation](https://lexicon.garden/lexicon/did:plc:3u26lcxyhiyq3ygsfyrc7xx2/com.chrisvanderloo.project/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:3u26lcxyhiyq3ygsfyrc7xx2/com.chrisvanderloo.project/examples)

## Definitions

### `com.chrisvanderloo.project`

**Type**: `record`

A project for display on my website.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `link` | `string` (uri) | No |  |
| `repo` | `string` (uri) | Yes |  |
| `title` | `string` | Yes |  |
| `language` | `string` | Yes |  |
| `description` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "com.chrisvanderloo.project",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "description",
          "repo",
          "language"
        ],
        "properties": {
          "link": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048
          },
          "repo": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048
          },
          "title": {
            "type": "string",
            "maxLength": 120
          },
          "language": {
            "type": "string",
            "maxLength": 64
          },
          "description": {
            "type": "string",
            "maxLength": 2048
          }
        }
      },
      "description": "A project for display on my website."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
