id.sifa.profile.education
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "id.sifa.profile.education:body.entityRef" }
- AddedEdge AddedEdge { src: "id.sifa.profile.education:body", tgt: "id.sifa.profile.education:body.entityRef", kind: "prop", name: Some("entityRef") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "id.sifa.profile.education:body.entityRef" }
Additional Notes
- Non-breaking: AddedEdge { src: "id.sifa.profile.education:body", tgt: "id.sifa.profile.education:body.entityRef", kind: "prop", name: Some("entityRef") }
1
1
{
2
2
"id": "id.sifa.profile.education",
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
"institution",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"grade": {
15
15
"type": "string",
16
16
"maxLength": 500,
17
17
"description": "Grade, GPA, or classification achieved.",
18
18
"maxGraphemes": 50
19
19
},
20
20
"degree": {
21
21
"type": "string",
22
22
"maxLength": 2560,
23
23
"description": "Degree name (e.g., 'Bachelor of Science', 'Master of Arts').",
24
24
"maxGraphemes": 256
25
25
},
26
26
"labels": {
27
27
"refs": [
28
28
"com.atproto.label.defs#selfLabels"
29
29
],
30
30
"type": "union",
31
31
"description": "Self-label values for this education record."
32
32
},
33
33
"endedAt": {
34
34
"type": "string",
35
35
"description": "End date (graduation or expected graduation) in YYYY-MM or YYYY-MM-DD format. Omit if currently enrolled."
36
36
},
37
37
"location": {
38
38
"ref": "community.lexicon.location.address",
39
39
"type": "ref",
40
40
"description": "Institution location. Sifa enforces ISO 3166-1 alpha-2 country codes at the app layer."
41
41
},
42
42
"createdAt": {
43
43
"type": "string",
44
44
"format": "datetime",
45
45
"description": "Client-declared timestamp when this record was originally created."
46
46
},
47
+
"entityRef": {
48
+
"type": "string",
49
+
"format": "uri",
50
+
"description": "Portable, app-neutral identifier for the educational institution the user selected from a resolver dropdown: a Wikidata Q-ID URI (http://www.wikidata.org/entity/Q...), a ROR URI, or an LEI URI. Enables deterministic resolution to a canonical entity even before the institution claims an ATproto account. Absent for free-text entries."
51
+
},
47
52
"startedAt": {
48
53
"type": "string",
49
54
"description": "Start date in YYYY-MM or YYYY-MM-DD format."
50
55
},
51
56
"activities": {
52
57
"type": "string",
53
58
"maxLength": 10000,
54
59
"description": "Activities, societies, and extracurriculars.",
55
60
"maxGraphemes": 1000
56
61
},
57
62
"description": {
58
63
"type": "string",
59
64
"maxLength": 50000,
60
65
"description": "Additional description or notes about the education.",
61
66
"maxGraphemes": 5000
62
67
},
63
68
"institution": {
64
69
"type": "string",
65
70
"maxLength": 2560,
66
71
"minLength": 1,
67
72
"description": "Name of the educational institution.",
68
73
"maxGraphemes": 256
69
74
},
70
75
"fieldOfStudy": {
71
76
"type": "string",
72
77
"maxLength": 2560,
73
78
"description": "Field of study or major.",
74
79
"maxGraphemes": 256
75
80
},
76
81
"institutionDid": {
77
82
"type": "string",
78
83
"format": "did",
79
84
"description": "DID of the institution's ATproto account, if one exists."
80
85
}
81
86
}
82
87
},
83
88
"description": "Record representing a single education credential."
84
89
}
85
90
},
86
91
"$type": "com.atproto.lexicon.schema",
87
92
"lexicon": 1,
88
93
"description": "An education entry in the user's professional profile."
89
94
}