@prefix : <http://www.isibang.ac.in/ns/into#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.isibang.ac.in/ns/into> .

<http://www.isibang.ac.in/ns/into> rdf:type owl:Ontology ;
                                    owl:versionIRI <http://www.isibang.ac.in/ns/into/1.0> ;
                                    <http://purl.org/dc/terms/creator> "Biswanath Dutta"@en ;
                                    <http://purl.org/dc/terms/date> "2007-15-01T00:00:00"@en ;
                                    <http://purl.org/dc/terms/description> "The goal of this Intitutional Ontology (INTO) is to facilitate the representation of information related to the university/ institution including its academic programs, courses, employees, students, projects, degrees, etc."@en ;
                                    <http://purl.org/dc/terms/license> "https://creativecommons.org/licenses/by/4.0/"@en ;
                                    <http://purl.org/dc/terms/modified> "2020-12-24T00:00:00"@en ;
                                    <http://purl.org/dc/terms/title> "Institutional Ontology"@en .

#################################################################
#    Annotation properties
#################################################################

###  http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/date
<http://purl.org/dc/terms/date> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/modified
<http://purl.org/dc/terms/modified> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .


#################################################################
#    Object Properties
#################################################################

###  http://www.isibang.ac.in/ns/into#belongTo
:belongTo rdf:type owl:ObjectProperty .


###  http://www.isibang.ac.in/ns/into#centretHead
:centretHead rdf:type owl:ObjectProperty ;
             rdfs:domain :Centre ;
             rdfs:range :Faculty .


###  http://www.isibang.ac.in/ns/into#city
:city rdf:type owl:ObjectProperty ;
      rdfs:subPropertyOf :belongTo ;
      rdfs:range :City .


###  http://www.isibang.ac.in/ns/into#country
:country rdf:type owl:ObjectProperty ;
         rdfs:subPropertyOf :belongTo ;
         rdfs:range :Country .


###  http://www.isibang.ac.in/ns/into#courseTeachesBy
:courseTeachesBy rdf:type owl:ObjectProperty ;
                 owl:inverseOf :teachesCourse .


###  http://www.isibang.ac.in/ns/into#departmentHead
:departmentHead rdf:type owl:ObjectProperty ;
                rdfs:domain :Department ;
                rdfs:range <http://xmlns.com/foaf/0.1/Person> .


###  http://www.isibang.ac.in/ns/into#district
:district rdf:type owl:ObjectProperty ;
          rdfs:subPropertyOf :belongTo ;
          rdfs:range :District .


###  http://www.isibang.ac.in/ns/into#doctoralDegreeFrom
:doctoralDegreeFrom rdf:type owl:ObjectProperty ;
                    rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                    rdfs:range [ rdf:type owl:Class ;
                                 owl:unionOf ( :Institution
                                               :University
                                             )
                               ] .


###  http://www.isibang.ac.in/ns/into#editorOfEvents
:editorOfEvents rdf:type owl:ObjectProperty ;
                owl:inverseOf :eventsEditor ;
                rdfs:domain :Faculty ;
                rdfs:range :Events .


###  http://www.isibang.ac.in/ns/into#enrolled
:enrolled rdf:type owl:ObjectProperty ;
          rdfs:domain :Student ;
          rdfs:range :AcademicProgramme .


###  http://www.isibang.ac.in/ns/into#eventsEditor
:eventsEditor rdf:type owl:ObjectProperty ;
              rdfs:domain :Events ;
              rdfs:range :Faculty .


###  http://www.isibang.ac.in/ns/into#hasAffiliation
:hasAffiliation rdf:type owl:ObjectProperty ;
                owl:inverseOf :isAffiliationOf ;
                rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                rdfs:range <http://xmlns.com/foaf/0.1/Organization> .


###  http://www.isibang.ac.in/ns/into#hasAuthor
:hasAuthor rdf:type owl:ObjectProperty ;
           owl:inverseOf :hasPublication ;
           rdfs:domain :Publication ;
           rdfs:range <http://xmlns.com/foaf/0.1/Agent> .


###  http://www.isibang.ac.in/ns/into#hasEmployment
:hasEmployment rdf:type owl:ObjectProperty .


###  http://www.isibang.ac.in/ns/into#hasGender
:hasGender rdf:type owl:ObjectProperty ;
           rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
           rdfs:range :Gender .


###  http://www.isibang.ac.in/ns/into#hasPart
:hasPart rdf:type owl:ObjectProperty ;
         owl:inverseOf :isPartOf .


###  http://www.isibang.ac.in/ns/into#hasPrincipalInvestigator
:hasPrincipalInvestigator rdf:type owl:ObjectProperty ;
                          owl:inverseOf :principleInvestigatorOf ;
                          rdfs:domain <http://xmlns.com/foaf/0.1/Project> ;
                          rdfs:range :Faculty .


###  http://www.isibang.ac.in/ns/into#hasProjectAssistant
:hasProjectAssistant rdf:type owl:ObjectProperty ;
                     owl:inverseOf :projectAssistantOf .


###  http://www.isibang.ac.in/ns/into#hasPublication
:hasPublication rdf:type owl:ObjectProperty ;
                rdfs:domain <http://xmlns.com/foaf/0.1/Agent> ;
                rdfs:range :Publication .


###  http://www.isibang.ac.in/ns/into#hasQualification
:hasQualification rdf:type owl:ObjectProperty ;
                  rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                  rdfs:range :Degree .


###  http://www.isibang.ac.in/ns/into#hasResearchInterest
:hasResearchInterest rdf:type owl:ObjectProperty ;
                     owl:inverseOf :researchInterestOf ;
                     rdfs:domain <http://xmlns.com/foaf/0.1/Agent> ;
                     rdfs:range :ResearchTopic .


###  http://www.isibang.ac.in/ns/into#hasSupervisor
:hasSupervisor rdf:type owl:ObjectProperty ;
               owl:inverseOf :supervise ;
               rdfs:domain :Student ;
               rdfs:range :Faculty .


###  http://www.isibang.ac.in/ns/into#hasTeachingAssistant
:hasTeachingAssistant rdf:type owl:ObjectProperty ;
                      owl:inverseOf :teachingAssistantOf .


###  http://www.isibang.ac.in/ns/into#isAffiliationOf
:isAffiliationOf rdf:type owl:ObjectProperty ;
                 rdfs:domain <http://xmlns.com/foaf/0.1/Organization> ;
                 rdfs:range <http://xmlns.com/foaf/0.1/Person> .


###  http://www.isibang.ac.in/ns/into#isBranchOf
:isBranchOf rdf:type owl:ObjectProperty ;
            rdfs:domain :Discipline ;
            rdfs:range :Discipline .


###  http://www.isibang.ac.in/ns/into#isPartOf
:isPartOf rdf:type owl:ObjectProperty ;
          rdfs:domain [ rdf:type owl:Class ;
                        owl:unionOf ( :Place
                                      <http://xmlns.com/foaf/0.1/Organization>
                                    )
                      ] ;
          rdfs:range [ rdf:type owl:Class ;
                       owl:unionOf ( :Place
                                     <http://xmlns.com/foaf/0.1/Organization>
                                   )
                     ] .


###  http://www.isibang.ac.in/ns/into#listedCourse
:listedCourse rdf:type owl:ObjectProperty ;
              rdfs:domain :CourseSchedule ;
              rdfs:range :Course .


###  http://www.isibang.ac.in/ns/into#mastersDegreeFrom
:mastersDegreeFrom rdf:type owl:ObjectProperty ;
                   rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                   rdfs:range [ rdf:type owl:Class ;
                                owl:unionOf ( :Institution
                                              :University
                                            )
                              ] .


###  http://www.isibang.ac.in/ns/into#offersAcademicProgramme
:offersAcademicProgramme rdf:type owl:ObjectProperty ;
                         rdfs:domain [ rdf:type owl:Class ;
                                       owl:unionOf ( :Institution
                                                     :University
                                                   )
                                     ] ;
                         rdfs:range :AcademicProgramme .


###  http://www.isibang.ac.in/ns/into#pgStudent
:pgStudent rdf:type owl:ObjectProperty ;
           rdfs:domain :PostgraduateStudent ;
           rdfs:range :Postgraduate .


###  http://www.isibang.ac.in/ns/into#principleInvestigatorOf
:principleInvestigatorOf rdf:type owl:ObjectProperty .


###  http://www.isibang.ac.in/ns/into#projectAssistantOf
:projectAssistantOf rdf:type owl:ObjectProperty ;
                    rdfs:domain :ProjectAssistant ;
                    rdfs:range <http://xmlns.com/foaf/0.1/Project> .


###  http://www.isibang.ac.in/ns/into#researchInterestOf
:researchInterestOf rdf:type owl:ObjectProperty ;
                    rdfs:domain :ResearchTopic ;
                    rdfs:range <http://xmlns.com/foaf/0.1/Person> .


###  http://www.isibang.ac.in/ns/into#state
:state rdf:type owl:ObjectProperty ;
       rdfs:subPropertyOf :belongTo ;
       rdfs:range :State .


###  http://www.isibang.ac.in/ns/into#supervise
:supervise rdf:type owl:ObjectProperty ;
           rdfs:domain :Faculty ;
           rdfs:range :Student .


###  http://www.isibang.ac.in/ns/into#takesCourse
:takesCourse rdf:type owl:ObjectProperty ;
             rdfs:domain :Student ;
             rdfs:range :Course .


###  http://www.isibang.ac.in/ns/into#teachesCourse
:teachesCourse rdf:type owl:ObjectProperty ;
               rdfs:range :Course .


###  http://www.isibang.ac.in/ns/into#teachingAssistantOf
:teachingAssistantOf rdf:type owl:ObjectProperty ;
                     rdfs:domain :TeachingAssistant ;
                     rdfs:range :Course .


###  http://www.isibang.ac.in/ns/into#town
:town rdf:type owl:ObjectProperty ;
      rdfs:subPropertyOf :belongTo ;
      rdfs:range :Town .


###  http://www.isibang.ac.in/ns/into#ugStudent
:ugStudent rdf:type owl:ObjectProperty ;
           rdfs:domain :UndergraduateStudent ;
           rdfs:range :Undergraduate .


#################################################################
#    Data properties
#################################################################

###  http://www.isibang.ac.in/ns/into#address
:address rdf:type owl:DatatypeProperty .


###  http://www.isibang.ac.in/ns/into#addressLocality
:addressLocality rdf:type owl:DatatypeProperty ;
                 rdfs:subPropertyOf :address .


###  http://www.isibang.ac.in/ns/into#award
:award rdf:type owl:DatatypeProperty ;
       rdfs:domain <http://xmlns.com/foaf/0.1/Agent> ;
       rdfs:range xsd:string ;
       rdfs:comment "Award received by a person" ;
       rdfs:label "Award" .


###  http://www.isibang.ac.in/ns/into#basicSalary
:basicSalary rdf:type owl:DatatypeProperty ;
             rdfs:domain :Employee ;
             rdfs:range xsd:string .


###  http://www.isibang.ac.in/ns/into#dateOfBirth
:dateOfBirth rdf:type owl:DatatypeProperty ;
             rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
             rdfs:range xsd:dateTime .


###  http://www.isibang.ac.in/ns/into#eventsAttended
:eventsAttended rdf:type owl:DatatypeProperty ;
                rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                rdfs:range xsd:string ;
                rdfs:comment "A person attended national and internatinal events, for example, Seminars, Conferences, Symposiums, Workshops, etc." ;
                rdfs:label "Events Attended" .


###  http://www.isibang.ac.in/ns/into#firstName
:firstName rdf:type owl:DatatypeProperty ;
           rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
           rdfs:range xsd:string ;
           rdfs:label "First Name" .


###  http://www.isibang.ac.in/ns/into#grossSalary
:grossSalary rdf:type owl:DatatypeProperty ;
             rdfs:domain :Employee ;
             rdfs:range xsd:string .


###  http://www.isibang.ac.in/ns/into#hasProjectDuration
:hasProjectDuration rdf:type owl:DatatypeProperty ;
                    rdfs:domain <http://xmlns.com/foaf/0.1/Project> ;
                    rdfs:range xsd:int .


###  http://www.isibang.ac.in/ns/into#hasTeachingExperience
:hasTeachingExperience rdf:type owl:DatatypeProperty ;
                       rdfs:domain :Faculty ;
                       rdfs:range xsd:integer .


###  http://www.isibang.ac.in/ns/into#heldOn
:heldOn rdf:type owl:DatatypeProperty ;
        rdfs:domain :Events ;
        rdfs:range xsd:string ;
        rdfs:comment "The conference, seminar, symposium or workshop held on the year" .


###  http://www.isibang.ac.in/ns/into#lastName
:lastName rdf:type owl:DatatypeProperty ;
          rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
          rdfs:range xsd:string .


###  http://www.isibang.ac.in/ns/into#phoneNo
:phoneNo rdf:type owl:DatatypeProperty ;
         rdfs:domain <http://xmlns.com/foaf/0.1/Agent> ;
         rdfs:range xsd:string .


###  http://www.isibang.ac.in/ns/into#postalCode
:postalCode rdf:type owl:DatatypeProperty ;
            rdfs:subPropertyOf :address ;
            rdfs:range xsd:string .


###  http://www.isibang.ac.in/ns/into#projectEnds
:projectEnds rdf:type owl:DatatypeProperty ;
             rdfs:domain <http://xmlns.com/foaf/0.1/Project> ;
             rdfs:range xsd:dateTime .


###  http://www.isibang.ac.in/ns/into#projectStarts
:projectStarts rdf:type owl:DatatypeProperty ;
               rdfs:domain <http://xmlns.com/foaf/0.1/Project> ;
               rdfs:range xsd:dateTime .


###  http://www.isibang.ac.in/ns/into#publicationDate
:publicationDate rdf:type owl:DatatypeProperty ;
                 rdfs:domain :Publication .


###  http://www.isibang.ac.in/ns/into#rollNo
:rollNo rdf:type owl:DatatypeProperty ;
        rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
        rdfs:range xsd:string ;
        rdfs:comment "Institutional Roll Number of a person" ;
        rdfs:label "Roll Number" .


###  http://www.isibang.ac.in/ns/into#streetAddress
:streetAddress rdf:type owl:DatatypeProperty ;
               rdfs:subPropertyOf :address .


###  http://xmlns.com/foaf/0.1/age
<http://xmlns.com/foaf/0.1/age> rdf:type owl:DatatypeProperty ,
                                         owl:FunctionalProperty ;
                                rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                                rdfs:range xsd:int .


###  http://xmlns.com/foaf/0.1/familyName
<http://xmlns.com/foaf/0.1/familyName> rdf:type owl:DatatypeProperty ;
                                       rdfs:range xsd:string .


###  http://xmlns.com/foaf/0.1/givenName
<http://xmlns.com/foaf/0.1/givenName> rdf:type owl:DatatypeProperty ;
                                      rdfs:range xsd:string .


###  http://xmlns.com/foaf/0.1/homepage
<http://xmlns.com/foaf/0.1/homepage> rdf:type owl:DatatypeProperty ;
                                     rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                                     rdfs:range xsd:anyURI ;
                                     rdfs:comment "A homepage for some thing."@en .


###  http://xmlns.com/foaf/0.1/mbox
<http://xmlns.com/foaf/0.1/mbox> rdf:type owl:DatatypeProperty ;
                                 rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                                 rdfs:range xsd:string .


###  http://xmlns.com/foaf/0.1/name
<http://xmlns.com/foaf/0.1/name> rdf:type owl:DatatypeProperty ;
                                 rdfs:range xsd:string .


#################################################################
#    Classes
#################################################################

###  http://www.isibang.ac.in/ns/into#ADIS
:ADIS rdf:type owl:Class ;
      rdfs:subClassOf :CourseSchedule ;
      rdfs:comment "This course is equivalent to MLISc degree" .


###  http://www.isibang.ac.in/ns/into#AcademicProgramme
:AcademicProgramme rdf:type owl:Class .


###  http://www.isibang.ac.in/ns/into#AdministrativeStaff
:AdministrativeStaff rdf:type owl:Class ;
                     rdfs:subClassOf :Employee .


###  http://www.isibang.ac.in/ns/into#AppliedScience
:AppliedScience rdf:type owl:Class ;
                rdfs:subClassOf :Discipline .


###  http://www.isibang.ac.in/ns/into#Article
:Article rdf:type owl:Class ;
         rdfs:subClassOf :Publication .


###  http://www.isibang.ac.in/ns/into#Assistant
:Assistant rdf:type owl:Class ;
           rdfs:subClassOf :Employee .


###  http://www.isibang.ac.in/ns/into#AssistantProfessor
:AssistantProfessor rdf:type owl:Class ;
                    rdfs:subClassOf :Faculty ,
                                    [ rdf:type owl:Restriction ;
                                      owl:onProperty :supervise ;
                                      owl:maxQualifiedCardinality "4"^^xsd:nonNegativeInteger ;
                                      owl:onClass :ResearchFellow
                                    ] .


###  http://www.isibang.ac.in/ns/into#AssociateDegree
:AssociateDegree rdf:type owl:Class ;
                 rdfs:subClassOf :Degree .


###  http://www.isibang.ac.in/ns/into#AssociateProfessor
:AssociateProfessor rdf:type owl:Class ;
                    rdfs:subClassOf :Faculty ,
                                    [ rdf:type owl:Restriction ;
                                      owl:onProperty :supervise ;
                                      owl:maxQualifiedCardinality "6"^^xsd:nonNegativeInteger ;
                                      owl:onClass :ResearchFellow
                                    ] .


###  http://www.isibang.ac.in/ns/into#BMath
:BMath rdf:type owl:Class ;
       rdfs:subClassOf :CourseSchedule .


###  http://www.isibang.ac.in/ns/into#BStat
:BStat rdf:type owl:Class ;
       rdfs:subClassOf :CourseSchedule .


###  http://www.isibang.ac.in/ns/into#Book
:Book rdf:type owl:Class ;
      rdfs:subClassOf :Publication .


###  http://www.isibang.ac.in/ns/into#BookArticle
:BookArticle rdf:type owl:Class ;
             rdfs:subClassOf :Article .


###  http://www.isibang.ac.in/ns/into#Centre
:Centre rdf:type owl:Class ;
        rdfs:subClassOf <http://xmlns.com/foaf/0.1/Organization> ,
                        [ rdf:type owl:Restriction ;
                          owl:onProperty :offersAcademicProgramme ;
                          owl:someValuesFrom :AcademicProgramme
                        ] .


###  http://www.isibang.ac.in/ns/into#City
:City rdf:type owl:Class ;
      rdfs:subClassOf :Place .


###  http://www.isibang.ac.in/ns/into#Conference
:Conference rdf:type owl:Class ;
            rdfs:subClassOf :Events .


###  http://www.isibang.ac.in/ns/into#ConferenceArticle
:ConferenceArticle rdf:type owl:Class ;
                   rdfs:subClassOf :Article .


###  http://www.isibang.ac.in/ns/into#Country
:Country rdf:type owl:Class ;
         rdfs:subClassOf :Place .


###  http://www.isibang.ac.in/ns/into#Course
:Course rdf:type owl:Class .


###  http://www.isibang.ac.in/ns/into#CourseSchedule
:CourseSchedule rdf:type owl:Class .


###  http://www.isibang.ac.in/ns/into#Dean
:Dean rdf:type owl:Class ;
      rdfs:subClassOf :AdministrativeStaff .


###  http://www.isibang.ac.in/ns/into#Degree
:Degree rdf:type owl:Class .


###  http://www.isibang.ac.in/ns/into#Department
:Department rdf:type owl:Class ;
            rdfs:subClassOf <http://xmlns.com/foaf/0.1/Organization> .


###  http://www.isibang.ac.in/ns/into#Diploma
:Diploma rdf:type owl:Class ;
         rdfs:subClassOf :AcademicProgramme .


###  http://www.isibang.ac.in/ns/into#Director
:Director rdf:type owl:Class ;
          rdfs:subClassOf :AdministrativeStaff .


###  http://www.isibang.ac.in/ns/into#Discipline
:Discipline rdf:type owl:Class .


###  http://www.isibang.ac.in/ns/into#District
:District rdf:type owl:Class ;
          rdfs:subClassOf :Place .


###  http://www.isibang.ac.in/ns/into#Division
:Division rdf:type owl:Class ;
          rdfs:subClassOf <http://xmlns.com/foaf/0.1/Organization> .


###  http://www.isibang.ac.in/ns/into#DoctorOfPhilosophy
:DoctorOfPhilosophy rdf:type owl:Class ;
                    rdfs:subClassOf :DoctorateDegree .


###  http://www.isibang.ac.in/ns/into#DoctoralThesis
:DoctoralThesis rdf:type owl:Class ;
                rdfs:subClassOf :Thesis .


###  http://www.isibang.ac.in/ns/into#DoctorateDegree
:DoctorateDegree rdf:type owl:Class ;
                 rdfs:subClassOf :Degree .


###  http://www.isibang.ac.in/ns/into#Employee
:Employee rdf:type owl:Class ;
          rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> .


###  http://www.isibang.ac.in/ns/into#Employment
:Employment rdf:type owl:Class ;
            owl:equivalentClass [ rdf:type owl:Class ;
                                  owl:oneOf ( :Contractual
                                              :Regular
                                            )
                                ] .


###  http://www.isibang.ac.in/ns/into#Events
:Events rdf:type owl:Class .


###  http://www.isibang.ac.in/ns/into#Faculty
:Faculty rdf:type owl:Class ;
         rdfs:subClassOf :Employee ,
                         [ rdf:type owl:Restriction ;
                           owl:onProperty :hasResearchInterest ;
                           owl:someValuesFrom :ResearchTopic
                         ] ,
                         [ rdf:type owl:Restriction ;
                           owl:onProperty :teachesCourse ;
                           owl:someValuesFrom :Course
                         ] ,
                         [ rdf:type owl:Restriction ;
                           owl:onProperty :hasQualification ;
                           owl:hasValue :PhD
                         ] ;
         rdfs:comment "the body of teachers and administrators at a school"@en ;
         rdfs:label "Faculty"@en .


###  http://www.isibang.ac.in/ns/into#FormalScience
:FormalScience rdf:type owl:Class ;
               rdfs:subClassOf :Discipline .


###  http://www.isibang.ac.in/ns/into#Gender
:Gender rdf:type owl:Class ;
        rdfs:comment "Programes offered by the Institute" .


###  http://www.isibang.ac.in/ns/into#HumanitiesAndSocialScience
:HumanitiesAndSocialScience rdf:type owl:Class ;
                            rdfs:subClassOf :Discipline .


###  http://www.isibang.ac.in/ns/into#Institution
:Institution rdf:type owl:Class ;
             rdfs:subClassOf <http://xmlns.com/foaf/0.1/Organization> .


###  http://www.isibang.ac.in/ns/into#Journal
:Journal rdf:type owl:Class ;
         rdfs:subClassOf :Periodical .


###  http://www.isibang.ac.in/ns/into#JournalArticle
:JournalArticle rdf:type owl:Class ;
                rdfs:subClassOf :Article .


###  http://www.isibang.ac.in/ns/into#JuniorResearchFellow
:JuniorResearchFellow rdf:type owl:Class ;
                      rdfs:subClassOf :ResearchFellow .


###  http://www.isibang.ac.in/ns/into#Lecturer
:Lecturer rdf:type owl:Class ;
          rdfs:subClassOf :Faculty ,
                          [ rdf:type owl:Restriction ;
                            owl:onProperty :supervise ;
                            owl:maxQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
                            owl:onClass :ResearchFellow
                          ] .


###  http://www.isibang.ac.in/ns/into#MMath
:MMath rdf:type owl:Class ;
       rdfs:subClassOf :CourseSchedule .


###  http://www.isibang.ac.in/ns/into#MSLIS
:MSLIS rdf:type owl:Class ;
       rdfs:subClassOf :CourseSchedule .


###  http://www.isibang.ac.in/ns/into#MStat
:MStat rdf:type owl:Class ;
       rdfs:subClassOf :CourseSchedule .


###  http://www.isibang.ac.in/ns/into#Magazine
:Magazine rdf:type owl:Class ;
          rdfs:subClassOf :Periodical .


###  http://www.isibang.ac.in/ns/into#MastersThesis
:MastersThesis rdf:type owl:Class ;
               rdfs:subClassOf :Thesis .


###  http://www.isibang.ac.in/ns/into#NaturalScience
:NaturalScience rdf:type owl:Class ;
                rdfs:subClassOf :Discipline .


###  http://www.isibang.ac.in/ns/into#Periodical
:Periodical rdf:type owl:Class ;
            rdfs:subClassOf :Publication .


###  http://www.isibang.ac.in/ns/into#Place
:Place rdf:type owl:Class .


###  http://www.isibang.ac.in/ns/into#Postgraduate
:Postgraduate rdf:type owl:Class ;
              rdfs:subClassOf :AcademicProgramme .


###  http://www.isibang.ac.in/ns/into#PostgraduateStudent
:PostgraduateStudent rdf:type owl:Class ;
                     rdfs:subClassOf :Student ,
                                     [ rdf:type owl:Restriction ;
                                       owl:onProperty :pgStudent ;
                                       owl:someValuesFrom :Postgraduate
                                     ] .


###  http://www.isibang.ac.in/ns/into#Proceedings
:Proceedings rdf:type owl:Class ;
             rdfs:subClassOf :Publication .


###  http://www.isibang.ac.in/ns/into#Professor
:Professor rdf:type owl:Class ;
           rdfs:subClassOf :Faculty ,
                           [ rdf:type owl:Restriction ;
                             owl:onProperty :supervise ;
                             owl:maxQualifiedCardinality "8"^^xsd:nonNegativeInteger ;
                             owl:onClass :ResearchFellow
                           ] .


###  http://www.isibang.ac.in/ns/into#Professor-in-Charge
:Professor-in-Charge rdf:type owl:Class ;
                     rdfs:subClassOf :AdministrativeStaff .


###  http://www.isibang.ac.in/ns/into#ProjectAssistant
:ProjectAssistant rdf:type owl:Class ;
                  rdfs:subClassOf :Assistant .


###  http://www.isibang.ac.in/ns/into#Publication
:Publication rdf:type owl:Class ;
             rdfs:subClassOf owl:Thing ,
                             [ rdf:type owl:Restriction ;
                               owl:onProperty :hasAuthor ;
                               owl:someValuesFrom <http://xmlns.com/foaf/0.1/Person>
                             ] .


###  http://www.isibang.ac.in/ns/into#ResearchAssociate
:ResearchAssociate rdf:type owl:Class ;
                   owl:equivalentClass [ owl:intersectionOf ( :Faculty
                                                              [ rdf:type owl:Restriction ;
                                                                owl:onProperty :hasEmployment ;
                                                                owl:hasValue :Contractual
                                                              ]
                                                            ) ;
                                         rdf:type owl:Class
                                       ] ;
                   rdfs:subClassOf [ rdf:type owl:Restriction ;
                                     owl:onProperty :hasResearchInterest ;
                                     owl:someValuesFrom :ResearchTopic
                                   ] .


###  http://www.isibang.ac.in/ns/into#ResearchFellow
:ResearchFellow rdf:type owl:Class ;
                rdfs:subClassOf :Student ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty :hasResearchInterest ;
                                  owl:someValuesFrom :ResearchTopic
                                ] ,
                                [ rdf:type owl:Restriction ;
                                  owl:onProperty :hasSupervisor ;
                                  owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                  owl:onClass :Faculty
                                ] .


###  http://www.isibang.ac.in/ns/into#ResearchFellowship
:ResearchFellowship rdf:type owl:Class ;
                    rdfs:subClassOf :AcademicProgramme .


###  http://www.isibang.ac.in/ns/into#ResearchTopic
:ResearchTopic rdf:type owl:Class ;
               rdfs:subClassOf owl:Thing ,
                               [ rdf:type owl:Restriction ;
                                 owl:onProperty :researchInterestOf ;
                                 owl:someValuesFrom <http://xmlns.com/foaf/0.1/Person>
                               ] ;
               rdfs:comment """Research topic refers to the core area in which some one has done 
    or doing research for his/her PhD degree"""@en .


###  http://www.isibang.ac.in/ns/into#SeniorResearchFellow
:SeniorResearchFellow rdf:type owl:Class ;
                      rdfs:subClassOf :ResearchFellow .


###  http://www.isibang.ac.in/ns/into#Short-termCourse
:Short-termCourse rdf:type owl:Class ;
                  rdfs:subClassOf :AcademicProgramme .


###  http://www.isibang.ac.in/ns/into#State
:State rdf:type owl:Class ;
       rdfs:subClassOf :Place .


###  http://www.isibang.ac.in/ns/into#Student
:Student rdf:type owl:Class ;
         rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> ,
                         [ rdf:type owl:Restriction ;
                           owl:onProperty :enrolled ;
                           owl:someValuesFrom :AcademicProgramme
                         ] .


###  http://www.isibang.ac.in/ns/into#Supervisor
:Supervisor rdf:type owl:Class ;
            owl:equivalentClass [ owl:intersectionOf ( :Faculty
                                                       [ rdf:type owl:Restriction ;
                                                         owl:onProperty :supervise ;
                                                         owl:someValuesFrom :Student
                                                       ]
                                                     ) ;
                                  rdf:type owl:Class
                                ] .


###  http://www.isibang.ac.in/ns/into#TeachingAssistant
:TeachingAssistant rdf:type owl:Class ;
                   rdfs:subClassOf :Assistant .


###  http://www.isibang.ac.in/ns/into#Thesis
:Thesis rdf:type owl:Class ;
        rdfs:subClassOf :Publication .


###  http://www.isibang.ac.in/ns/into#Town
:Town rdf:type owl:Class ;
      rdfs:subClassOf :Place .


###  http://www.isibang.ac.in/ns/into#Undergraduate
:Undergraduate rdf:type owl:Class ;
               rdfs:subClassOf :AcademicProgramme .


###  http://www.isibang.ac.in/ns/into#UndergraduateStudent
:UndergraduateStudent rdf:type owl:Class ;
                      rdfs:subClassOf :Student ,
                                      [ rdf:type owl:Restriction ;
                                        owl:onProperty :ugStudent ;
                                        owl:someValuesFrom :Undergraduate
                                      ] .


###  http://www.isibang.ac.in/ns/into#University
:University rdf:type owl:Class ;
            rdfs:subClassOf <http://xmlns.com/foaf/0.1/Organization> .


###  http://www.isibang.ac.in/ns/into#Workshop
:Workshop rdf:type owl:Class ;
          rdfs:subClassOf :Events .


###  http://www.isibang.ac.in/ns/into#WorkshopArticle
:WorkshopArticle rdf:type owl:Class ;
                 rdfs:subClassOf :Article .


###  http://www.isibang.ac.in/ns/into#Bachelor'sDegree
<http://www.isibang.ac.in/ns/into#Bachelor'sDegree> rdf:type owl:Class ;
                                                    rdfs:subClassOf :Degree .


###  http://www.isibang.ac.in/ns/into#Master'sDegree
<http://www.isibang.ac.in/ns/into#Master'sDegree> rdf:type owl:Class ;
                                                  rdfs:subClassOf :Degree .


###  http://xmlns.com/foaf/0.1/Agent
<http://xmlns.com/foaf/0.1/Agent> rdf:type owl:Class ;
                                  rdfs:comment "An agent (eg. person, group, software or physical artifact)."@en .


###  http://xmlns.com/foaf/0.1/Organization
<http://xmlns.com/foaf/0.1/Organization> rdf:type owl:Class ;
                                         rdfs:subClassOf <http://xmlns.com/foaf/0.1/Agent> .


###  http://xmlns.com/foaf/0.1/Person
<http://xmlns.com/foaf/0.1/Person> rdf:type owl:Class ;
                                   rdfs:subClassOf <http://xmlns.com/foaf/0.1/Agent> ,
                                                   [ rdf:type owl:Restriction ;
                                                     owl:onProperty :hasAffiliation ;
                                                     owl:someValuesFrom :Department
                                                   ] ,
                                                   [ rdf:type owl:Restriction ;
                                                     owl:onProperty :hasAffiliation ;
                                                     owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                     owl:onClass :Centre
                                                   ] ,
                                                   [ rdf:type owl:Restriction ;
                                                     owl:onProperty :hasGender ;
                                                     owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                     owl:onClass :Gender
                                                   ] ,
                                                   [ rdf:type owl:Restriction ;
                                                     owl:onProperty <http://xmlns.com/foaf/0.1/age> ;
                                                     owl:someValuesFrom xsd:int
                                                   ] ,
                                                   [ rdf:type owl:Restriction ;
                                                     owl:onProperty <http://xmlns.com/foaf/0.1/age> ;
                                                     owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                     owl:onDataRange xsd:int
                                                   ] ;
                                   rdfs:comment "A person."@en ,
                                                "a human being"@en ;
                                   rdfs:label "Person"@en .


###  http://xmlns.com/foaf/0.1/Project
<http://xmlns.com/foaf/0.1/Project> rdf:type owl:Class ;
                                    rdfs:subClassOf owl:Thing ,
                                                    [ rdf:type owl:Restriction ;
                                                      owl:onProperty :hasProjectDuration ;
                                                      owl:maxCardinality "36"^^xsd:nonNegativeInteger
                                                    ] ;
                                    rdfs:comment "A project (a collective endeavour of some kind)."@en ,
                                                 "List of on going or finished projects" .


#################################################################
#    Individuals
#################################################################

###  http://www.isibang.ac.in/ns/into#AI
:AI rdf:type owl:NamedIndividual ,
             :ResearchTopic ;
    :researchInterestOf :DebeshDas .


###  http://www.isibang.ac.in/ns/into#AKPandey
:AKPandey rdf:type owl:NamedIndividual ,
                   :JuniorResearchFellow ;
          :enrolled :JRF ;
          :hasAffiliation :DRTC ,
                          :ISIBC ;
          :hasGender :male ;
          :hasQualification :BCom ,
                            :MLISc ;
          :hasResearchInterest :DigitalLibrary ;
          :hasSupervisor :JayashankarS ;
          :firstName "Anand" ;
          :lastName "Pandey" ;
          :rollNo "RS075" ;
          <http://xmlns.com/foaf/0.1/age> "24"^^xsd:int ;
          <http://xmlns.com/foaf/0.1/familyName> "Pandey" ;
          <http://xmlns.com/foaf/0.1/givenName> "Anand K." ;
          <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~anand"^^xsd:anyURI ;
          <http://xmlns.com/foaf/0.1/mbox> "anand@drtc.isibang.ac.in" .


###  http://www.isibang.ac.in/ns/into#AbstractAlgebra
:AbstractAlgebra rdf:type owl:NamedIndividual ,
                          :ResearchTopic .


###  http://www.isibang.ac.in/ns/into#Agriculture
:Agriculture rdf:type owl:NamedIndividual ,
                      :AppliedScience .


###  http://www.isibang.ac.in/ns/into#Agrometry
:Agrometry rdf:type owl:NamedIndividual ,
                    :ResearchTopic ;
           :researchInterestOf :SSPanza .


###  http://www.isibang.ac.in/ns/into#Altmetrics
:Altmetrics rdf:type owl:NamedIndividual ,
                     :ResearchTopic .


###  http://www.isibang.ac.in/ns/into#Anthropology
:Anthropology rdf:type owl:NamedIndividual ,
                       :HumanitiesAndSocialScience .


###  http://www.isibang.ac.in/ns/into#AppliedMathematics
:AppliedMathematics rdf:type owl:NamedIndividual ,
                             :FormalScience ;
                    :isBranchOf :Mathematics .


###  http://www.isibang.ac.in/ns/into#AutomaticClassification
:AutomaticClassification rdf:type owl:NamedIndividual ,
                                  :ResearchTopic ;
                         :researchInterestOf :JayashankarS .


###  http://www.isibang.ac.in/ns/into#BA
:BA rdf:type owl:NamedIndividual ,
             <http://www.isibang.ac.in/ns/into#Bachelor'sDegree> .


###  http://www.isibang.ac.in/ns/into#BCom
:BCom rdf:type owl:NamedIndividual ,
               <http://www.isibang.ac.in/ns/into#Bachelor'sDegree> .


###  http://www.isibang.ac.in/ns/into#BMath
:BMath rdf:type owl:NamedIndividual ,
                :Undergraduate .


###  http://www.isibang.ac.in/ns/into#BMath_1st_year
:BMath_1st_year rdf:type owl:NamedIndividual ,
                         :BMath .


###  http://www.isibang.ac.in/ns/into#BMath_2nd_year
:BMath_2nd_year rdf:type owl:NamedIndividual ,
                         :BMath .


###  http://www.isibang.ac.in/ns/into#BMath_3rd_year
:BMath_3rd_year rdf:type owl:NamedIndividual ,
                         :BMath .


###  http://www.isibang.ac.in/ns/into#BSc
:BSc rdf:type owl:NamedIndividual ,
              <http://www.isibang.ac.in/ns/into#Bachelor'sDegree> .


###  http://www.isibang.ac.in/ns/into#BStat
:BStat rdf:type owl:NamedIndividual ,
                :Undergraduate .


###  http://www.isibang.ac.in/ns/into#BStat_1st_year
:BStat_1st_year rdf:type owl:NamedIndividual ,
                         :BStat .


###  http://www.isibang.ac.in/ns/into#BStat_2nd_year
:BStat_2nd_year rdf:type owl:NamedIndividual ,
                         :BStat .


###  http://www.isibang.ac.in/ns/into#BStat_3rd_year
:BStat_3rd_year rdf:type owl:NamedIndividual ,
                         :BStat .


###  http://www.isibang.ac.in/ns/into#Bangalore
:Bangalore rdf:type owl:NamedIndividual ,
                    :City .


###  http://www.isibang.ac.in/ns/into#Benaras
:Benaras rdf:type owl:NamedIndividual ,
                  :City .


###  http://www.isibang.ac.in/ns/into#Bibliometrics
:Bibliometrics rdf:type owl:NamedIndividual ,
                        :ResearchTopic ;
               :researchInterestOf :IKRavichandraRao .


###  http://www.isibang.ac.in/ns/into#CataloguingAndMetadata
:CataloguingAndMetadata rdf:type owl:NamedIndividual ,
                                 :Course .


###  http://www.isibang.ac.in/ns/into#ComputerAndCommunicationScienesDivision
:ComputerAndCommunicationScienesDivision rdf:type owl:NamedIndividual ,
                                                  :Division .


###  http://www.isibang.ac.in/ns/into#ComputerScience
:ComputerScience rdf:type owl:NamedIndividual ,
                          :FormalScience .


###  http://www.isibang.ac.in/ns/into#ContentManagementSystems
:ContentManagementSystems rdf:type owl:NamedIndividual ,
                                   :Course .


###  http://www.isibang.ac.in/ns/into#Contractual
:Contractual rdf:type owl:NamedIndividual .


###  http://www.isibang.ac.in/ns/into#DL2005
:DL2005 rdf:type owl:NamedIndividual ,
                 :Workshop ;
        :eventsEditor :DebeshDas ;
        :heldOn "21-24 Mar 2004" .


###  http://www.isibang.ac.in/ns/into#DRTC
:DRTC rdf:type owl:NamedIndividual ,
               :Department ;
      :isAffiliationOf :Manju_M .


###  http://www.isibang.ac.in/ns/into#DataMining
:DataMining rdf:type owl:NamedIndividual ,
                     :ResearchTopic ;
            :researchInterestOf :IKRavichandraRao .


###  http://www.isibang.ac.in/ns/into#DebeshDas
:DebeshDas rdf:type owl:NamedIndividual ,
                    :AssociateProfessor ;
           :editorOfEvents :DL2005 ,
                           :ICSD2007 ;
           :hasAffiliation :DRTC ,
                           :ISIBC ;
           :hasGender :male ;
           :hasQualification :MLISc ,
                             :MPhil ;
           :hasResearchInterest :AI ,
                                :DigitalLibrary ,
                                :NLP ,
                                :Ontology ;
           :supervise :KiranKanta ,
                      :NGuha ,
                      :SKSunny ;
           :firstName "Debesh" ;
           :hasTeachingExperience 10 ;
           :lastName "Das" ;
           :rollNo "ASSP039" ;
           <http://xmlns.com/foaf/0.1/age> "57"^^xsd:int ;
           <http://xmlns.com/foaf/0.1/familyName> "Das" ;
           <http://xmlns.com/foaf/0.1/givenName> "Debesh Satpathy" ;
           <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~ard"^^xsd:anyURI .


###  http://www.isibang.ac.in/ns/into#DigitalLibrary
:DigitalLibrary rdf:type owl:NamedIndividual ,
                         :ResearchTopic ;
                :researchInterestOf :DebeshDas ,
                                    :VimalKumar .


###  http://www.isibang.ac.in/ns/into#EAU
:EAU rdf:type owl:NamedIndividual ,
              :Department ;
     :isAffiliationOf :SSPanza .


###  http://www.isibang.ac.in/ns/into#Faceted_ontology
:Faceted_ontology rdf:type owl:NamedIndividual ,
                           :ResearchTopic .


###  http://www.isibang.ac.in/ns/into#FoundationsOfComputerAndInformationTechnology
:FoundationsOfComputerAndInformationTechnology rdf:type owl:NamedIndividual ,
                                                        :Course .


###  http://www.isibang.ac.in/ns/into#FoundationsOfLibraryAndInformationScience
:FoundationsOfLibraryAndInformationScience rdf:type owl:NamedIndividual ,
                                                    :Course .


###  http://www.isibang.ac.in/ns/into#Geometry
:Geometry rdf:type owl:NamedIndividual ,
                   :ResearchTopic ;
          :researchInterestOf :TSSKRao .


###  http://www.isibang.ac.in/ns/into#History
:History rdf:type owl:NamedIndividual ,
                  :HumanitiesAndSocialScience .


###  http://www.isibang.ac.in/ns/into#ICSD2007
:ICSD2007 rdf:type owl:NamedIndividual ,
                   :Conference ;
          :eventsEditor :DebeshDas ;
          :heldOn "21-23 Feb 2007" ;
          rdfs:label "International Conference on Semantic Web and Digital Libraries" .


###  http://www.isibang.ac.in/ns/into#ICT2006
:ICT2006 rdf:type owl:NamedIndividual ,
                  :Conference ;
         :eventsEditor :JayashankarS ;
         :heldOn "11-14 Mar 2006" .


###  http://www.isibang.ac.in/ns/into#IKRavichandraRao
:IKRavichandraRao rdf:type owl:NamedIndividual ,
                           :Professor ;
                  :city :Mangalore ;
                  :country :India ;
                  :hasAffiliation :DRTC ,
                                  :ISIBC ;
                  :hasGender :male ;
                  :hasResearchInterest :Bibliometrics ,
                                       :DataMining ,
                                       :QuantitativeAnalysis ;
                  :firstName "IK Ravichandra" ;
                  :hasTeachingExperience 17 ;
                  :lastName "Rao" ;
                  :rollNo "Prof003" ;
                  <http://xmlns.com/foaf/0.1/age> "65"^^xsd:int ;
                  <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~ikr"^^xsd:anyURI ;
                  <http://xmlns.com/foaf/0.1/mbox> "akr@drtc.isibang.ac.in" .


###  http://www.isibang.ac.in/ns/into#ISI
:ISI rdf:type owl:NamedIndividual ,
              :Institution .


###  http://www.isibang.ac.in/ns/into#ISIBC
:ISIBC rdf:type owl:NamedIndividual ,
                :Centre ;
       :centretHead :TSSKRao ;
       :isPartOf :ISI ;
       :offersAcademicProgramme :BMath ,
                                :MMath ,
                                :MSLIS ,
                                :MSQMS .


###  http://www.isibang.ac.in/ns/into#ISICC
:ISICC rdf:type owl:NamedIndividual ,
                :Centre ;
       :centretHead :SSPanza .


###  http://www.isibang.ac.in/ns/into#ISIDC
:ISIDC rdf:type owl:NamedIndividual ,
                :Centre .


###  http://www.isibang.ac.in/ns/into#ImpactOfDLonGeneralReaders
:ImpactOfDLonGeneralReaders rdf:type owl:NamedIndividual ,
                                     <http://xmlns.com/foaf/0.1/Project> ;
                            :hasPrincipalInvestigator :JayashankarS ;
                            :hasProjectDuration "36"^^xsd:int ;
                            :projectStarts "2019-03-02T00:00:00"^^xsd:dateTime ;
                            rdfs:comment "" ;
                            rdfs:label "Digital Library" .


###  http://www.isibang.ac.in/ns/into#India
:India rdf:type owl:NamedIndividual ,
                :Country .


###  http://www.isibang.ac.in/ns/into#InformationOrganization
:InformationOrganization rdf:type owl:NamedIndividual ,
                                  :Course .


###  http://www.isibang.ac.in/ns/into#JRF
:JRF rdf:type owl:NamedIndividual ,
              :ResearchFellowship .


###  http://www.isibang.ac.in/ns/into#JayashankarS
:JayashankarS rdf:type owl:NamedIndividual ,
                       :AssistantProfessor ;
              :city :Bangalore ;
              :country :India ;
              :editorOfEvents :ICT2006 ,
                              :NC2005 ;
              :hasAffiliation :DRTC ,
                              :ISIBC ;
              :hasGender :female ;
              :hasResearchInterest :AutomaticClassification ,
                                   :Ontology ;
              :supervise :AKPandey ,
                         :Mithun_Raj_M ;
              :firstName "S." ;
              :hasTeachingExperience 5 ;
              :lastName "Jayashankar" ;
              :rollNo "Lec003" ;
              <http://xmlns.com/foaf/0.1/age> "47"^^xsd:int ;
              <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~devika"^^xsd:anyURI ;
              <http://xmlns.com/foaf/0.1/mbox> "jaya@isibang.ac.in" .


###  http://www.isibang.ac.in/ns/into#KSRaghavan
:KSRaghavan rdf:type owl:NamedIndividual ,
                     :Professor ;
            :city :Bangalore ;
            :country :India ;
            :hasAffiliation :DRTC ,
                            :ISIBC ;
            :hasGender :male ;
            :hasResearchInterest :KnowledgeManagement ,
                                 :KnowledgeOrganization ;
            :supervise :Radharani_Rit ;
            :dateOfBirth "2007-11-24T00:00:00"^^xsd:dateTime ;
            :firstName "KS" ;
            :hasTeachingExperience 30 ;
            :lastName "Raghavan" ;
            :rollNo "Prof01102005" ;
            <http://xmlns.com/foaf/0.1/age> "61"^^xsd:int ;
            <http://xmlns.com/foaf/0.1/familyName> "Raghavan" ;
            <http://xmlns.com/foaf/0.1/givenName> "Koti S." ;
            <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~ksr"^^xsd:anyURI ;
            <http://xmlns.com/foaf/0.1/mbox> "ksraghavan@drtc.isibang.ac.in" .


###  http://www.isibang.ac.in/ns/into#Karnataka
:Karnataka rdf:type owl:NamedIndividual ,
                    :State .


###  http://www.isibang.ac.in/ns/into#Kerala
:Kerala rdf:type owl:NamedIndividual ,
                 :State ;
        :isPartOf :India .


###  http://www.isibang.ac.in/ns/into#KiranKanta
:KiranKanta rdf:type owl:NamedIndividual ,
                     :SeniorResearchFellow ;
            :hasAffiliation :DRTC ,
                            :ISIBC ;
            :hasGender :male ;
            :hasQualification :BSc ,
                              :MLISc ;
            :hasResearchInterest :Ontology ,
                                 :SWS ,
                                 :SemanticWebBased-eGovernance ;
            :firstName "Kiran" ;
            :lastName "Kanta" ;
            :rollNo "RS039" ;
            <http://xmlns.com/foaf/0.1/age> 26 ;
            <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~kiran"^^xsd:anyURI ;
            <http://xmlns.com/foaf/0.1/mbox> "kiran@drtc.isibang.ac.in" .


###  http://www.isibang.ac.in/ns/into#KnowledgeManagement
:KnowledgeManagement rdf:type owl:NamedIndividual ,
                              :Course ,
                              :ResearchTopic ;
                     :researchInterestOf :KSRaghavan .


###  http://www.isibang.ac.in/ns/into#KnowledgeOrganization
:KnowledgeOrganization rdf:type owl:NamedIndividual ,
                                :ResearchTopic .


###  http://www.isibang.ac.in/ns/into#Kolkata
:Kolkata rdf:type owl:NamedIndividual ,
                  :City .


###  http://www.isibang.ac.in/ns/into#LibraryAndInformationScience
:LibraryAndInformationScience rdf:type owl:NamedIndividual ,
                                       :HumanitiesAndSocialScience .


###  http://www.isibang.ac.in/ns/into#LinkedData
:LinkedData rdf:type owl:NamedIndividual ,
                     :ResearchTopic .


###  http://www.isibang.ac.in/ns/into#Literature
:Literature rdf:type owl:NamedIndividual ,
                     :HumanitiesAndSocialScience .


###  http://www.isibang.ac.in/ns/into#MA
:MA rdf:type owl:NamedIndividual ,
             <http://www.isibang.ac.in/ns/into#Master'sDegree> .


###  http://www.isibang.ac.in/ns/into#MCom
:MCom rdf:type owl:NamedIndividual ,
               <http://www.isibang.ac.in/ns/into#Master'sDegree> .


###  http://www.isibang.ac.in/ns/into#MLISc
:MLISc rdf:type owl:NamedIndividual ,
                <http://www.isibang.ac.in/ns/into#Master'sDegree> ;
       rdfs:comment "Equivalent to ADIS" .


###  http://www.isibang.ac.in/ns/into#MMath
:MMath rdf:type owl:NamedIndividual ,
                :Postgraduate .


###  http://www.isibang.ac.in/ns/into#MMath-Semester1
:MMath-Semester1 rdf:type owl:NamedIndividual ,
                          :MMath .


###  http://www.isibang.ac.in/ns/into#MMath-Semester2
:MMath-Semester2 rdf:type owl:NamedIndividual ,
                          :MMath .


###  http://www.isibang.ac.in/ns/into#MPhil
:MPhil rdf:type owl:NamedIndividual ,
                <http://www.isibang.ac.in/ns/into#Master'sDegree> .


###  http://www.isibang.ac.in/ns/into#MSLIS
:MSLIS rdf:type owl:NamedIndividual ,
                :Postgraduate .


###  http://www.isibang.ac.in/ns/into#MSLIS-Semester1
:MSLIS-Semester1 rdf:type owl:NamedIndividual ,
                          :MSLIS .


###  http://www.isibang.ac.in/ns/into#MSLIS-Semester2
:MSLIS-Semester2 rdf:type owl:NamedIndividual ,
                          :MSLIS .


###  http://www.isibang.ac.in/ns/into#MSLIS-Semester3
:MSLIS-Semester3 rdf:type owl:NamedIndividual ,
                          :MSLIS .


###  http://www.isibang.ac.in/ns/into#MSLIS-Semester4
:MSLIS-Semester4 rdf:type owl:NamedIndividual ,
                          :MSLIS .


###  http://www.isibang.ac.in/ns/into#MSQE
:MSQE rdf:type owl:NamedIndividual ,
               :Postgraduate .


###  http://www.isibang.ac.in/ns/into#MSQMS
:MSQMS rdf:type owl:NamedIndividual ,
                :Postgraduate .


###  http://www.isibang.ac.in/ns/into#MSc
:MSc rdf:type owl:NamedIndividual ,
              <http://www.isibang.ac.in/ns/into#Master'sDegree> .


###  http://www.isibang.ac.in/ns/into#MStat-Semester1
:MStat-Semester1 rdf:type owl:NamedIndividual ,
                          :MStat .


###  http://www.isibang.ac.in/ns/into#MStat-Semester2
:MStat-Semester2 rdf:type owl:NamedIndividual ,
                          :MStat .


###  http://www.isibang.ac.in/ns/into#Mangalore
:Mangalore rdf:type owl:NamedIndividual ,
                    :City .


###  http://www.isibang.ac.in/ns/into#Manju_M
:Manju_M rdf:type owl:NamedIndividual ,
                  :Assistant ;
         :hasAffiliation :DRTC ,
                         :ISIBC ;
         :hasGender :female ;
         :hasQualification :BA ,
                           :MLISc ;
         :firstName "Manju" ;
         :lastName "M." ;
         <http://xmlns.com/foaf/0.1/mbox> "manju@drtc.isibang.ac.in" ;
         rdfs:label "Manju M." .


###  http://www.isibang.ac.in/ns/into#Mathematics
:Mathematics rdf:type owl:NamedIndividual ,
                      :FormalScience .


###  http://www.isibang.ac.in/ns/into#Mathew
:Mathew rdf:type owl:NamedIndividual ,
                 :AssistantProfessor ;
        :hasAffiliation :SMU ;
        :hasResearchInterest :AbstractAlgebra ;
        :firstName "Mathew" ;
        :lastName "R" ;
        <http://xmlns.com/foaf/0.1/age> "33"^^xsd:int .


###  http://www.isibang.ac.in/ns/into#Mithun_Raj_M
:Mithun_Raj_M rdf:type owl:NamedIndividual ,
                       :PostgraduateStudent ;
              :city :Trichur ;
              :enrolled :MSLIS ;
              :hasAffiliation :DRTC ,
                              :ISIBC ;
              :hasGender :male ;
              :hasQualification :BSc ;
              :hasSupervisor :JayashankarS ;
              :firstName "Mithun Raj" ;
              <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~mithun"^^xsd:anyURI ;
              <http://xmlns.com/foaf/0.1/mbox> "mithun@drtc.isibang.ac.in" ;
              rdfs:label "Mithun Raj M." .


###  http://www.isibang.ac.in/ns/into#NC2005
:NC2005 rdf:type owl:NamedIndividual ,
                 :Conference ;
        :eventsEditor :JayashankarS ;
        :heldOn "22-24 Feb 2005" .


###  http://www.isibang.ac.in/ns/into#NGuha
:NGuha rdf:type owl:NamedIndividual ,
                :SeniorResearchFellow ;
       :hasAffiliation :DRTC ,
                       :ISIBC ;
       :hasGender :female ;
       :hasQualification :BA ,
                         :MLISc ;
       :hasResearchInterest :DigitalLibrary ,
                            :Faceted_ontology ,
                            :Ontology ;
       :hasSupervisor :DebeshDas ;
       :firstName "Nayana" ;
       :lastName "Guha" ;
       :rollNo "RS031" ;
       <http://xmlns.com/foaf/0.1/age> "25"^^xsd:int ;
       <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~guha"^^xsd:anyURI ;
       <http://xmlns.com/foaf/0.1/mbox> "" .


###  http://www.isibang.ac.in/ns/into#NLP
:NLP rdf:type owl:NamedIndividual ,
              :ResearchTopic ;
     :researchInterestOf :DebeshDas .


###  http://www.isibang.ac.in/ns/into#NetworkingTechnologiesAndLibraryNetworks
:NetworkingTechnologiesAndLibraryNetworks rdf:type owl:NamedIndividual ,
                                                   :Course .


###  http://www.isibang.ac.in/ns/into#NextGenerationCatalogue
:NextGenerationCatalogue rdf:type owl:NamedIndividual ,
                                  :ResearchTopic .


###  http://www.isibang.ac.in/ns/into#Ontology
:Ontology rdf:type owl:NamedIndividual ,
                   :ResearchTopic ;
          :researchInterestOf :DebeshDas ,
                              :KiranKanta .


###  http://www.isibang.ac.in/ns/into#OperationsResearch
:OperationsResearch rdf:type owl:NamedIndividual ,
                             :FormalScience ;
                    :isBranchOf :AppliedMathematics .


###  http://www.isibang.ac.in/ns/into#PhD
:PhD rdf:type owl:NamedIndividual ,
              :DoctorOfPhilosophy ;
     rdfs:comment "Bachelors of Commerce" .


###  http://www.isibang.ac.in/ns/into#Physics
:Physics rdf:type owl:NamedIndividual ,
                  :NaturalScience .


###  http://www.isibang.ac.in/ns/into#PradipPatra
:PradipPatra rdf:type owl:NamedIndividual ,
                      :UndergraduateStudent ;
             :hasAffiliation :ISICC ,
                             :SMU ;
             :hasGender :male ;
             :ugStudent :BStat ;
             :firstName "Pradip" ;
             :lastName "Patra" ;
             :postalCode "100008" ;
             <http://xmlns.com/foaf/0.1/homepage> "http://isical.ac.in/~pradip"^^xsd:anyURI ;
             <http://xmlns.com/foaf/0.1/mbox> "pradip@isical.ac.in" .


###  http://www.isibang.ac.in/ns/into#PradiptoSaha
:PradiptoSaha rdf:type owl:NamedIndividual ,
                       :Lecturer .


###  http://www.isibang.ac.in/ns/into#QuantitativeAnalysis
:QuantitativeAnalysis rdf:type owl:NamedIndividual ,
                               :ResearchTopic .


###  http://www.isibang.ac.in/ns/into#Radharani_Rit
:Radharani_Rit rdf:type owl:NamedIndividual ,
                        :PostgraduateStudent ;
               :hasAffiliation :DRTC ,
                               :ISIBC ;
               :hasGender :female ;
               :hasQualification :BCom ;
               :hasSupervisor :KSRaghavan ;
               :dateOfBirth "2007-11-22T00:00:00"^^xsd:dateTime ;
               :firstName "Radharani" ;
               :lastName "Rit" ;
               :rollNo "ADIS0607" ;
               <http://xmlns.com/foaf/0.1/familyName> "Rit" ;
               <http://xmlns.com/foaf/0.1/givenName> "Radha Rani" ;
               <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~radha"^^xsd:anyURI ;
               <http://xmlns.com/foaf/0.1/mbox> "radha@drtc.isibang.ac.in" ;
               rdfs:label "Radharani Rit" .


###  http://www.isibang.ac.in/ns/into#Regular
:Regular rdf:type owl:NamedIndividual .


###  http://www.isibang.ac.in/ns/into#SKSunny
:SKSunny rdf:type owl:NamedIndividual ,
                  :PostgraduateStudent ;
         :hasAffiliation :DRTC ,
                         :ISIBC ;
         :hasGender :male ;
         :hasQualification :BA ;
         :hasSupervisor :DebeshDas ;
         :dateOfBirth "1980-12-08T00:00:00"^^xsd:dateTime ;
         :firstName "Sanjeev kumar" ;
         :lastName "Sunny" ;
         :rollNo "ADIS0605" ;
         <http://xmlns.com/foaf/0.1/familyName> "Sunny" ;
         <http://xmlns.com/foaf/0.1/givenName> "Sanjeev" ;
         <http://xmlns.com/foaf/0.1/homepage> "http;//drtc.isibang.ac.in/~sanjeev"^^xsd:anyURI ;
         <http://xmlns.com/foaf/0.1/mbox> "sanjeev@drtc.isibang.ac.in" .


###  http://www.isibang.ac.in/ns/into#SMU
:SMU rdf:type owl:NamedIndividual ,
              :Department ;
     :isAffiliationOf :TSSKRao .


###  http://www.isibang.ac.in/ns/into#SQC
:SQC rdf:type owl:NamedIndividual ,
              :Department .


###  http://www.isibang.ac.in/ns/into#SQCandORDivision
:SQCandORDivision rdf:type owl:NamedIndividual ,
                           :Division .


###  http://www.isibang.ac.in/ns/into#SRF
:SRF rdf:type owl:NamedIndividual ,
              :ResearchFellowship .


###  http://www.isibang.ac.in/ns/into#SSPanza
:SSPanza rdf:type owl:NamedIndividual ,
                  :AssociateProfessor ;
         :hasAffiliation :EAU ,
                         :ISICC ;
         :hasGender :male ;
         :hasQualification :MSc ,
                           :PhD ;
         :hasResearchInterest :Agrometry ;
         <http://xmlns.com/foaf/0.1/age> "62"^^xsd:int .


###  http://www.isibang.ac.in/ns/into#SWS
:SWS rdf:type owl:NamedIndividual ,
              :ResearchTopic ;
     :researchInterestOf :KiranKanta .


###  http://www.isibang.ac.in/ns/into#Scientometrics
:Scientometrics rdf:type owl:NamedIndividual ,
                         :Course .


###  http://www.isibang.ac.in/ns/into#SemanticWeb
:SemanticWeb rdf:type owl:NamedIndividual ,
                      :Course .


###  http://www.isibang.ac.in/ns/into#SemanticWebBased-eGovernance
:SemanticWebBased-eGovernance rdf:type owl:NamedIndividual ,
                                       :ResearchTopic .


###  http://www.isibang.ac.in/ns/into#Statistics
:Statistics rdf:type owl:NamedIndividual ,
                     :FormalScience ;
            :isBranchOf :AppliedMathematics .


###  http://www.isibang.ac.in/ns/into#StatisticsAndMathematicsDivision
:StatisticsAndMathematicsDivision rdf:type owl:NamedIndividual ,
                                           :Division .


###  http://www.isibang.ac.in/ns/into#SumanBera
:SumanBera rdf:type owl:NamedIndividual ,
                    :Faculty ;
           :hasAffiliation :ISIBC ;
           :hasEmployment :Contractual ;
           :hasResearchInterest :LinkedData ,
                                :Ontology ;
           :teachesCourse :SemanticWeb .


###  http://www.isibang.ac.in/ns/into#TSSKRao
:TSSKRao rdf:type owl:NamedIndividual ,
                  :Professor ;
         :hasAffiliation :ISIBC ,
                         :SMU ;
         :hasGender :male ;
         :hasResearchInterest :Geometry ;
         :firstName "TSSK" ;
         :lastName "Rao" ;
         <http://xmlns.com/foaf/0.1/age> "63"^^xsd:int .


###  http://www.isibang.ac.in/ns/into#Trichur
:Trichur rdf:type owl:NamedIndividual ,
                  :City ;
         :isPartOf :Kerala .


###  http://www.isibang.ac.in/ns/into#Udaya
:Udaya rdf:type owl:NamedIndividual ,
                :SeniorResearchFellow ;
       :firstName "Udaya" ;
       :lastName "Varadarajan" ;
       :rollNo "rs01092021" ;
       <http://xmlns.com/foaf/0.1/age> 25 .


###  http://www.isibang.ac.in/ns/into#VimalKumar
:VimalKumar rdf:type owl:NamedIndividual ,
                     :JuniorResearchFellow ;
            :hasAffiliation :DRTC ,
                            :ISIBC ;
            :hasGender :male ;
            :hasQualification :BSc ,
                              :MLISc ;
            :hasResearchInterest :DigitalLibrary ;
            :dateOfBirth "1984-08-02T00:00:00"^^xsd:dateTime ;
            :firstName "Vimal" ;
            :lastName "Kumar" ;
            :phoneNo "9986180163" ;
            :postalCode "233305" ;
            :rollNo "RS065" ;
            <http://xmlns.com/foaf/0.1/familyName> "Bhuia" ;
            <http://xmlns.com/foaf/0.1/givenName> "Vimal K." ;
            <http://xmlns.com/foaf/0.1/homepage> "http://drtc.isibang.ac.in/~vinit"^^xsd:anyURI ;
            <http://xmlns.com/foaf/0.1/mbox> "vimal@drtc.isibang.ac.in" .


###  http://www.isibang.ac.in/ns/into#WestBengal
:WestBengal rdf:type owl:NamedIndividual ,
                     :State .


###  http://www.isibang.ac.in/ns/into#female
:female rdf:type owl:NamedIndividual ,
                 :Gender .


###  http://www.isibang.ac.in/ns/into#male
:male rdf:type owl:NamedIndividual ,
               :Gender .


#################################################################
#    General axioms
#################################################################

[ rdf:type owl:AllDifferent ;
  owl:distinctMembers ( :DRTC
                        :EAU
                        :SMU
                        :SQC
                      )
] .


###  Generated by the OWL API (version 5.1.14) https://github.com/owlcs/owlapi/
