id.sifa.profile.certification
Schema Diff
+12 -3
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "id.sifa.profile.certification",
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
"name",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"name": {
15
15
"type": "string",
16
16
"maxLength": 2560,
17
17
"minLength": 1,
18
18
"description": "Certification or license name.",
19
19
"maxGraphemes": 256
20
20
},
21
21
"labels": {
22
22
"refs": [
23
23
"com.atproto.label.defs#selfLabels"
24
24
],
25
25
"type": "union",
26
26
"description": "Self-label values for this certification record."
27
27
},
28
28
"issuedAt": {
29
29
"type": "string",
30
30
"description": "Date the certification was issued, in YYYY-MM or YYYY-MM-DD format."
31
31
},
32
32
"authority": {
33
33
"type": "string",
34
34
"maxLength": 2560,
35
35
"description": "Issuing organization or authority.",
36
36
"maxGraphemes": 256
37
37
},
38
38
"createdAt": {
39
39
"type": "string",
40
40
"format": "datetime",
41
41
"description": "Client-declared timestamp when this record was originally created."
42
42
},
43
43
"entityRef": {
44
44
"type": "string",
45
45
"format": "uri",
46
46
"description": "Portable, app-neutral identifier for the issuing organization 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 organization claims an ATproto account. Absent for free-text entries."
47
47
},
48
48
"expiresAt": {
49
49
"type": "string",
50
-
"description": "Expiry date in YYYY-MM or YYYY-MM-DD format. Omit if the certification does not expire."
50
+
"description": "Expiry date in YYYY-MM or YYYY-MM-DD format. Omit if the certification does not expire.",
51
+
"x-skos:exactMatch": [
52
+
"schema:validUntil"
53
+
]
51
54
},
52
55
"authorityDid": {
53
56
"type": "string",
54
57
"format": "did",
55
58
"description": "DID of the issuing authority's ATproto account, if one exists."
56
59
},
57
60
"credentialId": {
58
61
"type": "string",
59
62
"maxLength": 2560,
60
63
"description": "Credential ID or license number.",
61
64
"maxGraphemes": 256
62
65
},
63
66
"credentialUrl": {
64
67
"type": "string",
65
68
"format": "uri",
66
-
"description": "URL to verify the credential."
69
+
"description": "URL to verify the credential.",
70
+
"x-skos:exactMatch": [
71
+
"schema:url"
72
+
]
67
73
}
68
74
}
69
75
},
70
-
"description": "Record representing a single certification or license."
76
+
"description": "Record representing a single certification or license.",
77
+
"x-skos:exactMatch": [
78
+
"schema:EducationalOccupationalCredential"
79
+
]
71
80
}
72
81
},
73
82
"$type": "com.atproto.lexicon.schema",
74
83
"lexicon": 1,
75
84
"description": "A professional certification or license held by the user."
76
85
}