atproto blogging
1{
2 "lexicon": 1,
3 "id": "com.atproto.admin.updateAccountEmail",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Administrative action to update an account's email.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "account",
14 "email"
15 ],
16 "properties": {
17 "account": {
18 "type": "string",
19 "description": "The handle or DID of the repo.",
20 "format": "at-identifier"
21 },
22 "email": {
23 "type": "string"
24 }
25 }
26 }
27 }
28 }
29 }
30}