# tv.kikbak.like

> Published by [kikbak.tv](https://lexicon.garden/identity/did:plc:xviypsvu5bithks2ghmt7qjc)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xviypsvu5bithks2ghmt7qjc/tv.kikbak.like)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xviypsvu5bithks2ghmt7qjc/tv.kikbak.like/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xviypsvu5bithks2ghmt7qjc/tv.kikbak.like/examples)

## Definitions

### `tv.kikbak.like`

**Type**: `record`

Simple like record pointing at one YouTube video ID.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes |  |
| `youtubeVideoId` | `string` | Yes | YouTube video id for the liked video. |

## Raw Schema

```json
{
  "id": "tv.kikbak.like",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "youtubeVideoId",
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "youtubeVideoId": {
            "type": "string",
            "maxLength": 32,
            "description": "YouTube video id for the liked video."
          }
        }
      },
      "description": "Simple like record pointing at one YouTube video ID."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
