org.atsui.Avatar
Schema Diff
+1 -0
1
1
{
2
2
"id": "org.atsui.Avatar",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"src"
11
11
],
12
12
"properties": {
13
13
"did": {
14
14
"type": "string",
15
15
"format": "did",
16
16
"description": "DID of the blob owner. Used to resolve blob URLs."
17
17
},
18
18
"src": {
19
19
"type": "unknown",
20
20
"description": "Blob ref for the image."
21
21
},
22
22
"size": {
23
23
"type": "string",
24
24
"default": "medium",
25
+
"maxLength": 32,
25
26
"description": "Size token.",
26
27
"knownValues": [
27
28
"xsmall",
28
29
"small",
29
30
"medium",
30
31
"large"
31
32
]
32
33
}
33
34
}
34
35
},
35
36
"encoding": "application/json"
36
37
},
37
38
"output": {
38
39
"schema": {
39
40
"ref": "at.inlay.defs#response",
40
41
"type": "ref"
41
42
},
42
43
"encoding": "application/json"
43
44
},
44
45
"description": "Circular profile image at a fixed size."
45
46
}
46
47
},
47
48
"$type": "com.atproto.lexicon.schema",
48
49
"lexicon": 1
49
50
}