The Appview for the kipclip.com atproto bookmarking service

Add lexicon schema for tag records

Include the AT Protocol lexicon definition for com.kipclip.tag records. This schema defines the structure for user-created tags used to organize bookmarks.

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

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

Changed files
+26
lexicons
com
kipclip
+26
lexicons/com/kipclip/tag.json
··· 1 + { 2 + "lexicon": 1, 3 + "id": "com.kipclip.tag", 4 + "description": "A user-defined tag for organizing bookmarks", 5 + "defs": { 6 + "main": { 7 + "type": "record", 8 + "key": "tid", 9 + "record": { 10 + "type": "object", 11 + "required": ["value", "createdAt"], 12 + "properties": { 13 + "value": { 14 + "type": "string", 15 + "maxLength": 64, 16 + "description": "The tag text" 17 + }, 18 + "createdAt": { 19 + "type": "datetime", 20 + "description": "Timestamp when tag was created" 21 + } 22 + } 23 + } 24 + } 25 + } 26 + }