# social.lexical.now.update

> Published by [lexical.social](https://lexicon.garden/identity/did:plc:k6xccphpraz5nylacjrdby3s)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:k6xccphpraz5nylacjrdby3s/social.lexical.now.update)
- [Documentation](https://lexicon.garden/lexicon/did:plc:k6xccphpraz5nylacjrdby3s/social.lexical.now.update/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:k6xccphpraz5nylacjrdby3s/social.lexical.now.update/examples)

## Definitions

### `social.lexical.now.update#item`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes |  |
| `facets` | `array` | No |  |

### `social.lexical.now.update`

**Type**: `record`

A now page update. Represents what someone is currently focused on, working on, reading, or thinking about.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `sections` | `array` | Yes |  |
| `publishedAt` | `string` (datetime) | Yes |  |

### `social.lexical.now.update#section`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `items` | `array` | Yes |  |
| `heading` | `string` | No |  |

## Raw Schema

```json
{
  "id": "social.lexical.now.update",
  "defs": {
    "item": {
      "type": "object",
      "required": [
        "text"
      ],
      "properties": {
        "text": {
          "type": "string",
          "nullable": false,
          "required": true,
          "maxLength": 1024,
          "maxGraphemes": 512
        },
        "facets": {
          "type": "array",
          "items": {
            "ref": "social.lexical.richtext.facet",
            "type": "ref",
            "nullable": false
          },
          "nullable": false,
          "required": false
        }
      }
    },
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "publishedAt",
          "sections"
        ],
        "properties": {
          "sections": {
            "type": "array",
            "items": {
              "ref": "#section",
              "type": "ref",
              "nullable": false
            },
            "nullable": false,
            "required": true,
            "maxLength": 8,
            "minLength": 1
          },
          "publishedAt": {
            "type": "string",
            "format": "datetime",
            "nullable": false,
            "required": true
          }
        }
      },
      "description": "A now page update. Represents what someone is currently focused on, working on, reading, or thinking about."
    },
    "section": {
      "type": "object",
      "required": [
        "items"
      ],
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "ref": "#item",
            "type": "ref",
            "nullable": false
          },
          "nullable": false,
          "required": true,
          "maxLength": 8,
          "minLength": 1
        },
        "heading": {
          "type": "string",
          "nullable": false,
          "required": false,
          "maxLength": 128,
          "maxGraphemes": 64
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
