id.sifa.profile.externalAccount
Schema Diff
+1 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "id.sifa.profile.externalAccount",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"platform",
11
11
"url",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"url": {
16
16
"type": "string",
17
17
"format": "uri",
18
18
"description": "The profile or site URL. Displayed as a clickable link on the user's profile."
19
19
},
20
20
"label": {
21
21
"type": "string",
22
22
"maxLength": 640,
23
23
"description": "Optional display name for this account (e.g., 'My Blog', 'Photography').",
24
24
"maxGraphemes": 64
25
25
},
26
26
"feedUrl": {
27
27
"type": "string",
28
28
"format": "uri",
29
29
"description": "Optional RSS or Atom feed URL. Auto-discovered or manually provided. Used for content rendering in the ATmosphere Stream."
30
30
},
31
31
"platform": {
32
32
"type": "string",
33
33
"description": "The platform or type of external account.",
34
34
"knownValues": [
35
35
"id.sifa.defs#platformRss",
36
36
"id.sifa.defs#platformFediverse",
37
37
"id.sifa.defs#platformTwitter",
38
38
"id.sifa.defs#platformInstagram",
39
39
"id.sifa.defs#platformGithub",
40
40
"id.sifa.defs#platformYoutube",
41
41
"id.sifa.defs#platformLinkedin",
42
42
"id.sifa.defs#platformWebsite",
43
+
"id.sifa.defs#platformOrcid",
43
44
"id.sifa.defs#platformOther"
44
45
]
45
46
},
46
47
"createdAt": {
47
48
"type": "string",
48
49
"format": "datetime",
49
50
"description": "Client-declared timestamp when this record was originally created."
50
51
},
51
52
"isPrimary": {
52
53
"type": "boolean",
53
54
"description": "Whether this is the user's primary external link, displayed prominently on the profile card."
54
55
}
55
56
}
56
57
},
57
58
"description": "Record representing a single external account or website linked by the user."
58
59
}
59
60
},
60
61
"$type": "com.atproto.lexicon.schema",
61
62
"lexicon": 1,
62
63
"description": "A linked external account or website not on AT Protocol. Displayed on the user's profile and optionally rendered in the ATmosphere Stream via feed ingestion."
63
64
}