io.atcr.sailor.profile
Schema Diff
+6 -2
1
1
{
2
2
"id": "io.atcr.sailor.profile",
3
3
"defs": {
4
4
"main": {
5
5
"key": "literal:self",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"createdAt"
11
11
],
12
12
"properties": {
13
13
"createdAt": {
14
14
"type": "string",
15
15
"format": "datetime",
16
16
"description": "Profile creation timestamp"
17
17
},
18
18
"updatedAt": {
19
19
"type": "string",
20
20
"format": "datetime",
21
21
"description": "Profile last updated timestamp"
22
22
},
23
23
"defaultHold": {
24
24
"type": "string",
25
-
"format": "uri",
26
-
"description": "Default hold endpoint for blob storage. If null, user has opted out of defaults."
25
+
"format": "did",
26
+
"description": "Default hold DID for blob storage. If null, user has opted out of defaults."
27
+
},
28
+
"autoRemoveUntagged": {
29
+
"type": "boolean",
30
+
"description": "Automatically delete manifest records that become untagged after a tag overwrite. Layers are cleaned up by hold garbage collection."
27
31
}
28
32
}
29
33
},
30
34
"description": "User profile for ATCR registry. Stores preferences like default hold for blob storage."
31
35
}
32
36
},
33
37
"$type": "com.atproto.lexicon.schema",
34
38
"lexicon": 1
35
39
}