# games.gamesgamesgamesgames.actor.putProfile

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

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.actor.putProfile)
- [Documentation](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.actor.putProfile/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.actor.putProfile/examples)

## Definitions

### `games.gamesgamesgamesgames.actor.putProfile`

**Type**: `procedure`

Create or update the authenticated user's actor profile.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No |  |
| `pronouns` | `string` | No |  |
| `websites` | `array` | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No |  |
| `displayName` | `string` | No |  |
| `descriptionFacets` | `array` | No | Annotations of text (mentions, URLs, hashtags, etc) |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` | Yes |  |
| `uri` | `string` (at-uri) | Yes |  |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.actor.putProfile",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "properties": {
            "avatar": {
              "type": "blob",
              "accept": [
                "image/png",
                "image/jpeg"
              ],
              "maxSize": 10000000
            },
            "pronouns": {
              "type": "string",
              "maxLength": 200
            },
            "websites": {
              "type": "array",
              "items": {
                "ref": "games.gamesgamesgamesgames.defs#website",
                "type": "ref"
              }
            },
            "createdAt": {
              "type": "string",
              "format": "datetime"
            },
            "description": {
              "type": "string",
              "maxLength": 3000
            },
            "displayName": {
              "type": "string",
              "maxLength": 640
            },
            "descriptionFacets": {
              "type": "array",
              "items": {
                "ref": "app.bsky.richtext.facet",
                "type": "ref"
              },
              "description": "Annotations of text (mentions, URLs, hashtags, etc)"
            }
          }
        },
        "encoding": "application/json"
      },
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "uri",
            "cid"
          ],
          "properties": {
            "cid": {
              "type": "string"
            },
            "uri": {
              "type": "string",
              "format": "at-uri"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Create or update the authenticated user's actor profile."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
