# games.atplay.game.like

> Published by [atplay.games](https://lexicon.garden/identity/did:plc:xawtkr77srkxlwhxjf7whbml)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xawtkr77srkxlwhxjf7whbml/games.atplay.game.like)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xawtkr77srkxlwhxjf7whbml/games.atplay.game.like/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xawtkr77srkxlwhxjf7whbml/games.atplay.game.like/examples)

## Definitions

### `games.atplay.game.like`

**Type**: `record`

Record declaring a like of a game release.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | The game release being liked. It implies, but doesn't assert, a linking of any subsequent version of the game. |
| `createdAt` | `string` (datetime) | Yes | When the like was created. |

## Raw Schema

```json
{
  "id": "games.atplay.game.like",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "The game release being liked. It implies, but doesn't assert, a linking of any subsequent version of the game."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the like was created."
          }
        }
      },
      "description": "Record declaring a like of a game release."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
