# at.askimut.profile

> Published by [ask.3615etienne.com](https://lexicon.garden/identity/did:plc:7yidlxzkmtk2d5zwljdlhg3f)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.profile/examples)

## Definitions

### `at.askimut.profile`

**Type**: `record`

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No | Profile avatar image |
| `description` | `string` | No | Profile description or bio |
| `displayName` | `string` | No | Display name for the user |
| `questionsOpen` | `boolean` | Yes | Whether the user is accepting questions |
| `amaTagDiscovery` | `boolean` | No | Discover AMA Roots from first-level posts tagged #AMA (facet only) |
| `amaUrlDiscovery` | `boolean` | No | Discover AMA Roots from first-level posts linking this user's Askimut profile |
| `maxPendingPerAsker` | `integer` | No | Maximum concurrent pending questions per asker; 0 = unlimited; default 1 when absent |

## Raw Schema

```json
{
  "id": "at.askimut.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "questionsOpen"
        ],
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/gif",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "Profile avatar image"
          },
          "description": {
            "type": "string",
            "maxLength": 300,
            "description": "Profile description or bio"
          },
          "displayName": {
            "type": "string",
            "maxLength": 64,
            "description": "Display name for the user"
          },
          "questionsOpen": {
            "type": "boolean",
            "description": "Whether the user is accepting questions"
          },
          "amaTagDiscovery": {
            "type": "boolean",
            "description": "Discover AMA Roots from first-level posts tagged #AMA (facet only)"
          },
          "amaUrlDiscovery": {
            "type": "boolean",
            "description": "Discover AMA Roots from first-level posts linking this user's Askimut profile"
          },
          "maxPendingPerAsker": {
            "type": "integer",
            "minimum": 0,
            "description": "Maximum concurrent pending questions per asker; 0 = unlimited; default 1 when absent"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
