# net.atview.experimental.managedprofile

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

## Definitions

### `net.atview.experimental.managedprofile`

**Type**: `record`

Managed profile experiment

**Key**: `tid`

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

## Raw Schema

```json
{
  "id": "net.atview.experimental.managedprofile",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "name",
          "description"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          },
          "avatar": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "maxGraphemes": 256
          }
        }
      },
      "description": "Managed profile experiment"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
