# place.stream.chat.profile

> Published by [did:web:longos.iameli.link](https://lexicon.garden/identity/did:web:longos.iameli.link)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.chat.profile)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.chat.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.chat.profile/examples)

## Definitions

### `place.stream.chat.profile`

**Type**: `record`

Record containing customizations for a user's chat profile.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `color` | `ref` → `#color` | No |  |

### `place.stream.chat.profile#color`

**Type**: `object`

Customizations for the color of a user's name in chat

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `red` | `integer` | Yes |  |
| `blue` | `integer` | Yes |  |
| `green` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "place.stream.chat.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "color": {
            "ref": "#color",
            "type": "ref"
          }
        }
      },
      "description": "Record containing customizations for a user's chat profile."
    },
    "color": {
      "type": "object",
      "required": [
        "red",
        "green",
        "blue"
      ],
      "properties": {
        "red": {
          "type": "integer",
          "maximum": 255,
          "minimum": 0
        },
        "blue": {
          "type": "integer",
          "maximum": 255,
          "minimum": 0
        },
        "green": {
          "type": "integer",
          "maximum": 255,
          "minimum": 0
        }
      },
      "description": "Customizations for the color of a user's name in chat"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
