# store.88x31.button

> Published by [moth11.net](https://lexicon.garden/identity/did:plc:25z6ogppprfvijcnqo2fsfce)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:25z6ogppprfvijcnqo2fsfce/store.88x31.button)
- [Documentation](https://lexicon.garden/lexicon/did:plc:25z6ogppprfvijcnqo2fsfce/store.88x31.button/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:25z6ogppprfvijcnqo2fsfce/store.88x31.button/examples)

## Definitions

### `store.88x31.button`

**Type**: `record`

Record containing an 88x31 button.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `alt` | `string` | No | Alt text description of the button, for accessibility. |
| `blob` | `blob` | Yes |  |
| `href` | `string` | No | Hypertext reference (link) for the button. |
| `title` | `string` | No | Title text description of the button, for flavor. |
| `postedAt` | `string` (datetime) | Yes | Client-declared timestamp when this button was originally created. |

## Raw Schema

```json
{
  "id": "store.88x31.button",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "blob",
          "postedAt"
        ],
        "properties": {
          "alt": {
            "type": "string",
            "maxLength": 3000,
            "description": "Alt text description of the button, for accessibility.",
            "maxGraphemes": 300
          },
          "blob": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "maxSize": 1000000
          },
          "href": {
            "type": "string",
            "maxLength": 3000,
            "description": "Hypertext reference (link) for the button.",
            "maxGraphemes": 300
          },
          "title": {
            "type": "string",
            "maxLength": 3000,
            "description": "Title text description of the button, for flavor.",
            "maxGraphemes": 300
          },
          "postedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this button was originally created."
          }
        }
      },
      "description": "Record containing an 88x31 button."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
