# im.flushing.right.now

> Published by [flushes.app](https://lexicon.garden/identity/did:plc:omyqslmybfah7a5shue7hnqz)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:omyqslmybfah7a5shue7hnqz/im.flushing.right.now)
- [Documentation](https://lexicon.garden/lexicon/did:plc:omyqslmybfah7a5shue7hnqz/im.flushing.right.now/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:omyqslmybfah7a5shue7hnqz/im.flushing.right.now/examples)

## Definitions

### `im.flushing.right.now`

**Type**: `record`

A record of a user's flushing status update.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The status text. |
| `emoji` | `string` | Yes | A single emoji character representing the status. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this status was created. |

## Raw Schema

```json
{
  "id": "im.flushing.right.now",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "emoji",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 236,
            "description": "The status text.",
            "maxGraphemes": 59
          },
          "emoji": {
            "type": "string",
            "description": "A single emoji character representing the status.",
            "maxGraphemes": 1
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this status was created."
          }
        }
      },
      "description": "A record of a user's flushing status update."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
