# net.atview.experimental.account

> 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.experimental.account)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ycd3zyxa6iru5fiplr3un6nr/net.atview.experimental.account/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ycd3zyxa6iru5fiplr3un6nr/net.atview.experimental.account/examples)

## Definitions

### `net.atview.experimental.account`

**Type**: `record`

Account experiment

**Key**: `tid`

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

### `net.atview.experimental.account#overrides`

**Type**: `object`

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

## Raw Schema

```json
{
  "id": "net.atview.experimental.account",
  "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": {
            "refs": [
              "app.bsky.actor.defs#profileViewDetailed",
              "net.atview.experimental.managedprofile"
            ],
            "type": "union",
            "description": "Reference to a user's profile or managed profile"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "overrides": {
            "ref": "#overrides",
            "type": "ref",
            "description": "Overrides for the profile"
          }
        }
      },
      "description": "Account 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
}
```
