# app.offprint.block.button

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

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.button)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.button/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.block.button/examples)

## Definitions

### `app.offprint.block.button`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `href` | `string` (uri) | Yes | The URL the button links to |
| `text` | `string` | Yes | The button label text |
| `caption` | `string` | No | Optional caption text displayed above the button |

## Raw Schema

```json
{
  "id": "app.offprint.block.button",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "text",
        "href"
      ],
      "properties": {
        "href": {
          "type": "string",
          "format": "uri",
          "required": true,
          "description": "The URL the button links to"
        },
        "text": {
          "type": "string",
          "required": true,
          "description": "The button label text"
        },
        "caption": {
          "type": "string",
          "description": "Optional caption text displayed above the button"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
