This repository has no description
0

Configure Feed

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

core / lexicons / feed / getStar.json
879 B 38 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.feed.getStar", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": ["actor", "subject"], 10 "properties": { 11 "actor": { 12 "type": "string", 13 "format": "did", 14 "description": "DID of the potential stargazer." 15 }, 16 "subject": { 17 "type": "string", 18 "description": "Repo DID to check." 19 } 20 } 21 }, 22 "output": { 23 "encoding": "application/json", 24 "schema": { 25 "type": "object", 26 "required": ["uri"], 27 "properties": { 28 "uri": { 29 "type": "string", 30 "format": "at-uri", 31 "description": "Uri of actor's star record for subject." 32 } 33 } 34 } 35 } 36 } 37 } 38}