#Open vocab for library data from Huddersfield ov:UnivCourse a rdfs:Class ; rdfs:label "University course"; rdfs:comment "A course taught at a university" . ov:UnivSchool a rdfs:Class ; rdfs:label "School" ; rdfs:comment "A school of a university (e.g. School of Business)" . ov:HUDSchoolLoan a rdfs:Class ; rdfs:label "School Loan History" ; rdfs:comment "The loan history for a book within a school" . ov:HUDYearLoan a rdfs:Class ; rdfs:label "Year Loan History" ; rdfs:comment "The loan history for a book by year" . ov:HUDCourseLoan a rdfs:Class ; rdfs:label "Course Loan History" ; rdfs:comment "The loan history for a book by course" . ov:HUDSuggestion a rdfs:Class ; rdfs:label "Suggestion" ; rdfs:comment "Suggested books based on circulation data" . ov:hudCourse a rdfs:Property ; rdfs:label "course" ; rdfs:domain ov:HUDCourseLoan ; rdfs:range ov:UnivCourse . ov:hudLoanTotal a rdfs:Property ; rdfs:domain bibo:Book ; rdfs:label "total loans" ; rdfs:comment "The total number of loans for a book" . ov:hudSchool a rdfs:Property ; rdfs:domain ov:HUDSchoolLoan ; rdfs:range ov:UnivSchool ; rdfs:label "school"; rdfs:comment "The school associated with the loan history of a book" . ov:hudLoanCount a rdfs:Property ; rdfs:domain [rdf:type owl:Class ; owl:unionOf ( ov:HUDYearLoan ov:HUDSchoolLoan ov:HUDCourseLoan ) ] ; rdfs:label "loan count" ; rdfs:comment "The number of loans of a book either within a year or a school" . ov:hudSchoolLoan a rdfs:Property ; rdfs:domain bibo:Book ; rdfs:range ov:HUDSchoolLoan ; rdfs:label "loan in school" . ov:hudCourseLoan a rdfs:Property ; rdfs:domain bibo:Book ; rdfs:range ov:HUDCourseLoan ; rdfs:label "loan for course" . ov:hudYearLoan a rdfs:Property ; rdfs:domain bibo:Book ; rdfs:range ov:HUDYearLoan ; rdfs:label "loan in year" . ov:hudYear a rdfs:Property ; rdfs:domain ov:HUDYearLoan ; rdfs:label "year"; rdfs:comment "The year associated with a loan history" . ov:hudSuggestion a rdfs:Property ; rdfs:domain bibo:book ; rdfs:range ov:HUDSuggestion ; rdfs:label "suggestion" . ov:hudSuggestedBook a rdfs:Property ; rdfs:domain ov:HUDSugggestion ; rdfs:range bibo:Book ; rdfs:label "suggestion" . ov:hudCommon a rdfs:Property ; rdfs:domain ov:HUDSuggestion ; rdfs:label "loans in common" ; rdfs:comment "The number of loans two books have in common. (The sum of before, same, and after)" . ov:hudBefore a rdfs:Property ; rdfs:domain ov:HUDSuggestion; rdfs:label "loans before" . ov:hudAfter a rdfs:Property ; rdfs:domain ov:HUDSuggestion; rdfs:label "loans after" . ov:hudSame a rdfs:Property ; rdfs:domain ov:HUDSuggestion; rdfs:label "simultaneous loans" .