Skip to content

place.stream.like

Lexicon Version: 1

Type: record

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

Record Key: tid

Record Properties:

NameTypeReq’dDescriptionConstraints
subjectstringAT-URI of the record being liked (e.g. a place.stream.video or place.stream.vod.comment).Format: at-uri
createdAtstringClient-declared timestamp when this like was created.Format: datetime

{
"lexicon": 1,
"id": "place.stream.like",
"defs": {
"main": {
"type": "record",
"key": "tid",
"description": "Record indicating a like on some other record (e.g. a video or a comment).",
"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."
}
}
}
}
}
}