place.stream.chat.profile

did:web:stream.place

Documentation

Record containing customizations for a user's chat profile.

main record

Record containing customizations for a user's chat profile.

Record Key literal:self Fixed literal value

Properties

color ref #color Optional

No description available.

selfLabels array of ref #selfLabel Optional

Self-applied labels for this profile, e.g. 'bot'.

maxLength: 10 items
View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "properties": {
      "color": {
        "ref": "#color",
        "type": "ref"
      },
      "badges": {
        "ref": "#badgeSelections",
        "type": "ref",
        "description": "Badge selections for display in chat."
      },
      "selfLabels": {
        "type": "array",
        "items": {
          "ref": "#selfLabel",
          "type": "ref"
        },
        "maxLength": 10,
        "description": "Self-applied labels for this profile, e.g. 'bot'."
      }
    }
  },
  "description": "Record containing customizations for a user's chat profile."
}
badgeSelections object

Selected badges for display in chat, organized by slot.

Properties

streamer array of ref#streamerBadgeSelection Optional

Selected streamer-issued badges, one per streamer channel.

maxLength: 20 items
View raw schema
{
  "type": "object",
  "properties": {
    "global": {
      "ref": "com.atproto.repo.strongRef",
      "type": "ref",
      "description": "Selected globally-issued badge (e.g. event badge)."
    },
    "streamer": {
      "type": "array",
      "items": {
        "ref": "#streamerBadgeSelection",
        "type": "ref"
      },
      "maxLength": 20,
      "description": "Selected streamer-issued badges, one per streamer channel."
    }
  },
  "description": "Selected badges for display in chat, organized by slot."
}
color object

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

Properties

blue integer Required

No description available.

minimum: 0maximum: 255
green integer Required

No description available.

minimum: 0maximum: 255
red integer Required

No description available.

minimum: 0maximum: 255
View raw schema
{
  "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"
}
selfLabel string

Label that a user can apply to their own profile.

Known Values (other values may be valid)
bot
View raw schema
{
  "type": "string",
  "description": "Label that a user can apply to their own profile.",
  "knownValues": [
    "bot"
  ]
}
streamerBadgeSelection object

A selected badge for a specific streamer's channel.

Properties

streamer string did Required

DID of the streamer whose channel this selection applies to.

View raw schema
{
  "type": "object",
  "required": [
    "streamer",
    "badge"
  ],
  "properties": {
    "badge": {
      "ref": "com.atproto.repo.strongRef",
      "type": "ref",
      "description": "Strong reference to the selected place.stream.badge.issuance record."
    },
    "streamer": {
      "type": "string",
      "format": "did",
      "description": "DID of the streamer whose channel this selection applies to."
    }
  },
  "description": "A selected badge for a specific streamer's channel."
}

Lexicon Garden

@