# support.supper.actor.project

> Published by [supper.support](https://lexicon.garden/identity/did:plc:mcsqdltevtjpu26xthzzmm2l)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.actor.project)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.actor.project/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.actor.project/examples)

## Definitions

### `support.supper.actor.project`

**Type**: `record`

Supper project showcase entry stored on the user's PDS. Creators list the projects they are working on with a title, description, and link.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | No | Link to the project. |
| `title` | `string` | Yes | Name of the project. |
| `atHandle` | `string` (handle) | No | Optional AT Protocol handle used as a display/link hint for the project. This is not a canonical account reference. |
| `createdAt` | `string` (datetime) | Yes | When this project entry was first written. |
| `description` | `string` | No | Short description of the project. |

## Raw Schema

```json
{
  "id": "support.supper.actor.project",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "createdAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Link to the project."
          },
          "title": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "description": "Name of the project.",
            "maxGraphemes": 100
          },
          "atHandle": {
            "type": "string",
            "format": "handle",
            "description": "Optional AT Protocol handle used as a display/link hint for the project. This is not a canonical account reference."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this project entry was first written."
          },
          "description": {
            "type": "string",
            "maxLength": 5000,
            "description": "Short description of the project.",
            "maxGraphemes": 500
          }
        }
      },
      "description": "Supper project showcase entry stored on the user's PDS. Creators list the projects they are working on with a title, description, and link."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
