# biz.catgirl.pat.video

> Published by [luna.pds.devcat.one](https://lexicon.garden/identity/did:plc:qij7bjzgwlshfr2fljkjd7gc)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qij7bjzgwlshfr2fljkjd7gc/biz.catgirl.pat.video)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qij7bjzgwlshfr2fljkjd7gc/biz.catgirl.pat.video/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qij7bjzgwlshfr2fljkjd7gc/biz.catgirl.pat.video/examples)

## Definitions

### `biz.catgirl.pat.video`

**Type**: `record`

A reference to a video hosted by a PeerTube instance.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | No |  |
| `source` | `object` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `thumbnail` | `string` (uri) | No |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "biz.catgirl.pat.video",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "source",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 1000
          },
          "source": {
            "type": "object",
            "required": [
              "url",
              "instance",
              "id"
            ],
            "properties": {
              "id": {
                "type": "string",
                "maxLength": 64,
                "minLength": 1
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "instance": {
                "type": "string",
                "format": "uri"
              }
            }
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "thumbnail": {
            "type": "string",
            "format": "uri"
          },
          "description": {
            "type": "string",
            "maxLength": 10000
          }
        }
      },
      "description": "A reference to a video hosted by a PeerTube instance."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
