# town.walls.like

> Published by [walls.town](https://lexicon.garden/identity/did:plc:geruez2v64zoge3l4sztt4kz)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:geruez2v64zoge3l4sztt4kz/town.walls.like)
- [Documentation](https://lexicon.garden/lexicon/did:plc:geruez2v64zoge3l4sztt4kz/town.walls.like/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:geruez2v64zoge3l4sztt4kz/town.walls.like/examples)

## Definitions

### `town.walls.like`

**Type**: `record`

A like on a town.walls.photo record, created by a viewer via the site's OAuth flow. Mirrors app.bsky.feed.like's shape but points at a walls.town photo's strongRef.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | The town.walls.photo record being liked. |
| `createdAt` | `string` (datetime) | Yes | Record creation time. |

## Raw Schema

```json
{
  "id": "town.walls.like",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "The town.walls.photo record being liked."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Record creation time."
          }
        }
      },
      "description": "A like on a town.walls.photo record, created by a viewer via the site's OAuth flow. Mirrors app.bsky.feed.like's shape but points at a walls.town photo's strongRef."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
