This repository has no description
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}