app.kimbia.share
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.kimbia.share",
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
"layout",
12
12
"externalUri",
13
13
"image",
14
14
"createdAt"
15
15
],
16
16
"properties": {
17
17
"image": {
18
18
"type": "blob",
19
19
"accept": [
20
20
"image/png",
21
21
"image/jpeg"
22
22
],
23
-
"maxSize": 1000000,
23
+
"maxSize": 2000000,
24
24
"description": "The baked share card image."
25
25
},
26
26
"layout": {
27
27
"type": "string",
28
28
"maxLength": 128,
29
29
"description": "The visual layout used to render the share card.",
30
30
"knownValues": [
31
31
"laUne",
32
32
"feuillet"
33
33
]
34
34
},
35
35
"platform": {
36
36
"type": "string",
37
37
"maxLength": 128,
38
38
"description": "Where this share was posted.",
39
39
"knownValues": [
40
40
"bsky"
41
41
]
42
42
},
43
43
"createdAt": {
44
44
"type": "string",
45
45
"format": "datetime",
46
46
"description": "When the share was created."
47
47
},
48
48
"activityRef": {
49
49
"type": "string",
50
50
"maxLength": 2048,
51
51
"description": "AT-URI of the published activity (or adventure) record this share is about. Absent until the underlying record is itself published."
52
52
},
53
53
"externalUri": {
54
54
"type": "string",
55
55
"maxLength": 2048,
56
56
"description": "AT-URI of the published external post (e.g. the Bluesky post)."
57
57
}
58
58
}
59
59
},
60
60
"description": "One social share of a Kimbia activity or adventure (e.g. a post to Bluesky). A share is public by nature - it links the external post back to the underlying activity record."
61
61
}
62
62
},
63
63
"$type": "com.atproto.lexicon.schema",
64
64
"lexicon": 1
65
65
}