Introduction
This page describes sample structures for the top-level objects in CTDL, as you would find them in the Registry. Contact Us if you have any questions.
Data in the Registry
In the Registry, there are several classes that can be accessed directly via their URIs. These classes are commonly referred to as "top level classes":
There are two ways to retrieve such objects: via the object's graph URI and via the object's resources URI. Depending on which option you choose, the data you receive will have different wrapping structures (the core data will be identical). Compare:
Record retrieved via graph URI ( e.g., https://credentialengineregistry.org/graph/ce-01496a63-5c64-4ec3-aa2a-07a8fb184bef ):
{
"@id": "https://credentialengineregistry.org/graph/ce-01496a63-5c64-4ec3-aa2a-07a8fb184bef",
"@context": "http://credreg.net/ctdl/schema/context/json",
"@graph": [
{
"@id": "https://credentialengineregistry.org/resources/ce-01496a63-5c64-4ec3-aa2a-07a8fb184bef",
"@type": "ceterms:Credential",
"ceterms:name": { "en": "My Credential" }
"ceterms:accreditedBy": [
"_:0965e29c-757b-4467-9bc8-28f142d5e981"
]
},
{
"@id": "_:0965e29c-757b-4467-9bc8-28f142d5e981",
"@type": "ceterms:QACredentialOrganization",
"ceterms:name": { "en": "an unregistered QA organization" },
"ceterms:description": { "en": "An organization referenced by the Credential that does not exist on its own in the registry" }
}
]
}
The same record retrieved via resources URI ( e.g., https://credentialengineregistry.org/resources/ce-01496a63-5c64-4ec3-aa2a-07a8fb184bef ):
{
"@id": "https://credentialengineregistry.org/resources/ce-01496a63-5c64-4ec3-aa2a-07a8fb184bef",
"@type": "ceterms:Credential",
"ceterms:name": { "en": "My Credential" }
"ceterms:accreditedBy": [
"_:0965e29c-757b-4467-9bc8-28f142d5e981"
]
}
Key things to note:
- The presence of a blank node in the graph data.
- The lack of that same blank node in the resources data, even though the field in the resources record that references the blank node ( ceterms:accreditedBy
)is still present in the data.
- The graph data contains everything available in the resources data.
- The @context is injected into the resources data when the resource is retrieved instead of the graph.
- It's easy to determine a graph URI from a resources URI (or vice versa): Just swap "/graph/" and "/resources/" in the URI itself.
Additionally, the Credential Registry Search API returns search results that are constructed from resources data (in order to avoid the complexity of graphs and avoid blank nodes showing as false-positive search results). If your system intends to consume search results for further processing beyond simply displaying them, it is recommended to retrieve the graph data for each result in order to ensure your system has any potentially-relevant blank nodes.
Record Examples
Organization
{
"@type":
"either ceterms:CredentialOrganization or ceterms:QACredentialOrganization",
There are two types of organizations in CTDL: Credential Organizations and Quality Assurance Organizations. They share nearly the same set of properties, except that Quality Assurance Organizations have some additional properties that allow them to describe the quality assurance they provide. The value of the "@type" property will always be exactly one of these types:
ceterms:CredentialOrganization
ceterms:QACredentialOrganization
Data for this property is Required
"@id":
"https://credentialengineregistry.org/graph/ce-a8df7e5c-8b72-422c-a721-9a0bd3ef6af9",
The externally-resolvable identifier for this Organization.
Data for this property is Required
"ceterms:ctid":
"ce-a8df7e5c-8b72-422c-a721-9a0bd3ef6af9"
The CTID is the unique identifier for the Organization in the Registry. CTID is composed of the prefix "ce-" and an ordinary
GUID. The CTID for this Organization is also used at the end of the URI in its @id property.
Data for this property is Required
"ceterms:name":
{
"en":
"My Organization Name"
}
,
The name of the Organization.
Data for this property is Required
"ceterms:description":
{
"en":
"My Organization's Description"
}
,
The description for the Organization.
Data for this property is Required
"ceterms:subjectWebpage":
"http://webpage-for-my-organization.com/about/organization/123",
A webpage or website for the Organization.
Data for this property is Required
"ceterms:email":
"contact@organization.com"
Email address for contacting the organization.
Data for this property is Required Conditionally
The record will have data in at least one of these properties:
ceterms:address
ceterms:email
Indicates the type(s) of the organization.
orgType:AssessmentBody
orgType:Business
orgType:BusinessAssociation
orgType:CertificationBody
orgType:Collaborative
orgType:CoordinatingBody
orgType:FourYear
orgType:Government
orgType:HighSchool
orgType:LaborUnion
orgType:Magnet
orgType:Military
orgType:NonTraditional
orgType:Postsecondary
orgType:PrimarilyOnline
orgType:ProfessionalAssociation
orgType:QualityAssurance
orgType:SecondarySchool
orgType:Technical
orgType:TrainingProvider
orgType:TwoYear
orgType:Vendor
Data for this property is Required
{
"@type":
"ceterms:CredentialAlignmentObject",
Will always be "ceterms:CredentialAlignmentObject".
Data for this property is Required
"ceterms:targetNodeName":
{
"en":
"Primarily Online"
}
,
The name of the term being referenced. Should be provided for the convenience of the consuming system, but is not guaranteed to appear.
Data for this property is Optional
"ceterms:targetNode":
"orgType:PrimarilyOnline"
The URI to the term being referenced. Should return a JSON object that contains data about the term, such as name and description. CTDL records use controlled vocabularies with namespaced/shorthand URIs, per the JSON-LD specification. The full URI can be determined by retrieving and examining the record's @context.
Data for this property is Recommended Benchmark
}
],
"ceterms:agentSectorType":
[
Indicates whether the organization is public, private, and/or nonprofit.
agentSector:PrivateForProfit
agentSector:PrivateNonProfit
agentSector:Public
Data for this property is Required
{
"@type":
"ceterms:CredentialAlignmentObject",
Will always be "ceterms:CredentialAlignmentObject".
Data for this property is Required
"ceterms:targetNodeName":
{
"en":
"Private Not-For-Profit"
}
,
The name of the term being referenced. Should be provided for the convenience of the consuming system, but is not guaranteed to appear.
Data for this property is Optional
"ceterms:targetNode":
"agentSector:PrivateNonProfit"
The URI to the term being referenced. Should return a JSON object that contains data about the term, such as name and description. CTDL records use controlled vocabularies with namespaced/shorthand URIs, per the JSON-LD specification. The full URI can be determined by retrieving and examining the record's @context.
Data for this property is Recommended Benchmark
}
],
}
Credential
{
"@type":
"See Description",
Type of the Credential. In CTDL, "Credential" is actually shorthand for any of a number of classes (sometimes called credential types). The value of the "@type" property will always be exactly one of these types:
ceterms:ApprenticeshipCertificate
ceterms:AssociateDegree
ceterms:AssociateOfAppliedArtsDegree
ceterms:AssociateOfAppliedScienceDegree
ceterms:AssociateOfArtsDegree
ceterms:AssociateOfScienceDegree
ceterms:BachelorDegree
ceterms:BachelorOfArtsDegree
ceterms:BachelorOfScienceDegree
ceterms:Badge
ceterms:Certificate
ceterms:CertificateOfCompletion
ceterms:Certification
ceterms:Credential
ceterms:Degree
ceterms:DigitalBadge
ceterms:Diploma
ceterms:DoctoralDegree
ceterms:GeneralEducationDevelopment
ceterms:JourneymanCertificate
ceterms:License
ceterms:MasterCertificate
ceterms:MasterDegree
ceterms:MasterOfArtsDegree
ceterms:MasterOfScienceDegree
ceterms:MicroCredential
ceterms:OpenBadge
ceterms:ProfessionalDoctorate
ceterms:QualityAssuranceCredential
ceterms:ResearchDoctorate
ceterms:SecondarySchoolDiploma
ceterms:SpecialistDegree
Data for this property is Required
"@id":
"https://credentialengineregistry.org/graph/ce-b321c9af-68f8-46f6-8ca9-dcb4789e017b",
The externally-resolvable identifier for this Credential.
Data for this property is Required
"ceterms:ctid":
"ce-b321c9af-68f8-46f6-8ca9-dcb4789e017b"
The CTID is the unique identifier for the Credential in the Registry. CTID is composed of the prefix "ce-" and an ordinary
GUID. The CTID for this Credential is also used at the end of the URI in its @id property.
Data for this property is Required
"ceterms:name":
{
"en":
"My Credential Name"
}
,
The name of the Credential.
Data for this property is Required
"ceterms:description":
{
"en":
"My Credential's Description"
}
,
The description for the Credential.
Data for this property is Required
"ceterms:subjectWebpage":
"http://webpage-for-my-credential.com/about/credential/123",
A webpage or website for the Credential.
Data for this property is Required
"ceterms:inLanguage":
"en",
The primary language in which the Credential is offered, even if it involves other languages.
Data for this property is Required
A list of URIs that reference Organizations that own the Credential. This will usually only contain one value. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Required Conditionally
The record will have data in at least one of these properties:
ceterms:ownedBy
ceterms:offeredBy
"https://credentialengineregistry.org/graph/ce-08180451-f9da-49c1-9d95-f4f51b10712c",
Example URI for a standalone Organization in the Registry
"_:60ee05f3-0090-410e-bef2-59bce12b3ae3"
Example URI for a blank node that would be found in the @graph for the Credential.
],
A list of URIs that reference Organizations that offer the Credential. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Required Conditionally
The record will have data in at least one of these properties:
ceterms:ownedBy
ceterms:offeredBy
"https://credentialengineregistry.org/graph/ce-f153c43a-e6c3-4a68-a14b-e46d56708b82",
Example URI for a standalone Organization in the Registry
"_:e9739287-b368-4c8d-af08-f6c6e1a972fc"
Example URI for a blank node that would be found in the @graph for the Credential.
],
"ceterms:credentialStatusType":
[
The current status of the Credential. This should be one of the following values:
credentialStat:Active
credentialStat:Ceasing
credentialStat:Deprecated
credentialStat:Probationary
credentialStat:Suspended
credentialStat:TeachOut
Data for this property is Required
{
"@type":
"ceterms:CredentialAlignmentObject",
Will always be "ceterms:CredentialAlignmentObject".
Data for this property is Required
"ceterms:targetNodeName":
The name of the term being referenced. Should be provided for the convenience of the consuming system, but is not guaranteed to appear.
Data for this property is Optional
"ceterms:targetNode":
"credentialStat:Probationary"
The URI to the term being referenced. Should return a JSON object that contains data about the term, such as name and description. CTDL records use controlled vocabularies with namespaced/shorthand URIs, per the JSON-LD specification. The full URI can be determined by retrieving and examining the record's @context.
Data for this property is Recommended Benchmark
}
],
Requirements for earning the Credential. If multiple Condition Profiles are present inside the requires property (which should be rare), the data inside each Condition Profile should be concatenated together to determine the complete set of requirements for that Credential.
Data for this property is Recommended Benchmark
{
"@type":
"ceterms:ConditionProfile",
Will always be "ceterms:ConditionProfile".
Data for this property is Required
The name for this set of requirements, e.g. "Traditional Learning" or "Accelerated Path". May not always be present.
Data for this property is Recommended Benchmark
"ceterms:description":
{
"en":
"This Credential requires you to..."
}
,
A description of the requirements. This may or may not include data that is described elsewhere in the Condition Profile.
Data for this property is Required
"ceterms:targetAssessment":
[
A list of URIs that reference Assessments that are required to earn the Credential, if any. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Recommended Benchmark
"https://credentialengineregistry.org/graph/ce-2c2e5e3c-2047-4e69-ae36-c323c9da141b",
Example URI for a standalone Assessment in the Registry
"_:c39b5057-f875-4225-b733-fdbaa5d04ae1"
Example URI for a blank node that would be found in the @graph for the Credential.
],
"ceterms:targetCompetency":
[
A list of Credential Alignment Objects that reference competencies that are required to complete or attain the Credential, if any.
Data for this property is Recommended Benchmark
{
"@type":
"ceterms:CredentialAlignmentObject",
Will always be "ceterms:CredentialAlignmentObject".
Data for this property is Required
"ceterms:targetNodeName":
{
"en":
"Computer Proficiency"
}
,
The name, if any, of the competency being referenced. Will usually not be present since most competencies do not have distinct names.
Data for this property is Optional
"ceterms:targetNodeDescription":
{
"en":
"Must know, have skills with, and/or be able to..."
}
,
The text of the competency. This may be provided for the convenience of the consumer of the data, but it is not required. It may also become outdated if the text of the competency changes after the Credential is published.
Data for this property is Recommended Benchmark
"ceterms:targetNode":
"https://credentialengineregistry.org/resources/ce-d3f97f18-7924-4c64-92dc-36918093aa5d"
The URI to the competency being referenced. It is recommended to always resolve this data in order to ensure your system has the most up to date version of the Competency. In some rare cases, competencies may not have URIs - in those cases, the ceterms:targetNodeDescription field should provide the text of the competency
Data for this property is Recommended Benchmark
}
],
"ceterms:audienceType":
[
If the requirements described by this Condition Profile only apply to a specific set of target users, they should be described here. For instance, if this Condition Profile only applies to veterans, the value for ceterms:audienceType should include "audience:FormerMilitary". In most cases, a set of requirements will apply to everyone, and ceterms:audienceType should therefore not be used.
audience:Citizen
audience:CulturalEthnicMinority
audience:CurrentlyIncarcerated
audience:CurrentMilitary
audience:CurrentMilitaryDependent
audience:CurrentMilitarySpouse
audience:CurrentStudent
audience:Displaced
audience:FormerlyIncarcerated
audience:FormerMember
audience:FormerMilitary
audience:FormerMilitaryDependent
audience:FormerMilitarySpouse
audience:FormerStudent
audience:FullTime
audience:FutureMember
audience:FutureStudent
audience:Homemaker
audience:JobSeeker
audience:Member
audience:NonCitizen
audience:NonMember
audience:NonResident
audience:PartTime
audience:PrivateEmployee
audience:PublicEmployee
audience:Resident
audience:Unemployed
audience:Youth
Data for this property is Optional
{
"@type":
"ceterms:CredentialAlignmentObject",
Will always be "ceterms:CredentialAlignmentObject".
Data for this property is Required
"ceterms:targetNodeName":
The name of the term being referenced. Should be provided for the convenience of the consuming system, but is not guaranteed to appear.
Data for this property is Optional
"ceterms:targetNode":
"audience:JobSeeker"
The URI to the term being referenced. Should return a JSON object that contains data about the term, such as name and description. CTDL records use controlled vocabularies with namespaced/shorthand URIs, per the JSON-LD specification. The full URI can be determined by retrieving and examining the record's @context.
Data for this property is Recommended Benchmark
}
]
}
]
}
Assessment
{
"@type":
"ceterms:AssessmentProfile",
Will always be "ceterms:AssessmentProfile".
Data for this property is Required
"@id":
"https://credentialengineregistry.org/graph/ce-4d59e865-0573-4046-ab8d-c1a00d91b690",
The externally-resolvable identifier for this Assessment.
Data for this property is Required
"ceterms:ctid":
"ce-4d59e865-0573-4046-ab8d-c1a00d91b690"
The CTID is the unique identifier for the Assessment in the Registry. CTID is composed of the prefix "ce-" and an ordinary
GUID. The CTID for this Assessment is also used at the end of the URI in its @id property.
Data for this property is Required
"ceterms:name":
{
"en":
"My Assessment Name"
}
,
The name of the Assessment.
Data for this property is Required
"ceterms:description":
{
"en":
"My Assessment's Description"
}
,
The description for the Assessment.
Data for this property is Required
"ceterms:subjectWebpage":
"http://webpage-for-my-assessment.com/about/assessment/123",
A webpage or website for the Assessment.
Data for this property is Required
"ceterms:inLanguage":
"en",
The primary language in which the Assessment is offered, even if it involves other languages.
Data for this property is Required
A list of URIs that reference Organizations that own the Assessment. This will usually only contain one value. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Required Conditionally
The record will have data in at least one of these properties:
ceterms:ownedBy
ceterms:offeredBy
"https://credentialengineregistry.org/graph/ce-b308acfc-089c-4711-b4b1-eff27fdd3b2a",
Example URI for a standalone Organization in the Registry
"_:ed95ffcb-8a5c-49d8-bdc9-46f84fa7f796"
Example URI for a blank node that would be found in the @graph for the Assessment.
],
A list of URIs that reference Organizations that offer the Assessment. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Required Conditionally
The record will have data in at least one of these properties:
ceterms:ownedBy
ceterms:offeredBy
"https://credentialengineregistry.org/graph/ce-97092cab-f504-4cea-828e-bc5691bf8e0f",
Example URI for a standalone Organization in the Registry
"_:f78471ea-40d1-4867-9437-8bf7a23e615a"
Example URI for a blank node that would be found in the @graph for the Assessment.
],
"ceterms:availableOnlineAt":
"http://take-an-assessment.com/123",
Describes where the user can go to take this assessment.
Data for this property is Required Conditionally
The record will have data in at least one of these properties:
ceterms:availableAt
ceterms:availableOnlineAt
ceterms:availabilityListing
Requirements for earning the Assessment. If multiple Condition Profiles are present inside the requires property (which should be rare), the data inside each Condition Profile should be concatenated together to determine the complete set of requirements for that Assessment.
Data for this property is Recommended Benchmark
{
"@type":
"ceterms:ConditionProfile",
Will always be "ceterms:ConditionProfile".
Data for this property is Required
The name for this set of requirements, e.g. "Traditional Learning" or "Accelerated Path". May not always be present.
Data for this property is Recommended Benchmark
"ceterms:description":
{
"en":
"This Assessment requires you to..."
}
,
A description of the requirements. This may or may not include data that is described elsewhere in the Condition Profile.
Data for this property is Required
"ceterms:targetAssessment":
[
A list of URIs that reference Assessments that are required to earn the Assessment, if any. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Recommended Benchmark
"https://credentialengineregistry.org/graph/ce-05c75d0e-140f-4b8b-959f-938aca634577",
Example URI for a standalone Assessment in the Registry
"_:e3b3a682-eba5-4382-bb97-94f1794573c0"
Example URI for a blank node that would be found in the @graph for the Assessment.
],
"ceterms:targetCompetency":
[
A list of Credential Alignment Objects that reference competencies that are required to complete or attain the Assessment, if any.
Data for this property is Recommended Benchmark
{
"@type":
"ceterms:CredentialAlignmentObject",
Will always be "ceterms:CredentialAlignmentObject".
Data for this property is Required
"ceterms:targetNodeName":
{
"en":
"Computer Proficiency"
}
,
The name, if any, of the competency being referenced. Will usually not be present since most competencies do not have distinct names.
Data for this property is Optional
"ceterms:targetNodeDescription":
{
"en":
"Must know, have skills with, and/or be able to..."
}
,
The text of the competency. This may be provided for the convenience of the consumer of the data, but it is not required. It may also become outdated if the text of the competency changes after the Assessment is published.
Data for this property is Recommended Benchmark
"ceterms:targetNode":
"https://credentialengineregistry.org/resources/ce-d3f97f18-7924-4c64-92dc-36918093aa5d"
The URI to the competency being referenced. It is recommended to always resolve this data in order to ensure your system has the most up to date version of the Competency. In some rare cases, competencies may not have URIs - in those cases, the ceterms:targetNodeDescription field should provide the text of the competency
Data for this property is Recommended Benchmark
}
],
"ceterms:audienceType":
[
If the requirements described by this Condition Profile only apply to a specific set of target users, they should be described here. For instance, if this Condition Profile only applies to veterans, the value for ceterms:audienceType should include "audience:FormerMilitary". In most cases, a set of requirements will apply to everyone, and ceterms:audienceType should therefore not be used.
audience:Citizen
audience:CulturalEthnicMinority
audience:CurrentlyIncarcerated
audience:CurrentMilitary
audience:CurrentMilitaryDependent
audience:CurrentMilitarySpouse
audience:CurrentStudent
audience:Displaced
audience:FormerlyIncarcerated
audience:FormerMember
audience:FormerMilitary
audience:FormerMilitaryDependent
audience:FormerMilitarySpouse
audience:FormerStudent
audience:FullTime
audience:FutureMember
audience:FutureStudent
audience:Homemaker
audience:JobSeeker
audience:Member
audience:NonCitizen
audience:NonMember
audience:NonResident
audience:PartTime
audience:PrivateEmployee
audience:PublicEmployee
audience:Resident
audience:Unemployed
audience:Youth
Data for this property is Optional
{
"@type":
"ceterms:CredentialAlignmentObject",
Will always be "ceterms:CredentialAlignmentObject".
Data for this property is Required
"ceterms:targetNodeName":
The name of the term being referenced. Should be provided for the convenience of the consuming system, but is not guaranteed to appear.
Data for this property is Optional
"ceterms:targetNode":
"audience:JobSeeker"
The URI to the term being referenced. Should return a JSON object that contains data about the term, such as name and description. CTDL records use controlled vocabularies with namespaced/shorthand URIs, per the JSON-LD specification. The full URI can be determined by retrieving and examining the record's @context.
Data for this property is Recommended Benchmark
}
]
}
]
}
Learning Opportunity
{
"@type":
"ceterms:LearningOpportunityProfile",
Will always be "ceterms:LearningOpportunityProfile".
Data for this property is Required
"@id":
"https://credentialengineregistry.org/graph/ce-70ee79fa-4dd7-45da-8c81-a3f6037d9551",
The externally-resolvable identifier for this Learning Opportunity.
Data for this property is Required
"ceterms:ctid":
"ce-70ee79fa-4dd7-45da-8c81-a3f6037d9551"
The CTID is the unique identifier for the Learning Opportunity in the Registry. CTID is composed of the prefix "ce-" and an ordinary
GUID. The CTID for this Learning Opportunity is also used at the end of the URI in its @id property.
Data for this property is Required
"ceterms:name":
{
"en":
"My Learning Opportunity Name"
}
,
The name of the Learning Opportunity.
Data for this property is Required
"ceterms:description":
{
"en":
"My Learning Opportunity's Description"
}
,
The description for the Learning Opportunity.
Data for this property is Required
"ceterms:subjectWebpage":
"http://webpage-for-my-learning_opportunity.com/about/learning_opportunity/123",
A webpage or website for the Learning Opportunity.
Data for this property is Required
"ceterms:inLanguage":
"en",
The primary language in which the Learning Opportunity is offered, even if it involves other languages.
Data for this property is Required
A list of URIs that reference Organizations that own the Learning Opportunity. This will usually only contain one value. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Required Conditionally
The record will have data in at least one of these properties:
ceterms:ownedBy
ceterms:offeredBy
"https://credentialengineregistry.org/graph/ce-6debb9ee-ca68-4594-be6e-81ca5f3dc29f",
Example URI for a standalone Organization in the Registry
"_:6eb0db8f-b12d-48c5-95ef-e1638549b1c1"
Example URI for a blank node that would be found in the @graph for the Learning Opportunity.
],
A list of URIs that reference Organizations that offer the Learning Opportunity. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Required Conditionally
The record will have data in at least one of these properties:
ceterms:ownedBy
ceterms:offeredBy
"https://credentialengineregistry.org/graph/ce-48558c69-7f05-49d2-827a-4ef9ce42569f",
Example URI for a standalone Organization in the Registry
"_:2bd09a83-b8fa-4dcf-9621-4a940a1985d1"
Example URI for a blank node that would be found in the @graph for the Learning Opportunity.
],
"ceterms:availableOnlineAt":
"http://attend-a-learning-opportunity.com/123",
Describes where the user can go to pursue this learning opportunity.
Data for this property is Required Conditionally
The record will have data in at least one of these properties:
ceterms:availableAt
ceterms:availableOnlineAt
ceterms:availabilityListing
Requirements for earning the Learning Opportunity. If multiple Condition Profiles are present inside the requires property (which should be rare), the data inside each Condition Profile should be concatenated together to determine the complete set of requirements for that Learning Opportunity.
Data for this property is Recommended Benchmark
{
"@type":
"ceterms:ConditionProfile",
Will always be "ceterms:ConditionProfile".
Data for this property is Required
The name for this set of requirements, e.g. "Traditional Learning" or "Accelerated Path". May not always be present.
Data for this property is Recommended Benchmark
"ceterms:description":
{
"en":
"This Learning Opportunity requires you to..."
}
,
A description of the requirements. This may or may not include data that is described elsewhere in the Condition Profile.
Data for this property is Required
"ceterms:targetAssessment":
[
A list of URIs that reference Assessments that are required to earn the Learning Opportunity, if any. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Recommended Benchmark
"https://credentialengineregistry.org/graph/ce-7e1ef22b-7034-4a61-9053-e404af504087",
Example URI for a standalone Assessment in the Registry
"_:9ef007e9-2dc5-4185-ab51-f1a87352b263"
Example URI for a blank node that would be found in the @graph for the Learning Opportunity.
],
"ceterms:targetCompetency":
[
A list of Credential Alignment Objects that reference competencies that are required to complete or attain the Learning Opportunity, if any.
Data for this property is Recommended Benchmark
{
"@type":
"ceterms:CredentialAlignmentObject",
Will always be "ceterms:CredentialAlignmentObject".
Data for this property is Required
"ceterms:targetNodeName":
{
"en":
"Computer Proficiency"
}
,
The name, if any, of the competency being referenced. Will usually not be present since most competencies do not have distinct names.
Data for this property is Optional
"ceterms:targetNodeDescription":
{
"en":
"Must know, have skills with, and/or be able to..."
}
,
The text of the competency. This may be provided for the convenience of the consumer of the data, but it is not required. It may also become outdated if the text of the competency changes after the Learning Opportunity is published.
Data for this property is Recommended Benchmark
"ceterms:targetNode":
"https://credentialengineregistry.org/resources/ce-d3f97f18-7924-4c64-92dc-36918093aa5d"
The URI to the competency being referenced. It is recommended to always resolve this data in order to ensure your system has the most up to date version of the Competency. In some rare cases, competencies may not have URIs - in those cases, the ceterms:targetNodeDescription field should provide the text of the competency
Data for this property is Recommended Benchmark
}
],
"ceterms:audienceType":
[
If the requirements described by this Condition Profile only apply to a specific set of target users, they should be described here. For instance, if this Condition Profile only applies to veterans, the value for ceterms:audienceType should include "audience:FormerMilitary". In most cases, a set of requirements will apply to everyone, and ceterms:audienceType should therefore not be used.
audience:Citizen
audience:CulturalEthnicMinority
audience:CurrentlyIncarcerated
audience:CurrentMilitary
audience:CurrentMilitaryDependent
audience:CurrentMilitarySpouse
audience:CurrentStudent
audience:Displaced
audience:FormerlyIncarcerated
audience:FormerMember
audience:FormerMilitary
audience:FormerMilitaryDependent
audience:FormerMilitarySpouse
audience:FormerStudent
audience:FullTime
audience:FutureMember
audience:FutureStudent
audience:Homemaker
audience:JobSeeker
audience:Member
audience:NonCitizen
audience:NonMember
audience:NonResident
audience:PartTime
audience:PrivateEmployee
audience:PublicEmployee
audience:Resident
audience:Unemployed
audience:Youth
Data for this property is Optional
{
"@type":
"ceterms:CredentialAlignmentObject",
Will always be "ceterms:CredentialAlignmentObject".
Data for this property is Required
"ceterms:targetNodeName":
The name of the term being referenced. Should be provided for the convenience of the consuming system, but is not guaranteed to appear.
Data for this property is Optional
"ceterms:targetNode":
"audience:JobSeeker"
The URI to the term being referenced. Should return a JSON object that contains data about the term, such as name and description. CTDL records use controlled vocabularies with namespaced/shorthand URIs, per the JSON-LD specification. The full URI can be determined by retrieving and examining the record's @context.
Data for this property is Recommended Benchmark
}
]
}
]
}
Competency Framework
{
"@id":
"https://credentialengineregistry.org/graph/ce-9a65a5a3-f4ce-4c9e-8e47-e7f9ba3a20c9",
The externally-resolvable identifier for this Competency Framework.
Data for this property is Required
"ceterms:ctid":
"ce-9a65a5a3-f4ce-4c9e-8e47-e7f9ba3a20c9"
The CTID is the unique identifier for the Competency Framework in the Registry. CTID is composed of the prefix "ce-" and an ordinary
GUID. The CTID for this Competency Framework is also used at the end of the URI in its @id property.
Data for this property is Optional
"@type":
"ceasn:CompetencyFramework"
Will always be "ceasn:CompetencyFramework".
Data for this property is Required
"ceterms:ctid":
"ce-e15c3840-c341-4435-a347-604140d6219d"
The CTID is the unique identifier for the Competency Framework in the Registry. CTID is composed of the prefix "ce-" and an ordinary
GUID. The CTID for this Competency Framework is also used at the end of the URI in its @id property.
Data for this property is Optional
"ceasn:name":
{
"en":
"My Competency Framework Name"
}
,
The name of the Competency Framework.
Data for this property is Optional
"ceasn:description":
{
"en":
"My Competency Framework's Description"
}
,
The description for the Competency Framework.
Data for this property is Optional
"ceasn:inLanguage":
"en",
The primary language in which the Competency Framework is offered, even if it involves other languages.
Data for this property is Optional
"ceasn:dateCreated":
"2019-3-25",
The date that the competency framework was created.
Data for this property is Optional
A list of URIs that reference Organizations that published the Competency Framework. This will usually only contain one value. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Optional
"https://credentialengineregistry.org/graph/ce-f668806f-7293-458c-8ee7-b40bade92ac2",
Example URI for a standalone Organization in the Registry
"_:86d70f51-ddd6-4af1-80ad-4955e54aee4c"
Example URI for a blank node that would be found in the @graph for the Competency Framework.
],
A list of URIs that reference Competencies that are at the top-most layer or level of this Competency Framework. To list all competencies for the framework, use the ceasn:hasPart property. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Optional
"https://credentialengineregistry.org/graph/ce-f4af02b8-19b0-4892-ba9c-07730c6f8e6f",
Example URI for a standalone Competency in the Registry
"_:ad5d6f33-d2e9-4eee-84e0-79bd79d98528"
Example URI for a blank node that would be found in the @graph for the Competency.
],
A list of URIs that reference Competencies that are a part of this Competency Framework, without indication or regard of their position within it or relative to each other. To list only the first or top layer or level of competencies, use the ceasn:hasTopChild property. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Optional
"https://credentialengineregistry.org/graph/ce-6ccbb41b-e0e1-43d0-908f-bb6ae4eeb062",
Example URI for a standalone Competency in the Registry
"_:3ffa08d7-0f58-4a94-8ba2-f8797d875620"
Example URI for a blank node that would be found in the @graph for the Competency.
],
}
Competency
{
"@id":
"https://credentialengineregistry.org/graph/ce-e6784528-2f6c-491a-99ea-bbc1811ce9fc",
The externally-resolvable identifier for this Competency.
Data for this property is Required
"@type":
"ceasn:Competency"
Will always be "ceasn:Competency".
Data for this property is Required
"ceterms:ctid":
"ce-e6784528-2f6c-491a-99ea-bbc1811ce9fc"
The CTID is the unique identifier for the Competency in the Registry. CTID is composed of the prefix "ce-" and an ordinary
GUID. The CTID for this Competency is also used at the end of the URI in its @id property.
Data for this property is Optional
"ceasn:competencyText":
{
"en":
"User will be able to do ___"
}
,
The text of the competency itself.
Data for this property is Optional
"ceasn:dateCreated":
"2019-3-25",
The date that the competency was created.
Data for this property is Optional
"ceasn:inLanguage":
"en",
The primary language in which the Competency is written, even if it involves other languages.
Data for this property is Optional
"ceasn:comment":
{
"en":
"This competency tracks user understanding of ___"
}
,
Text that helps describe or clarify the competency, but which is not part of the competency itself.
Data for this property is Optional
A list of URIs that reference Competency Frameworks that this Competency is a part of. This will usually only contain one value. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Optional
"https://credentialengineregistry.org/graph/ce-0b9b3cb2-7c35-446f-8966-cd2bcf886791",
Example URI for a standalone Competency Framework in the Registry
"_:0169cb90-4c11-4833-bc2c-7162e524dad8"
Example URI for a blank node that would be found in the @graph for the Competency.
],
A list of URIs that reference Organizations that created the Competency. This will usually only contain one value. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Optional
"https://credentialengineregistry.org/graph/ce-f5ffec84-31c3-4d69-b609-5f7e97425416",
Example URI for a standalone Organization in the Registry
"_:95e2664b-74c3-4871-bc56-6c3ee12da393"
Example URI for a blank node that would be found in the @graph for the Competency.
],
A list of URIs that reference Competencies that are a part of this Competency. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Optional
"https://credentialengineregistry.org/graph/ce-e464389c-d1f0-4294-b9f0-e9121e1aefab",
Example URI for a standalone Competency in the Registry
"_:d5ae5a22-5e82-4565-9a0e-4d8b20b50343"
Example URI for a blank node that would be found in the @graph for the Competency.
],
A list of URIs that reference Competencies that this Competency is a part of. This will usually only contain one value. Note: This field may contain a mix of both absolute URIs and blank node URIs that are relative to the @graph that this record is contained in.
Data for this property is Optional
"https://credentialengineregistry.org/graph/ce-d8e644fd-0976-4abc-a94d-48fd0c1e18b7",
Example URI for a standalone Competency in the Registry
"_:18ecf5e0-74ac-4c93-8a56-03c9727845b9"
Example URI for a blank node that would be found in the @graph for the Competency.
],
}
For an explanation of CTDL, review the CTDL Handbook. All data in the Registry will conform to the Minimum Data Policy.