# dev.andreijiroh.labs.blogroll.publication

> Published by [andreijiroh.dev](https://lexicon.garden/identity/did:plc:wcx4c3osbuzrwmxkqdfqygwv)

## Description

A custom lexicon for sharing publications in a blogroll, forked from the site.standard.publication lexicion.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:wcx4c3osbuzrwmxkqdfqygwv/dev.andreijiroh.labs.blogroll.publication)
- [Documentation](https://lexicon.garden/lexicon/did:plc:wcx4c3osbuzrwmxkqdfqygwv/dev.andreijiroh.labs.blogroll.publication/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:wcx4c3osbuzrwmxkqdfqygwv/dev.andreijiroh.labs.blogroll.publication/examples)

## Definitions

### `dev.andreijiroh.labs.blogroll.publication`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` | Yes | Base url for the publication. (ex: https://standard.site). This value will be combined with the document path to construct a full URL for the document. Avoid trailing slashes. |
| `name` | `string` | Yes | Name of the publication. |
| `labels` | `union` | No | Self-label values for this publication. Effectively content warnings. |

### `dev.andreijiroh.labs.blogroll.publication#category`

**Type**: `string`

**Allowed Values**:
- `read`
- `watch`
- `listen`

## Raw Schema

```json
{
  "id": "dev.andreijiroh.labs.blogroll.publication",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "url",
        "name"
      ],
      "properties": {
        "url": {
          "type": "string",
          "description": "Base url for the publication. (ex: https://standard.site). This value will be combined with the document path to construct a full URL for the document. Avoid trailing slashes."
        },
        "name": {
          "type": "string",
          "maxLength": 5000,
          "description": "Name of the publication.",
          "maxGraphemes": 500
        },
        "labels": {
          "refs": [
            "com.atproto.label.defs#selfLabels"
          ],
          "type": "union",
          "description": "Self-label values for this publication. Effectively content warnings."
        }
      }
    },
    "category": {
      "enum": [
        "read",
        "watch",
        "listen"
      ],
      "type": "string"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A custom lexicon for sharing publications in a blogroll, forked from the site.standard.publication lexicion."
}
```
