Skip to content
Snippets Groups Projects
Commit 1d690b95 authored by Frank Lange's avatar Frank Lange
Browse files

add new learning resource types

parent 1ff71904
No related branches found
No related tags found
No related merge requests found
......@@ -55,14 +55,30 @@ LEARNING_RESOURCE_TYPE_FACET = FacetObject(
predicate=MoDalia.hasLearningType,
items={
bibo.Article: "Article",
hcrt.assessment: "Assessment",
MoDalia.BestPractices: "Best Practices",
bibo.Book: "Book",
hcrt.case_study: "Case Study",
SCHEMA.SoftwareSourceCode: "Code",
MoDalia.CodeNotebook: "Code Notebook",
MoDalia.Cookbook: "Cookbook",
hcrt.course: "Course",
hcrt.diagram: "Diagram",
hcrt.drill_and_practice: "Drill and Practice",
hcrt.educational_game: "Educational Game",
hcrt.experiment: "Experiment",
MoDalia.Lecture: "Lecture",
hcrt.lesson_plan: "Lesson Plan",
SCHEMA.PodcastSeries: "PodcastSeries",
MoDalia.Poster: "Poster",
hcrt.index: "Reference Work",
bibo.Report: "Report",
hcrt.text: "Text",
hcrt.textbook: "Textbook",
bibo.Thesis: "Thesis",
MoDalia.Tutorial: "Tutorial",
bibo.Webpage: "Web page",
hcrt.worksheet: "Worksheet",
MoDalia.Workshop: "Workshop",
}
)
......@@ -18,14 +18,16 @@ BestPractices = URIRef(NS + "BestPractices")
Code = URIRef(NS + "Code")
CodeNotebook = URIRef(NS + "CodeNotebook")
Community = URIRef(NS + "Community")
Cookbook = URIRef(NS + "Cookbook")
DataSteward = URIRef(NS + "DataSteward")
LearningResourceType = URIRef(NS + "LearningResourceType")
Lecture = URIRef(NS + "Lecture")
MastersStudent = URIRef(NS + "MastersStudent")
MediaType = URIRef(NS + "MediaType")
PhDStudent = URIRef(NS + "PhDStudent")
Poster = URIRef(NS + "Poster")
ResourceAttachment = URIRef(NS + "ResourceAttachment")
TargetGroup = URIRef(NS + "TargetGroup")
Tutorial = URIRef(NS + "Tutorial")
Workshop = URIRef(NS + "Workshop")
# Individuals
......
......@@ -19,5 +19,7 @@ url = URIRef(NS + "url")
ImageObject = URIRef(NS + "ImageObject")
Organization = URIRef(NS + "Organization")
Person = URIRef(NS + "Person")
PodcastSeries = URIRef(NS + "PodcastSeries")
SoftwareSourceCode = URIRef(NS + "SoftwareSourceCode")
Text = URIRef(NS + "Text")
VideoObject = URIRef(NS + "VideoObject")
......@@ -9,4 +9,5 @@ NS = "http://purl.org/ontology/bibo/"
Article = URIRef(NS + "Article")
Book = URIRef(NS + "Book")
Report = URIRef(NS + "Report")
Thesis = URIRef(NS + "Thesis")
Webpage = URIRef(NS + "Webpage")
......@@ -7,6 +7,16 @@ from rdflib import URIRef
NS = "https://w3id.org/kim/hcrt/"
# Types
assessment = URIRef(NS + "assessment")
case_study = URIRef(NS + "case_study")
course = URIRef(NS + "course")
diagram = URIRef(NS + "diagram")
drill_and_practice = URIRef(NS + "drill_and_practice")
educational_game = URIRef(NS + "educational_game")
experiment = URIRef(NS + "experiment")
lesson_plan = URIRef(NS + "lesson_plan")
index = URIRef(NS + "index")
slide = URIRef(NS + "slide")
text = URIRef(NS + "text")
textbook = URIRef(NS + "textbook")
worksheet = URIRef(NS + "worksheet")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment