community.gifthood.interest
Schema Diff
+3 -3
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "community.gifthood.interest",
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
"subject",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"langs": {
15
15
"type": "array",
16
16
"items": {
17
17
"type": "string",
18
18
"format": "language"
19
19
},
20
20
"maxLength": 3,
21
21
"description": "Language(s) the message is written in, as BCP-47 language tags. Author-asserted; clients default from the composer's locale."
22
22
},
23
23
"facets": {
24
24
"type": "array",
25
25
"items": {
26
26
"ref": "app.bsky.richtext.facet",
27
27
"type": "ref"
28
28
},
29
-
"description": "Annotations over `message` (mentions, links) keyed by UTF-8 byte range. Reuses app.bsky.richtext.facet for atmosphere-wide interop. Author-asserted at compose time; clients MUST treat them as display hints, re-validate ranges, and never trust a facet URI over the visible text. Addresses and phone numbers are deliberately NOT faceted here — those affordances are direct-message-only."
29
+
"description": "Annotations over `message` (mentions, links) keyed by UTF-8 byte range. Reuses app.bsky.richtext.facet for atmosphere-wide interop. Author-asserted at compose time; clients MUST treat them as display hints, re-validate ranges, and never trust a facet URI over the visible text. Addresses and phone numbers are deliberately NOT faceted here — those affordances are private-message-only."
30
30
},
31
31
"message": {
32
32
"type": "string",
33
33
"maxLength": 600,
34
-
"description": "Optional short public note (e.g. 'still available?'). Pickup details belong in direct messages, not here.",
34
+
"description": "Optional short public note (e.g. 'still available?'). Pickup details belong in private messages, not here.",
35
35
"maxGraphemes": 300
36
36
},
37
37
"subject": {
38
38
"ref": "com.atproto.repo.strongRef",
39
39
"type": "ref",
40
40
"description": "Strong reference (URI + CID) to the listing this interest refers to."
41
41
},
42
42
"createdAt": {
43
43
"type": "string",
44
44
"format": "datetime"
45
45
}
46
46
}
47
47
},
48
-
"description": "A public expression of interest in a listing. Coordination of pickup happens off-app via direct message."
48
+
"description": "A public expression of interest in a listing. Coordination of pickup happens in private, listing-scoped in-app messaging."
49
49
}
50
50
},
51
51
"$type": "com.atproto.lexicon.schema",
52
52
"lexicon": 1
53
53
}