Skip to content

Commit 2a1bb56

Browse files
committed
Automated build
1 parent 24eaaf8 commit 2a1bb56

File tree

16 files changed

+1982
-0
lines changed

16 files changed

+1982
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"@context": {
3+
"@protected": true,
4+
"id": "@id",
5+
"type": "@type",
6+
"ACEEndorsementSubject": {
7+
"@id": "https://purl.imsglobal.org/spec/vc/ob-ace/vocab.html#ACEEndorsementSubject",
8+
"@context": {
9+
"@protected": true,
10+
"id": "@id",
11+
"type": "@type",
12+
"identifier": {
13+
"@id": "https://purl.imsglobal.org/spec/vc/ob/vocab.html#identifier",
14+
"@container": "@set"
15+
},
16+
"version": {
17+
"@id": "https://purl.imsglobal.org/spec/vc/ob/vocab.html#version"
18+
},
19+
"minimumPassingScore": {
20+
"@id": "https://purl.imsglobal.org/spec/vc/ob-ace/vocab.html#minimumPassingScore",
21+
"@container": "@set"
22+
},
23+
"creditRecommendations": {
24+
"@id": "https://purl.imsglobal.org/spec/vc/ob-ace/vocab.html#creditRecommendations",
25+
"@container": "@set"
26+
}
27+
}
28+
},
29+
"ACECreditRecommendation": {
30+
"@id": "https://purl.imsglobal.org/spec/vc/ob-ace/vocab.html#CreditRecommendation",
31+
"@context": {
32+
"@protected": true,
33+
"id": "@id",
34+
"type": "@type",
35+
"creditRecommendationId": {
36+
"@id": "https://purl.imsglobal.org/spec/vc/ob-ace/vocab.html#creditRecommendationId"
37+
},
38+
"semesterHours": {
39+
"@id": "https://purl.imsglobal.org/spec/vc/ob-ace/vocab.html#semesterHours",
40+
"@type": "https://www.w3.org/2001/XMLSchema#float"
41+
},
42+
"level": {
43+
"@id": "https://purl.imsglobal.org/spec/vc/ob-ace/vocab.html#level"
44+
},
45+
"subject": {
46+
"@id": "https://purl.imsglobal.org/spec/vc/ob-ace/vocab.html#subject",
47+
"@type": "https://www.w3.org/2001/XMLSchema#string"
48+
}
49+
}
50+
}
51+
}
52+
}
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<h3>EndorsementCredential</h3>
2+
<pre
3+
class="json example vc"
4+
data-schema="org.1edtech.ob.v3p0.endorsementcredential.class"
5+
data-source="CORE"
6+
data-allowadditionalproperties="true"
7+
title="Sample EndorsementCredential with ACE extension"
8+
>
9+
{
10+
"@context": [
11+
"https://www.w3.org/ns/credentials/v2",
12+
"https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json",
13+
"https://purl.imsglobal.org/spec/ob/v3p0/extensions.json",
14+
"https://purl.imsglobal.org/spec/ob-ace/v1p0/context/context-1.0.0.json"
15+
],
16+
"id": "http://example.com/credentials/3527",
17+
"type": [
18+
"VerifiableCredential",
19+
"EndorsementCredential"
20+
],
21+
"name": "SDE endorsement",
22+
"issuer": {
23+
"id": "https://state.gov/issuers/565049",
24+
"type": ["Profile"],
25+
"name": "State Department of Education"
26+
},
27+
"validFrom": "2010-01-01T00:00:00Z",
28+
"validUntil": "2030-01-01T00:00:00Z",
29+
"credentialSubject": {
30+
"id": "https://1edtech.edu/issuers/565049",
31+
"type": ["EndorsementSubject", "ACEEndorsementSubject"],
32+
"endorsementComment": "Some notes about the credit recommendations.",
33+
"identifier": [{
34+
"type": ["IdentityObject"],
35+
"hashed": false,
36+
"identityType": "ext:ACEId",
37+
"identityHash": "ACE-123456"
38+
}],
39+
"minimumPassingScore": {
40+
"type": ["ResultDescription"],
41+
"name": "Passing Score",
42+
"resultType": "Percent",
43+
"requiredValue": "80"
44+
},
45+
"version": 1,
46+
"creditRecommendations": [
47+
{
48+
"type": ["ACECreditRecommendation"],
49+
"creditRecommendationId": "b7e8c2a1-4f3d-4e2b-9d6f-8a1c2e3f4b5a",
50+
"semesterHours": 12.0,
51+
"level": "LowerDivisionBaccalaureate",
52+
"subject": "Computer networking"
53+
},
54+
{
55+
"type": ["ACECreditRecommendation"],
56+
"creditRecommendationId": "a3f9d7c4-2b1e-4a6f-9e8d-7c6b5a4e3f2d",
57+
"semesterHours": 24.0,
58+
"level": "VocationalCertificate",
59+
"subject": "Computer networking"
60+
}
61+
],
62+
"alignment": [{
63+
"type": ["Alignment"],
64+
"targetDescription": "Robot software is a set of commands and procedures robots use to respond to input and perform autonomous tasks.",
65+
"targetName": "Robot Programming",
66+
"targetFramework": "Example Robotics Framework",
67+
"targetType": "CFItem",
68+
"targetUrl": "https://robotics-competencies.example.com/competencies/robot-programming"
69+
}, {
70+
"type": ["Alignment"],
71+
"targetName": "National Guide Link",
72+
"targetType": "ext:ACENationalGuideLink",
73+
"targetUrl": "https://example.com"
74+
}]
75+
},
76+
"credentialSchema": [
77+
{
78+
"id": "https://purl.imsglobal.org/spec/ob/v3p0/schema/json/ob_v3p0_endorsementcredential_schema.json",
79+
"type": "1EdTechJsonSchemaValidator2019"
80+
},
81+
{
82+
"id": "https://purl.imsglobal.org/spec/ob-ace/v1p0/schema/ob_ace_v1p0_endorsementcredential_schema.json",
83+
"type": "1EdTechJsonSchemaValidator2019"
84+
}
85+
]
86+
}
87+
</pre>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"OB-ACE-10-ERRATA": {
3+
"title": "Open Badges American Council of Education (ACE) Extension v1.0: Errata",
4+
"href": "https://www.imsglobal.org/spec/ob-ace/v1p0/errata/"
5+
}
6+
}

0 commit comments

Comments
 (0)