This repository has no description
0

Configure Feed

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

core / lexicons / repo / defs.json
1.0 kB 29 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.defs", 4 "defs": { 5 "repoViewBasic": { 6 "type": "object", 7 "required": ["did", "owner", "slug", "createdAt"], 8 "properties": { 9 "did": { "type": "string", "format": "did" }, 10 "owner": { "type": "ref", "ref": "sh.tangled.actor.defs#profileViewBasic" }, 11 "slug": { "type": "string" }, 12 "description": { "type": "string" }, 13 "createdAt": { "type": "string", "format": "datetime" }, 14 "forkCount": { "type": "integer" }, 15 "starCount": { "type": "integer" }, 16 "viewer": { "type": "ref", "ref": "#viewerState" }, 17 "isStarred": { "type": "boolean" } 18 } 19 }, 20 "viewerState": { 21 "type": "object", 22 "description": "Metadata about the requesting account's relationship with the subject content. Only has meaningful content for authed requests.", 23 "properties": { 24 "fork": { "type": "string", "format": "at-uri" } 25 "star": { "type": "string", "format": "at-uri" } 26 } 27 } 28 } 29}