@prefix univ: @prefix exu: @prefix dcterms: @prefix dctypes: @prefix sioc: @prefix foaf: @prefix dbpedia: @prefix db-ont: @prefix aiiso: @prefix rbm: @prefix bibo: @prefix madbadevil: @prefix banned: ## Example 1 : A course studying Frankenstein exu:HistOfScience101 a aiiso:Course . # the catalogue info for the course exu:HistOfScience101-Spring09-s01-A a univ:CourseGroup ; ## the group of people actually studying dcterms:title "Mad, Bad, and Evil Scientists" ; foaf:page ; univ:StudyWork dbpedia:Frankenstein . ## Example 2 : An expanded version of Example 1. A course at Example University studying ## Frankenstein with the Norton Critial edition, also including some students and the teacher, the course blog, a topic, and the term info exu:HistOfScience101 a aiiso:Course ; # the catalogue info for the course univ:baseID "HIST" ; univ:courseNumber "101"; univ:credits "3"; exu:HistOfScience101-Spring09-s01-A a univ:CourseGroup ; ## the group of people actually studying foaf:name "Mad, Bad, and Evil Scientists" ; foaf:page ; univ:StudyWork dbpedia:Frankenstein ; foaf:member exu:student1; # arbitrary student URIs -- a univ:CourseGroup is a subclass of foaf:member exu:student2; # foaf:Group univ:taughtBy exu:faculty1; # arbitrary faculty URI univ:studyThingGrouping madbadevil:studyset1 ; # see below for the studyset univ:term exu:Spring2009 ; # see below for the term univ:studiesWithToolGenre dbpedia:Blog ; univ:studiesWithTool madbadevil:blog ; univ:studiesWithTopic dbpedia:History_of_science . # the study set relates the work to the document used # in this case, the basic relationship is the same as between a FRBR Work and a FRBR Manifestation # the actual URIs used could be from anywhere, but I'm using dbpedia and the RDF book mashup to # maximize Linked Open Data goodness madbadevil:studyset1 a univ:StudyThingGrouping ; univ:work dbpedia:Frankenstein ; univ:document rbm:0393964582 . rbm:0393964582 a bibo:Document ; bibo:isbn10 0393964582 . madbadevil:blog univ:poweredBy dbpedia:Wordpress . exu:Spring2009 a univ:Term ; univ:startDate "2009-01-15" ; univ:endDate "2009-05-20" . ## Example 3: Expanding the data from Examples 1 and 2 about the aiiso:Course exu:HistOfScience101-Spring09-s01-A a univ:CourseGroup ; ## the group of people actually studying univ:basedAt exu:MainCampus . ## assert that this group is at the main campus exu:HistOfScience101 a aiiso:Course ; univ:baseID "HIST" ; # univ:baseID, courseNumber, and suffix together can make up an aiiso:code . univ:courseNumber "101"; aiiso:responsibilityOf exu:HistoryDept ; univ:offeredOnCampus exu:MainCampus ; univ:offeredOnCampus exu:DistanceCampus ; exu:HistoryDept a aiiso:Department ; foaf:member exu:faculty1 ; # a faculty member in the department aiiso:organizationWithin exu:this . exu:MainCampus a univ:Campus ; aiiso:organizationWithin exu:this ; univ:city geonames:FredericksburgVA . exu:DistanceCampus a univ:Campus ; aiiso:organizationWithin exu:this ; univ:city geoname:MaynardIA . ## Example 4: A variation on a course, with a particular course group and some example info for the course group exu:this a aiiso:Institution ; univ:hasCampus exu:FburgCampus ; univ:hasCampus exu:StaffordCampus ; univ:hasCampus exu:DahlgrenCampus . exu:FSEM100 a aiiso:Course ; univ:offeredOnCampus exu:FburgCampus ; univ:courseVariation exu:FSEM100KK ; univ:baseID "FSEM" ; univ:courseNumber "100" . exu:FSEM100KK a aiiso:Course ; univ:offeredOnCampus exu:FburgCampus ; univ:term exu:Fall2007 ; univ:taughtBy exu:nmik ; univ:baseID "FSEM" ; univ:courseNumber "100" ; univ:suffix "KK" ; univ:courseGroupType exu:FreshmanSeminar ; univ:meetPlace exu:TrinkleHall-301 ; univ:studiesWithTool ; # this exists univ:studiesWithTopic dbpedia:Graffiti ; univ:studyThingGrouping banned:ss1 ; univ:studyThingGrouping banned:ss2 ; univ:studiesWithDocument . a sioc:Space . exu:TrinkleHall-301 a univ:CampusPlace ; univ:roomID "301" ; univ:partOfCampusPlace exu:TrinkleHall . exu:Fall2007 a univ:Term ; univ:startDate "2007-08-20" ; univ:endDate "2007-12-21" . banned:ss1 a univ:StudySet ; univ:work dbpedia:The_Republic_(Plato) ; univ:document . banned:ss2 a univ:StudySet ; univ:work dbpedia:Metaphysics_(Aristotle) ; univ:document . a sioc:Space ; univ:poweredBy dbpedia:Wordpress .