<?xml version="1.0"?>


<!DOCTYPE rdf:RDF [
    <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
    <!ENTITY pub "http://swat.cse.lehigh.edu/resources/onto/scipub.owl#" >
]>


<rdf:RDF xmlns="http://swat.cse.lehigh.edu/data/scipub.owl#"
     xml:base="http://swat.cse.lehigh.edu/data/scipub.owl"
     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
     xmlns:owl="http://www.w3.org/2002/07/owl#"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns:pub="http://swat.cse.lehigh.edu/resources/onto/scipub.owl#"
>
    <owl:Ontology rdf:about="http://swat.cse.lehigh.edu/resources/onto/scipub.owl"/>
    


    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Annotation properties
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

    <owl:AnnotationProperty rdf:about="&rdfs;label"/>
    


    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Object Properties
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

    


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#authorList -->

    <owl:ObjectProperty rdf:about="&pub;authorList">
 	<rdfs:label>Author List</rdfs:label>
	<rdfs:comment>This property lists the authors of the publication</rdfs:comment>
    </owl:ObjectProperty>

 <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#editorList -->

    <owl:ObjectProperty rdf:about="&pub;editorList">
	<rdfs:label>Editor List</rdfs:label>
	<rdfs:comment>This property lists the editors of the publication</rdfs:comment>
    </owl:ObjectProperty>

    

    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#electronicCopy -->

    <owl:ObjectProperty rdf:about="&pub;electronicCopy">
      <rdfs:label>Electronic Copy</rdfs:label>
	<rdfs:comment>This property locates electronic copy of the publication</rdfs:comment>
      <rdfs:domain rdf:resource="&pub;PublishedWork"/>
    </owl:ObjectProperty>
    
	
	

    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Data properties
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

  
    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#firstName -->

    <owl:DatatypeProperty rdf:about="&pub;firstName">
    <rdfs:label>First Name</rdfs:label>
	<rdfs:comment>This property gives the first name of the person</rdfs:comment>
      <rdfs:domain rdf:resource="&pub;Person"/>
    </owl:DatatypeProperty>
    
  
     <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#middleName -->

    <owl:DatatypeProperty rdf:about="&pub;middleName">
      <rdfs:label>Middle Name</rdfs:label>
	<rdfs:comment>This property gives the middle name of the person</rdfs:comment>
      <rdfs:domain rdf:resource="&pub;Person"/>
    </owl:DatatypeProperty>


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#fullName -->

    <owl:DatatypeProperty rdf:about="&pub;fullName">
      <rdfs:label>Full Name</rdfs:label>
	<rdfs:comment>This property full name of the person</rdfs:comment>
      <rdfs:domain rdf:resource="&pub;Person"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#lastName -->

    <owl:DatatypeProperty rdf:about="&pub;lastName">
        <rdfs:label>Last Name</rdfs:label>
	  <rdfs:comment>This property gives the Last Name  of the person</rdfs:comment>
        <rdfs:domain rdf:resource="&pub;Person"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#location -->

    <owl:DatatypeProperty rdf:about="&pub;location">
	  <rdfs:label>Location</rdfs:label>
        <rdfs:comment>This property gives the location where workshop or conference was held</rdfs:comment>
        <rdfs:range rdf:resource="&xsd;string"/>
        <rdfs:domain>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&pub;RefereedConferenceProceedings"/>
                    <rdf:Description rdf:about="&pub;RefereedWorkshopProceedings"/>
                    <rdf:Description rdf:about="&pub;BookChapter"/>
                </owl:unionOf>
            </owl:Class>
        </rdfs:domain>
    </owl:DatatypeProperty>
    


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#number -->

    <owl:DatatypeProperty rdf:about="&pub;number">
        <rdfs:label>Number</rdfs:label>
        <rdfs:comment>This property gives the issue number of the publication</rdfs:comment>
        <rdfs:domain rdf:resource="&pub;ArticleInPeriodical"/>
        <rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
    </owl:DatatypeProperty>
    
        


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#pages -->

    <owl:DatatypeProperty rdf:about="&pub;pages">
      <rdfs:label>Pages</rdfs:label>
	<rdfs:comment>This property indicates the page number of the journal, workshop or conference publication. </rdfs:comment>
        <rdfs:range rdf:resource="&xsd;string"/>
        <rdfs:domain>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&pub;ArticleInPeriodical"/>
                    <rdf:Description rdf:about="&pub;RefereedConferenceProceedings"/>
                    <rdf:Description rdf:about="&pub;RefereedWorkshopProceedings"/>
 <rdf:Description rdf:about="&pub;BookChapter"/>

                </owl:unionOf>
            </owl:Class>
        </rdfs:domain>
    </owl:DatatypeProperty>
        

    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#publishedBy -->

    <owl:DatatypeProperty rdf:about="&pub;publishedBy">
      <rdfs:label>Published By</rdfs:label>
	<rdfs:comment>This property gives the publisher for the publication</rdfs:comment>
      <rdfs:domain rdf:resource="&pub;PublishedWork"/>
      <rdfs:range rdf:resource="&xsd;string"/>
    </owl:DatatypeProperty>

   <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#publisherLoc -->

    <owl:DatatypeProperty rdf:about="&pub;publisherLoc">
      <rdfs:label>Publisher Location</rdfs:label>
	<rdfs:comment>This property gives the location of the publisher for the publication</rdfs:comment>
      <rdfs:domain rdf:resource="&pub;PublishedWork"/>
      <rdfs:range rdf:resource="&xsd;string"/>
    </owl:DatatypeProperty>



    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#publishedIn -->

    <owl:DatatypeProperty rdf:about="&pub;publishedIn">
        <rdfs:label>Published In</rdfs:label>
	  <rdfs:comment>This property gives the LNCS#### info or the name of the journal for articles, workshop and conference papers, as the case may be</rdfs:comment>
        <rdfs:domain rdf:resource="&pub;ArticleInPeriodical"/>
        <rdfs:domain rdf:resource="&pub;RefereedConferenceProceedings"/>
        <rdfs:domain rdf:resource="&pub;RefereedWorkshopProceedings"/>

	<rdfs:range rdf:resource="&xsd;string"/>
    </owl:DatatypeProperty>
    

    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#publishingDate -->

    <owl:DatatypeProperty rdf:about="&pub;publishedYear">
        <rdfs:label>Published Year</rdfs:label>
	  <rdfs:comment>This property gives the publishing year for the publication</rdfs:comment>
        <rdfs:domain rdf:resource="&pub;PublishedWork"/>
        <rdfs:range rdf:resource="&xsd;string"/>
    </owl:DatatypeProperty>


    <owl:DatatypeProperty rdf:about="&pub;publishedMonth">
        <rdfs:label>Published Month</rdfs:label>
	  <rdfs:comment>This property gives the publishing month for the publication</rdfs:comment>
        <rdfs:domain rdf:resource="&pub;PublishedWork"/>
        <rdfs:range rdf:resource="&xsd;string"/>
    </owl:DatatypeProperty>
    
   <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#date -->

    <owl:DatatypeProperty rdf:about="&pub;date">
        <rdfs:label>Date</rdfs:label>
        <rdfs:comment>This property date of the publication in YYYY-MM-DD format</rdfs:comment>
        <rdfs:domain rdf:resource="&pub;PublishedWork"/>
        <rdfs:range rdf:resource="&xsd;date"/>
    </owl:DatatypeProperty>



    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#title -->

    <owl:DatatypeProperty rdf:about="&pub;title">
    <rdfs:label>Title</rdfs:label>
    <rdfs:comment>This property gives the title of the publication</rdfs:comment>
        <rdfs:domain>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&pub;PublishedWork"/>
                    <rdf:Description rdf:about="&pub;Journal"/>
                </owl:unionOf>
            </owl:Class>
	</rdfs:domain>
        <rdfs:range rdf:resource="&xsd;string"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#venue -->

    <owl:DatatypeProperty rdf:about="&pub;venue">
        <rdfs:label>Venue</rdfs:label>
        <rdfs:comment>This property gives the venue of the conference or workshop</rdfs:comment>
        <rdfs:range rdf:resource="&xsd;string"/>
        <rdfs:domain>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&pub;RefereedConferenceProceedings"/>
                    <rdf:Description rdf:about="&pub;RefereedWorkshopProceedings"/>
                </owl:unionOf>
            </owl:Class>
        </rdfs:domain>
    </owl:DatatypeProperty>
    


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#volume -->

    <owl:DatatypeProperty rdf:about="&pub;volume"> 
        <rdfs:label>Volume</rdfs:label>
	  <rdfs:comment>This property gives the volume number of the article in refereeed journal</rdfs:comment>
        <rdfs:domain rdf:resource="&pub;ArticleInPeriodical"/>
        <rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
    </owl:DatatypeProperty>

<!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#bookTitle -->

    <owl:DatatypeProperty rdf:about="&pub;bookTitle">
           <rdfs:label>Book Title</rdfs:label>
      	<rdfs:comment>This property gives the title of the book</rdfs:comment>
        <rdfs:domain rdf:resource="&pub;BookChapter"/>
        <rdfs:range rdf:resource="&xsd;string"/>
    </owl:DatatypeProperty>

   <owl:DatatypeProperty rdf:about="&pub;techReportNumber">
       <rdfs:label>Technical Report Number</rdfs:label>
       <rdfs:comment>This property gives the technical report number</rdfs:comment>
      <rdfs:domain rdf:resource="&pub;TechnicalReport"/>
      <rdfs:range rdf:resource="&xsd;string"/>
    </owl:DatatypeProperty> 

	<owl:DatatypeProperty rdf:about="http://swat.cse.lehigh.edu/resources/onto/scipub.owl#descriptor">
		<rdfs:label>Descriptor</rdfs:label>
		<rdfs:comment>
			This property gives the paper descriptor(s) that apply to the paper. These Descriptors are instances of PaperDescriptor
		</rdfs:comment>
		<rdfs:domain rdf:resource="http://swat.cse.lehigh.edu/resources/onto/scipub.owl#PublishedWork"/>
		<rdfs:range rdf:resource="http://swat.cse.lehigh.edu/resources/onto/scipub.owl#PaperDescriptor"/>
	</owl:DatatypeProperty>

    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Classes
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

    
    <owl:Class rdf:about="&pub;ArticleInPeriodical">
        <rdfs:label>Articles in Periodical</rdfs:label>
	  <rdfs:comment>This is class for articles in periodicals</rdfs:comment>
        <rdfs:subClassOf rdf:resource="&pub;PublishedWork"/>
    </owl:Class>
    



    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#ArticleInRefereedJournal -->

    <owl:Class rdf:about="&pub;ArticleInRefereedJournal">
        <rdfs:label>Articles in refereed journal</rdfs:label>
	  <rdfs:comment>This is class for articles in refereed journals</rdfs:comment>
        <rdfs:subClassOf rdf:resource="&pub;ArticleInPeriodical"/>
    </owl:Class>
    


       


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#Journal -->

    <owl:Class rdf:about="&pub;Journal">
     <rdfs:label>Journal</rdfs:label>
     <rdfs:comment>This class denotes the Journals</rdfs:comment>
    </owl:Class>
    

    


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#Person -->

    <owl:Class rdf:about="&pub;Person">
     <rdfs:label>Person</rdfs:label>
	<rdfs:comment>The person class</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#PublishedWork -->

    <owl:Class rdf:about="&pub;PublishedWork">
    <rdfs:label>Published Work</rdfs:label>
    <rdfs:comment>The published work class</rdfs:comment>
    </owl:Class>
    
 <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#BookChapter -->

    <owl:Class rdf:about="&pub;BookChapter">
	   <rdfs:label>Book Chapter</rdfs:label>
    	   <rdfs:comment>The class for book chapters</rdfs:comment>
        <rdfs:subClassOf rdf:resource="&pub;PublishedWork"/>
    </owl:Class>



    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#RefereedConferenceProceedings -->

    <owl:Class rdf:about="&pub;RefereedConferenceProceedings">
	   <rdfs:label>Refereed Conference Proceedings</rdfs:label>
	   <rdfs:comment>The class for refereed conference proceedings</rdfs:comment>
        <rdfs:subClassOf rdf:resource="&pub;PublishedWork"/>
    </owl:Class>
    


    <!-- http://www.cse.lehigh.edu/~heflin/courses/sw-2010/proj2/faculty.owl#RefereedWorkshopProceedings -->

    <owl:Class rdf:about="&pub;RefereedWorkshopProceedings">
       <rdfs:label>Refereed Workshop Proceedings</rdfs:label>
	 <rdfs:comment>This is class for refereed workshop proceedings</rdfs:comment>
       <rdfs:subClassOf rdf:resource="&pub;PublishedWork"/>
    </owl:Class>

    <owl:Class rdf:about="&pub;TechnicalReport">
        <rdfs:label>Technical Report</rdfs:label>
 	  <rdfs:comment>The class for technical reports</rdfs:comment>
        <rdfs:subClassOf rdf:resource="&pub;PublishedWork"/>
    </owl:Class>
	
	<owl:Class rdf:about="http://swat.sce.lehigh.edu/resources/onto/scipub.owl#PaperDescriptor">
		<rdfs:label>Paper Descriptor</rdfs:label>
		<rdfs:comment>
			This is a class for paper descriptors (e.g. best paper). Instances of PaperDescriptor are meant to be objects of the Descriptor property, which indicates that that paper has attained said descriptor.
		</rdfs:comment>
	</owl:Class>
	
	<PaperDescriptor rdf:about="http://swat.cse.lehigh.edu/resources/onto/scipub.owl#bestPaper">

		<rdfs:label>Best Paper</rdfs:label>
		<rdfs:comment>This indicates that a paper won a best paper award at the venue in which it was presented.
			bestPaper is an instance of Paper Descriptor and is meant to be the object of the Descriptor property.</rdfs:comment>
	</PaperDescriptor>

	<PaperDescriptor rdf:about="http://swat.cse.lehigh.edu/resources/onto/scipub.owl#posterPaper">

		<rdfs:label>Poster Paper</rdfs:label>
		<rdfs:comment>This indicates that a paper was a poster paper at the venue in which it was presented.
			posterPaper is an instance of Paper Descriptor and is meant to be the object of the Descriptor property.
		</rdfs:comment>
	</PaperDescriptor>

	<PaperDescriptor rdf:about="http://swat.cse.lehigh.edu/resources/onto/scipub.owl#studentAbstract">

	   <rdfs:label>Student Abstract</rdfs:label>
	   <rdfs:comment>This indicates that a paper was a Student Abstract at the venue in which it was presented.
			studentAbstract is an instance of Paper Descriptor and is meant to be the object of the Descriptor property. </rdfs:comment>
	</PaperDescriptor>
    
    
</rdf:RDF>

    


    

<!-- Generated by the OWL API (version 3.1.0.1602) http://owlapi.sourceforge.net -->


