# app.offprint.component

> 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.component)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.component/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.component/examples)

## Definitions

### `app.offprint.component`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Label to identify this component in the dashboard (e.g. "Newsletter footer"). |
| `content` | `ref` → `app.offprint.content` | Yes | Component body. Same block format as documents. |
| `updatedAt` | `string` (datetime) | No | Last edit timestamp. |
| `publication` | `string` (at-uri) | Yes | Required AT-URI to the `site.standard.publication` this component belongs to. |

## Raw Schema

```json
{
  "id": "app.offprint.component",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "publication",
          "name",
          "content"
        ],
        "properties": {
          "name": {
            "type": "string",
            "description": "Label to identify this component in the dashboard (e.g. \"Newsletter footer\").",
            "maxGraphemes": 200
          },
          "content": {
            "ref": "app.offprint.content",
            "type": "ref",
            "description": "Component body. Same block format as documents."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Last edit timestamp."
          },
          "publication": {
            "type": "string",
            "format": "at-uri",
            "description": "Required AT-URI to the `site.standard.publication` this component belongs to."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
