A community based topic aggregation platform built on atproto

chore(lexicon): remove membership.json file

This file was already removed in the feature branch but needs to be
cleaned up from the working directory.

Membership tracking is AppView-only data, not atProto records.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

Changed files
-38
internal
atproto
lexicon
social
coves
-38
internal/atproto/lexicon/social/coves/actor/membership.json
···
-
{
-
"lexicon": 1,
-
"id": "social.coves.actor.membership",
-
"defs": {
-
"main": {
-
"type": "record",
-
"description": "Membership in a community",
-
"key": "tid",
-
"record": {
-
"type": "object",
-
"required": ["community", "reputation", "createdAt"],
-
"properties": {
-
"community": {
-
"type": "string",
-
"format": "at-identifier",
-
"description": "DID or handle of the community"
-
},
-
"reputation": {
-
"type": "integer",
-
"minimum": 0,
-
"default": 0,
-
"description": "Reputation score within the community"
-
},
-
"createdAt": {
-
"type": "string",
-
"format": "datetime",
-
"description": "When the user's membership started"
-
},
-
"endedAt": {
-
"type": "string",
-
"format": "datetime",
-
"description": "When the membership ended (null if current)"
-
}
-
}
-
}
-
}
-
}
-
}