Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.actor.status

bsky-lexicons.bsky.social

Documentation

main record

A declaration of a Bluesky account status.

Record Key literal:self Fixed literal value

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

durationMinutes integer Optional

The duration of the status in minutes. Applications can choose to impose minimum and maximum limits.

minimum: 1
status string Required

The status for the account.

Known values: app.bsky.actor.status#live
View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "status",
      "createdAt"
    ],
    "properties": {
      "embed": {
        "refs": [
          "app.bsky.embed.external"
        ],
        "type": "union",
        "description": "An optional embed associated with the status."
      },
      "status": {
        "type": "string",
        "description": "The status for the account.",
        "knownValues": [
          "app.bsky.actor.status#live"
        ]
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "durationMinutes": {
        "type": "integer",
        "minimum": 1,
        "description": "The duration of the status in minutes. Applications can choose to impose minimum and maximum limits."
      }
    }
  },
  "description": "A declaration of a Bluesky account status."
}
live token

Advertises an account as currently offering live content.

Referenceapp.bsky.actor.status#live

Tokens have no data representation. Use the reference string as a value.

View raw schema
{
  "type": "token",
  "description": "Advertises an account as currently offering live content."
}

Lexicon Garden

@