# net.atview.account.actor

> Published by [atview.net](https://lexicon.garden/identity/did:plc:ycd3zyxa6iru5fiplr3un6nr)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ycd3zyxa6iru5fiplr3un6nr/net.atview.account.actor)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ycd3zyxa6iru5fiplr3un6nr/net.atview.account.actor/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ycd3zyxa6iru5fiplr3un6nr/net.atview.account.actor/examples)

## Definitions

### `net.atview.account.actor`

**Type**: `record`

Account Actor experiment

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `type` | `string` | No | Type of the account |
| `actor` | `string` (at-uri) | Yes | AtUri of a user's profile or managed profile |
| `createdAt` | `string` (datetime) | Yes |  |
| `overrides` | `ref` → `#overrides` | No | Overrides for the profile |

### `net.atview.account.actor#overrides`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | No |  |
| `avatar` | `string` (uri) | No |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "net.atview.account.actor",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "actor"
        ],
        "properties": {
          "type": {
            "type": "string",
            "default": "user",
            "maxLength": 640,
            "description": "Type of the account",
            "knownValues": [
              "project",
              "user",
              "organisation",
              "collective"
            ],
            "maxGraphemes": 64
          },
          "actor": {
            "type": "string",
            "format": "at-uri",
            "description": "AtUri of a user's profile or managed profile"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "overrides": {
            "ref": "#overrides",
            "type": "ref",
            "description": "Overrides for the profile"
          }
        }
      },
      "description": "Account Actor experiment"
    },
    "overrides": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        },
        "avatar": {
          "type": "string",
          "format": "uri",
          "maxLength": 2048
        },
        "description": {
          "type": "string",
          "maxLength": 2560,
          "maxGraphemes": 256
        }
      },
      "additionalProperties": false
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
