# place.stream.like

> Published by [did:web:stream.place](https://lexicon.garden/identity/did:web:stream.place)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.like)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.like/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.like/examples)

## Definitions

### `place.stream.like`

**Type**: `record`

Record indicating a like on some other record (e.g. a video or a comment).

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (at-uri) | Yes | AT-URI of the record being liked (e.g. a place.stream.video or place.stream.vod.comment). |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this like was created. |

## Raw Schema

```json
{
  "id": "place.stream.like",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the record being liked (e.g. a place.stream.video or place.stream.vod.comment)."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this like was created."
          }
        }
      },
      "description": "Record indicating a like on some other record (e.g. a video or a comment)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
