This repository has no description
0

Configure Feed

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

core / lexicons / com / bad-example / identity / miniDoc.json
677 B 27 lines
1{ 2 "lexicon": 1, 3 "id": "com.bad-example.identity.miniDoc", 4 "defs": { 5 "main": { 6 "type": "object", 7 "description": "Minimal identity document, as returned by com.bad-example.identity.resolveMiniDoc.", 8 "required": ["did", "handle"], 9 "properties": { 10 "did": { 11 "type": "string", 12 "format": "did", 13 "description": "DID of the identity." 14 }, 15 "handle": { 16 "type": "string", 17 "format": "handle", 18 "description": "Handle of the identity." 19 }, 20 "pds": { 21 "type": "string", 22 "description": "PDS endpoint, when known." 23 } 24 } 25 } 26 } 27}