atproto blogging
at main 31 lines 744 B view raw
1{ 2 "lexicon": 1, 3 "id": "com.atproto.admin.updateAccountSigningKey", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Administrative action to update an account's signing key in their Did document.", 8 "input": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": [ 13 "did", 14 "signingKey" 15 ], 16 "properties": { 17 "did": { 18 "type": "string", 19 "format": "did" 20 }, 21 "signingKey": { 22 "type": "string", 23 "description": "Did-key formatted public key", 24 "format": "did" 25 } 26 } 27 } 28 } 29 } 30 } 31}