id.sifa.profile.externalAccount
Schema Diff
+5 -1
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#platformCodeberg",
41
41
"id.sifa.defs#platformGitlab",
42
42
"id.sifa.defs#platformForgejo",
43
43
"id.sifa.defs#platformGitea",
44
44
"id.sifa.defs#platformYoutube",
45
45
"id.sifa.defs#platformLinkedin",
46
46
"id.sifa.defs#platformWebsite",
47
47
"id.sifa.defs#platformOrcid",
48
48
"id.sifa.defs#platformOther"
49
49
]
50
50
},
51
51
"createdAt": {
52
52
"type": "string",
53
53
"format": "datetime",
54
54
"description": "Client-declared timestamp when this record was originally created."
55
55
},
56
56
"isPrimary": {
57
57
"type": "boolean",
58
58
"description": "Whether this is the user's primary external link, displayed prominently on the profile card."
59
59
}
60
60
}
61
61
},
62
-
"description": "Record representing a single external account or website linked by the user."
62
+
"description": "Record representing a single external account or website linked by the user.",
63
+
"x-skos:exactMatch": [
64
+
"schema:sameAs",
65
+
"foaf:account"
66
+
]
63
67
}
64
68
},
65
69
"$type": "com.atproto.lexicon.schema",
66
70
"lexicon": 1,
67
71
"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."
68
72
}