This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

stigmergic / lexicons / network / cosmik / collection.json
1.6 kB 52 lines
1{ 2 "lexicon": 1, 3 "id": "network.cosmik.collection", 4 "description": "A collection of saved links and notes in Semble.", 5 "defs": { 6 "main": { 7 "type": "record", 8 "description": "A named collection of cards in Semble. Collections can be open or closed and support collaborators.", 9 "key": "tid", 10 "record": { 11 "type": "object", 12 "required": ["name", "accessType", "createdAt"], 13 "properties": { 14 "name": { 15 "type": "string", 16 "maxGraphemes": 200, 17 "description": "Name of the collection." 18 }, 19 "description": { 20 "type": "string", 21 "maxGraphemes": 2000, 22 "description": "What this collection is about." 23 }, 24 "accessType": { 25 "type": "string", 26 "enum": ["OPEN", "CLOSED"], 27 "description": "Whether the collection is open (public) or closed (private)." 28 }, 29 "collaborators": { 30 "type": "array", 31 "maxLength": 50, 32 "items": { 33 "type": "string", 34 "format": "did" 35 }, 36 "description": "DIDs of collaborators who can add cards to this collection." 37 }, 38 "createdAt": { 39 "type": "string", 40 "format": "datetime", 41 "description": "When the collection was created." 42 }, 43 "updatedAt": { 44 "type": "string", 45 "format": "datetime", 46 "description": "When the collection was last updated." 47 } 48 } 49 } 50 } 51 } 52}