The community.lexicon.interaction.like type (#20)
Some checks failed
Run lex-cli / run-lex-cli (push) Has been cancelled

This commit is contained in:
Nick Gerakines
2025-03-13 08:04:08 -04:00
committed by GitHub
parent 84fa381192
commit 1a8b319c00
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# community.lexicon.interaction
The `community.lexicon.interaction` namespaced identifiers contain high level interactions that occur between identities and other records.

View File

@ -0,0 +1,28 @@
{
"lexicon": 1,
"id": "community.lexicon.interaction.like",
"defs": {
"main": {
"type": "record",
"description": "A 'like' interaction with another AT Protocol record.",
"key": "tid",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"type": "ref",
"ref": "com.atproto.repo.strongRef"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}
}
}