# social.nstar.public.profile

> Published by [nstar.social](https://lexicon.garden/identity/did:web:nstar.social)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:nstar.social/social.nstar.public.profile)
- [Documentation](https://lexicon.garden/lexicon/did:web:nstar.social/social.nstar.public.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:nstar.social/social.nstar.public.profile/examples)

## Definitions

### `social.nstar.public.profile`

**Type**: `record`

A declaration of a NorthStar Social public profile.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No | Small image to be displayed next to posts from account. AKA, 'profile picture' |
| `website` | `string` (uri) | No |  |
| `pronouns` | `string` | No | Free-form pronouns text. |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No | Free-form profile description text. |
| `displayName` | `string` | No |  |

## Raw Schema

```json
{
  "id": "social.nstar.public.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "Small image to be displayed next to posts from account. AKA, 'profile picture'"
          },
          "website": {
            "type": "string",
            "format": "uri"
          },
          "pronouns": {
            "type": "string",
            "maxLength": 200,
            "description": "Free-form pronouns text.",
            "maxGraphemes": 20
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "description": "Free-form profile description text.",
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          }
        }
      },
      "description": "A declaration of a NorthStar Social public profile."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
