atproto blogging
at main 29 lines 626 B view raw
1{ 2 "lexicon": 1, 3 "id": "com.atproto.admin.updateAccountPassword", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Update the password for a user account as an administrator.", 8 "input": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": [ 13 "did", 14 "password" 15 ], 16 "properties": { 17 "did": { 18 "type": "string", 19 "format": "did" 20 }, 21 "password": { 22 "type": "string" 23 } 24 } 25 } 26 } 27 } 28 } 29}