id.sifa.profile.education
Schema Diff
+24 -4
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
-
"maxGraphemes": 256
24
+
"maxGraphemes": 256,
25
+
"x-skos:closeMatch": [
26
+
"schema:hasCredential",
27
+
"bibo:degree"
28
+
]
25
29
},
26
30
"labels": {
27
31
"refs": [
28
32
"com.atproto.label.defs#selfLabels"
29
33
],
30
34
"type": "union",
31
35
"description": "Self-label values for this education record."
32
36
},
33
37
"endedAt": {
34
38
"type": "string",
35
39
"description": "End date (graduation or expected graduation) in YYYY-MM or YYYY-MM-DD format. Omit if currently enrolled."
36
40
},
37
41
"location": {
38
42
"ref": "community.lexicon.location.address",
39
43
"type": "ref",
40
44
"description": "Institution location. Sifa enforces ISO 3166-1 alpha-2 country codes at the app layer."
41
45
},
42
46
"createdAt": {
43
47
"type": "string",
44
48
"format": "datetime",
45
49
"description": "Client-declared timestamp when this record was originally created."
46
50
},
51
+
"entityRef": {
52
+
"type": "string",
53
+
"format": "uri",
54
+
"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."
55
+
},
47
56
"startedAt": {
48
57
"type": "string",
49
58
"description": "Start date in YYYY-MM or YYYY-MM-DD format."
50
59
},
51
60
"activities": {
52
61
"type": "string",
53
62
"maxLength": 10000,
54
63
"description": "Activities, societies, and extracurriculars.",
55
64
"maxGraphemes": 1000
56
65
},
57
66
"description": {
58
67
"type": "string",
59
68
"maxLength": 50000,
60
69
"description": "Additional description or notes about the education.",
61
70
"maxGraphemes": 5000
62
71
},
63
72
"institution": {
64
73
"type": "string",
65
74
"maxLength": 2560,
66
75
"minLength": 1,
67
76
"description": "Name of the educational institution.",
68
-
"maxGraphemes": 256
77
+
"maxGraphemes": 256,
78
+
"x-skos:exactMatch": [
79
+
"schema:alumniOf"
80
+
]
69
81
},
70
82
"fieldOfStudy": {
71
83
"type": "string",
72
84
"maxLength": 2560,
73
85
"description": "Field of study or major.",
74
-
"maxGraphemes": 256
86
+
"x-skos:note": "ISCED-F is the value anchor.",
87
+
"maxGraphemes": 256,
88
+
"x-skos:closeMatch": [
89
+
"schema:educationalCredentialAwarded"
90
+
]
75
91
},
76
92
"institutionDid": {
77
93
"type": "string",
78
94
"format": "did",
79
95
"description": "DID of the institution's ATproto account, if one exists."
80
96
}
81
97
}
82
98
},
83
-
"description": "Record representing a single education credential."
99
+
"description": "Record representing a single education credential.",
100
+
"x-skos:note": "One record maps to two schema.org assertions: alumniOf for the institution and hasCredential for the degree.",
101
+
"x-skos:closeMatch": [
102
+
"schema:EducationalOccupationalCredential"
103
+
]
84
104
}
85
105
},
86
106
"$type": "com.atproto.lexicon.schema",
87
107
"lexicon": 1,
88
108
"description": "An education entry in the user's professional profile."
89
109
}