tangled
alpha
login
or
join now
nonbinary.computer
/
weaver
atproto blogging
24
fork
atom
overview
issues
2
pulls
pipelines
fixing lexicons
Orual
3 months ago
4bb6a0a3
84b1cc9b
+22
-23
2 changed files
expand all
collapse all
unified
split
lexicons
sh
weaver
actor
defs.json
profile.json
+20
-6
lexicons/sh/weaver/actor/defs.json
···
41
41
"pinned": {
42
42
"description": "Notebooks or other records pinned for display."
43
43
"type": "ref",
44
44
-
"ref": "sh.weaver.actor.profile#pinnedList"
44
44
+
"ref": "#pinnedList"
45
45
}
46
46
"labels": {
47
47
"type": "array",
···
50
50
"pronouns": {
51
51
"type": "ref",
52
52
"description": "Pronouns to use in user-generated content.",
53
53
-
"ref": "sh.weaver.actor.profile#pronounsList"
53
53
+
"ref": "#pronounsList"
54
54
},
55
55
"subscriberCount": {
56
56
"type": "integer"
···
81
81
"pronouns": {
82
82
"type": "ref",
83
83
"description": "Pronouns to use in user-generated content.",
84
84
-
"ref": "sh.weaver.actor.profile#pronounsList"
84
84
+
"ref": "#pronounsList"
85
85
},
86
86
}
87
87
},
···
91
91
"properties": {
92
92
"inner": {
93
93
"type": "union",
94
94
-
"refs": ["sh.weaver.actor.defs#profileView", "app.bsky.actor.defs#profileViewDetailed", "#tangledProfileView"]
94
94
+
"refs": ["#profileView", "app.bsky.actor.defs#profileViewDetailed", "#tangledProfileView"]
95
95
}
96
96
}
97
97
},
···
101
101
"properties": {
102
102
"inner": {
103
103
"type": "union",
104
104
-
"refs": ["sh.weaver.actor.defs#profileViewBasic", "app.bsky.actor.defs#profileViewBasic", "#tangledProfileView"]
104
104
+
"refs": ["#profileViewBasic", "app.bsky.actor.defs#profileViewBasic", "#tangledProfileView"]
105
105
}
106
106
}
107
107
},
···
119
119
}
120
120
}
121
121
},
122
122
-
122
122
+
"pronounsList": {
123
123
+
"type": "array",
124
124
+
"items": {
125
125
+
"type": "string",
126
126
+
"maxLength": "50",
127
127
+
"knownValues": ["she/her", "he/him", "they/them", "it/its", "she/they", "he/they", "they/he", "they/she", "any/all"]
128
128
+
}
129
129
+
},
130
130
+
"pinnedList": {
131
131
+
"type": "array",
132
132
+
"items": {
133
133
+
"type": "ref",
134
134
+
"ref": "com.atproto.repo.strongRef"
135
135
+
}
136
136
+
},
123
137
"tangledProfileView": {
124
138
"type": "object",
125
139
"required": ["bluesky", "did", "handle"],
+2
-17
lexicons/sh/weaver/actor/profile.json
···
48
48
"pronouns": {
49
49
"type": "ref",
50
50
"description": "Pronouns to use in user-generated content.",
51
51
-
"ref": "#pronounsList"
51
51
+
"ref": "sh.weaver.actor.defs#pronounsList"
52
52
},
53
53
"pinned": {
54
54
"description": "Notebooks or other records pinned for display."
55
55
"type": "ref",
56
56
-
"ref": "#pinnedList"
56
56
+
"ref": "sh.weaver.actor.defs#pinnedList"
57
57
},
58
58
"bluesky": {
59
59
"type": "boolean",
···
82
82
},
83
83
"createdAt": { "type": "string", "format": "datetime" }
84
84
}
85
85
-
}
86
86
-
},
87
87
-
"pronounsList": {
88
88
-
"type": "array",
89
89
-
"items": {
90
90
-
"type": "string",
91
91
-
"maxLength": "50",
92
92
-
"knownValues": ["she/her", "he/him", "they/them", "it/its", "she/they", "he/they", "they/he", "they/she", "any/all"]
93
93
-
}
94
94
-
},
95
95
-
"pinnedList": {
96
96
-
"type": "array",
97
97
-
"items": {
98
98
-
"type": "ref",
99
99
-
"ref": "com.atproto.repo.strongRef"
100
85
}
101
86
}
102
87
}