# tech.tokimeki.profile

> Published by [tokimeki.blue](https://lexicon.garden/identity/did:plc:4tr5dqti7nmu6g2czpthntak)

✓ This is the authoritative definition for this NSID.

## Description

A universal profile record for AT Protocol services. PDS-independent, open for adoption by any service.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.profile/examples)

## Definitions

### `tech.tokimeki.profile`

**Type**: `record`

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No |  |
| `banner` | `blob` | No |  |
| `website` | `string` (uri) | No |  |
| `pronouns` | `string` | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No |  |
| `displayName` | `string` | No |  |

## Raw Schema

```json
{
  "id": "tech.tokimeki.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000
          },
          "website": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048
          },
          "pronouns": {
            "type": "string",
            "maxLength": 320,
            "maxGraphemes": 32
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A universal profile record for AT Protocol services. PDS-independent, open for adoption by any service."
}
```
