# id.sifa.project.self

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

## Description

A collaborative project record. Lives in the project creator's PDS. TID-keyed so one user can create multiple projects. Supports multiple owners — the creator is the first owner, and any owner can promote core members.

## Links

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

## Definitions

### `id.sifa.project.self`

**Type**: `record`

Record representing a collaborative project. The rkey is a TID, not a literal 'self' — each user can create many projects.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | No | Primary URL of the project (website, repository, etc.). |
| `name` | `string` | Yes | Project name. |
| `avatar` | `blob` | No | Project avatar image. Max 1 MB, PNG or JPEG. |
| `labels` | `union` | No | Self-label values for this project record. |
| `status` | `ref` → `id.sifa.defs#projectStatus` | No | Current project status. |
| `endedAt` | `string` (datetime) | No | Project end date. Omit if ongoing. |
| `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, its goals, and scope. |
| `organizationDid` | `string` (did) | No | DID of the organization this project belongs to, if any. Bridges to future company entities. |

## Raw Schema

```json
{
  "id": "id.sifa.project.self",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Primary URL of the project (website, repository, etc.)."
          },
          "name": {
            "type": "string",
            "maxLength": 2560,
            "minLength": 1,
            "description": "Project name.",
            "maxGraphemes": 256
          },
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "Project avatar image. Max 1 MB, PNG or JPEG."
          },
          "labels": {
            "refs": [
              "com.atproto.label.defs#selfLabels"
            ],
            "type": "union",
            "description": "Self-label values for this project record."
          },
          "status": {
            "ref": "id.sifa.defs#projectStatus",
            "type": "ref",
            "description": "Current project status."
          },
          "endedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Project end date. Omit if ongoing."
          },
          "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, its goals, and scope.",
            "maxGraphemes": 5000
          },
          "organizationDid": {
            "type": "string",
            "format": "did",
            "description": "DID of the organization this project belongs to, if any. Bridges to future company entities."
          }
        }
      },
      "description": "Record representing a collaborative project. The rkey is a TID, not a literal 'self' — each user can create many projects."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A collaborative project record. Lives in the project creator's PDS. TID-keyed so one user can create multiple projects. Supports multiple owners — the creator is the first owner, and any owner can promote core members."
}
```
