# id.sifa.profile.project

> Published by [sifa.id](https://lexicon.garden/identity/did:plc:2f2ahswozqy4v5lvu676375y)

✓ This is the authoritative definition for this NSID.

## Description

A project the user has worked on.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.profile.project)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.profile.project/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.profile.project/examples)

## Definitions

### `id.sifa.profile.project`

**Type**: `record`

Record representing a single project.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | No | URL of the project (website, repository, demo, etc.). |
| `name` | `string` | Yes | Project name. |
| `labels` | `union` | No | Self-label values for this project record. |
| `endedAt` | `string` (datetime) | No | Project end date. Omit if ongoing. |
| `position` | `ref` → `com.atproto.repo.strongRef` | No | Reference to the associated id.sifa.profile.position record, if applicable. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this record was originally created. |
| `startedAt` | `string` (datetime) | No | Project start date. |
| `description` | `string` | No | Description of the project, the user's role, and outcomes. |

## Raw Schema

```json
{
  "id": "id.sifa.profile.project",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "URL of the project (website, repository, demo, etc.)."
          },
          "name": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "description": "Project name.",
            "maxGraphemes": 100
          },
          "labels": {
            "refs": [
              "com.atproto.label.defs#selfLabels"
            ],
            "type": "union",
            "description": "Self-label values for this project record."
          },
          "endedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Project end date. Omit if ongoing."
          },
          "position": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Reference to the associated id.sifa.profile.position record, if applicable."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this record was originally created."
          },
          "startedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Project start date."
          },
          "description": {
            "type": "string",
            "maxLength": 50000,
            "description": "Description of the project, the user's role, and outcomes.",
            "maxGraphemes": 5000
          }
        }
      },
      "description": "Record representing a single project."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A project the user has worked on."
}
```
