community.gifthood.interest
Schema Diff
+9 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 4 non-breaking changes.
Non-Breaking Changes (4)
- AddedVertex AddedVertex { vertex_id: "community.gifthood.interest:body.langs" }
- AddedVertex AddedVertex { vertex_id: "community.gifthood.interest:body.langs:items" }
- AddedEdge AddedEdge { src: "community.gifthood.interest:body", tgt: "community.gifthood.interest:body.langs", kind: "prop", name: Some("langs") }
- AddedEdge AddedEdge { src: "community.gifthood.interest:body.langs", tgt: "community.gifthood.interest:body.langs:items", kind: "items", name: None }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "community.gifthood.interest:body.langs" }AddedVertex { vertex_id: "community.gifthood.interest:body.langs:items" }
Additional Notes
- Non-breaking: AddedEdge { src: "community.gifthood.interest:body", tgt: "community.gifthood.interest:body.langs", kind: "prop", name: Some("langs") }
- Non-breaking: AddedEdge { src: "community.gifthood.interest:body.langs", tgt: "community.gifthood.interest:body.langs:items", kind: "items", name: None }
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
+
"langs": {
15
+
"type": "array",
16
+
"items": {
17
+
"type": "string",
18
+
"format": "language"
19
+
},
20
+
"maxLength": 3,
21
+
"description": "Language(s) the message is written in, as BCP-47 language tags. Author-asserted; clients default from the composer's locale."
22
+
},
14
23
"message": {
15
24
"type": "string",
16
25
"maxLength": 600,
17
26
"description": "Optional short public note (e.g. 'still available?'). Pickup details belong in direct messages, not here.",
18
27
"maxGraphemes": 300
19
28
},
20
29
"subject": {
21
30
"ref": "com.atproto.repo.strongRef",
22
31
"type": "ref",
23
32
"description": "Strong reference (URI + CID) to the listing this interest refers to."
24
33
},
25
34
"createdAt": {
26
35
"type": "string",
27
36
"format": "datetime"
28
37
}
29
38
}
30
39
},
31
40
"description": "A public expression of interest in a listing. Coordination of pickup happens off-app via direct message."
32
41
}
33
42
},
34
43
"$type": "com.atproto.lexicon.schema",
35
44
"lexicon": 1
36
45
}