id.sifa.profile.publication
Schema Diff
+2 -2
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- ConstraintRelaxed ConstraintRelaxed { vertex_id: "id.sifa.profile.publication:body.publisher", sort: "maxGraphemes", old_value: "100", new_value: "256" }
- ConstraintRelaxed ConstraintRelaxed { vertex_id: "id.sifa.profile.publication:body.publisher", sort: "maxLength", old_value: "1000", new_value: "2560" }
Migration Guidance
Constraint Changes
- ConstraintRelaxed ConstraintRelaxed { vertex_id: "id.sifa.profile.publication:body.publisher", sort: "maxGraphemes", old_value: "100", new_value: "256" }
- ConstraintRelaxed ConstraintRelaxed { vertex_id: "id.sifa.profile.publication:body.publisher", sort: "maxLength", old_value: "1000", new_value: "2560" }
1
1
{
2
2
"id": "id.sifa.profile.publication",
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
"title",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"url": {
15
15
"type": "string",
16
16
"format": "uri",
17
17
"description": "URL to the publication."
18
18
},
19
19
"title": {
20
20
"type": "string",
21
21
"maxLength": 2000,
22
22
"minLength": 1,
23
23
"description": "Publication title.",
24
24
"maxGraphemes": 200
25
25
},
26
26
"authors": {
27
27
"type": "array",
28
28
"items": {
29
29
"ref": "#author",
30
30
"type": "ref"
31
31
},
32
32
"maxLength": 50,
33
33
"description": "Co-authors. The record owner is always an implicit author."
34
34
},
35
35
"createdAt": {
36
36
"type": "string",
37
37
"format": "datetime",
38
38
"description": "Client-declared timestamp when this record was originally created."
39
39
},
40
40
"publisher": {
41
41
"type": "string",
42
-
"maxLength": 1000,
42
+
"maxLength": 2560,
43
43
"description": "Publisher, journal, or venue name.",
44
-
"maxGraphemes": 100
44
+
"maxGraphemes": 256
45
45
},
46
46
"description": {
47
47
"type": "string",
48
48
"maxLength": 50000,
49
49
"description": "Description or abstract.",
50
50
"maxGraphemes": 5000
51
51
},
52
52
"publishedAt": {
53
53
"type": "string",
54
54
"format": "datetime",
55
55
"description": "Publication date."
56
56
}
57
57
}
58
58
},
59
59
"description": "Record representing a single publication."
60
60
},
61
61
"author": {
62
62
"type": "object",
63
63
"required": [
64
64
"name"
65
65
],
66
66
"properties": {
67
67
"did": {
68
68
"type": "string",
69
69
"format": "did",
70
70
"description": "Author's ATproto DID, if they have an account."
71
71
},
72
72
"name": {
73
73
"type": "string",
74
74
"maxLength": 1000,
75
75
"minLength": 1,
76
76
"description": "Author's display name.",
77
77
"maxGraphemes": 100
78
78
}
79
79
},
80
80
"description": "A co-author of the publication."
81
81
}
82
82
},
83
83
"$type": "com.atproto.lexicon.schema",
84
84
"lexicon": 1,
85
85
"description": "A publication authored or co-authored by the user."
86
86
}