atproto blogging
at main 29 lines 681 B view raw
1{ 2 "lexicon": 1, 3 "id": "com.atproto.identity.defs", 4 "defs": { 5 "identityInfo": { 6 "type": "object", 7 "required": [ 8 "did", 9 "handle", 10 "didDoc" 11 ], 12 "properties": { 13 "did": { 14 "type": "string", 15 "format": "did" 16 }, 17 "didDoc": { 18 "type": "unknown", 19 "description": "The complete DID document for the identity." 20 }, 21 "handle": { 22 "type": "string", 23 "description": "The validated handle of the account; or 'handle.invalid' if the handle did not bi-directionally match the DID document.", 24 "format": "handle" 25 } 26 } 27 } 28 } 29}