@base <http://data.nobelprize.org/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix role: <http://purl.org/role/terms/> .

<>
    dcterms:description "Linked Nobelprizes"@en ;
    dcterms:title "Linked Nobelprizes"@en ;
    a owl:Ontology ;
    rdfs:seeAlso <http://www.nobelprize.org/> ;
    owl:versionInfo "version 0.1" .

<AwardFile>
    a owl:Class ;
    rdfs:comment "Some form of media related to the award given to a specific Laureate." ;
    rdfs:label "Award File" ;
    rdfs:subClassOf <http://xmlns.com/foaf/0.1/Document> .

<Category>
    a owl:Class ;
    rdfs:comment "The Nobel Prize is given in six different categories." ;
    rdfs:label "Nobel Prize category" ;
    rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
    owl:oneOf (<Chemistry>
        <Physics>
        <Litterature>
        <Peace>
        <Economic_Sciences>
        <Physiology_or_Medicin>
    ) .

<Chemistry>
    a owl:Thing ;
    rdfs:label "Chemistry" .

<Economic_Sciences>
    a owl:Thing ;
    rdfs:label "Economic sciences" .

<FileType>
    a owl:Class ;
    rdfs:comment "A file type indicates the nature of a prizeFile, for instance Acceptance Speach, Documentary, Press Release etc." ;
    rdfs:label "File Type" ;
    rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> .

<Laureate>
    a owl:Class ;
    rdfs:comment "A laureate is a person or organization who recieves one or several Nobel Prizes." ;
    rdfs:label "Laureate" ;
    rdfs:subClassOf <http://xmlns.com/foaf/0.1/Agent> .

<LaureateAward>
    a owl:Class ;
    rdfs:comment "The Nobel Prize is often divided to several laureates. LaureateAward captures the details of the award given to each laureate, such as share of the Nobel Prize, motivation etc." ;
    rdfs:label "Laureate Award" ;
    rdfs:subClassOf <http://dbpedia.org/ontology/Award> .

<Litterature>
    a owl:Thing ;
    rdfs:label "Litterature" .

<NobelPrize>
    a owl:Class ;
    rdfs:comment "The Nobel Prize is a set of annual international awards bestowed in a number of categories by Scandinavian committees in recognition of cultural and scientific advances. The will of the Swedish chemist Alfred Nobel, the inventor of dynamite, established the prizes in 1895. The prizes in Physics, Chemistry, Physiology or Medicine, Literature, and Peace were first awarded in 1901. The Peace Prize is awarded in Oslo, Norway, while the other prizes are awarded in Stockholm, Sweden." ;
    rdfs:label "Nobel Prize" ;
    rdfs:seeAlso <http://dbpedia.org/resource/Nobel_Prize> ;
    rdfs:subClassOf <http://dbpedia.org/ontology/Award> .

<Peace>
    a owl:Thing ;
    rdfs:label "Peace" .

<Physics>
    a owl:Thing ;
    rdfs:label "Physics" .

<Physiology_or_Medicin>
    a owl:Thing ;
    rdfs:label "Physiology or Medicin" .

<PrizeFile>
    a owl:Class ;
    rdfs:comment "Some form of media related to the Nobel Prize." ;
    rdfs:label "Prize File" ;
    rdfs:subClassOf <http://xmlns.com/foaf/0.1/Document> .

<awardFile>
    a owl:ObjectProperty ;
    rdfs:comment "Points to an AwardFile, that is some form of media related to the award for this laureate." ;
    rdfs:domain <LaureateAward> ;
    rdfs:label "awardFile" ;
    rdfs:range <AwardFile> .

<category>
    a owl:ObjectProperty ;
    rdfs:comment "The category this Nobel Prize belongs to." ;
    rdfs:domain <NobelPrize> ;
    rdfs:label "category" ;
    rdfs:range <Category> .

<contribution>
    a owl:DatatypeProperty ;
    rdfs:comment "The contribution for which the laureate was given the Nobel Prize." ;
    rdfs:domain <LaureateAward> ;
    rdfs:label "contribution" ;
    rdfs:range rdf:PlainLiteral .

<field>
    a owl:DatatypeProperty ;
    rdfs:comment "The field within the category the Nobel Prize was awarded for." ;
    rdfs:domain <http://dbpedia.org/ontology/LaureateAward> ;
    rdfs:label "field" ;
    rdfs:range rdf:PlainLiteral .

<fileType>
    a owl:ObjectProperty ;
    rdfs:comment "Points to an FileType, that is, what kind of prizeFile this is, for instance Acceptance Speach, Documentary, Press Release etc." ;
    rdfs:domain <PrizeFile> ;
    rdfs:label "fileType" ;
    rdfs:range <FileType> .

<laureate>
    a owl:ObjectProperty ;
    rdfs:comment "Which laureates that recieve an award." ;
    rdfs:domain <LaureateAward> ;
    rdfs:label "laureate" ;
    rdfs:range <Laureate> .

<laureateAward>
    a owl:ObjectProperty ;
    rdfs:comment "Connects each laureate with the part of the Nobel Prize, that is the LaureateAward, he or she recieved." ;
    rdfs:domain <Laureate> ;
    rdfs:label "laureateAward" ;
    rdfs:range <LaureateAward> ;
    rdfs:subPropertyOf <http://dbpedia.org/ontology/Award> .

<motivation>
    a owl:DatatypeProperty ;
    rdfs:comment "The motivation for why the laureate was given the Nobel Prize." ;
    rdfs:domain <LaureateAward> ;
    rdfs:label "motivation" ;
    rdfs:range rdf:PlainLiteral .

<nobelPrize>
    a owl:ObjectProperty ;
    rdfs:comment "Points to the Nobel Prize recieved by a Laureate." ;
    rdfs:domain <Laureate> ;
    rdfs:label "nobelPrize" ;
    rdfs:range <NobelPrize> ;
    rdfs:subPropertyOf <http://dbpedia.org/ontology/Award> .

<prizeFile>
    a owl:ObjectProperty ;
    rdfs:comment "Points to an PrizeFile, that is some form of media related to the Nobel Prize." ;
    rdfs:domain <NobelPrize> ;
    rdfs:label "prizeFile" ;
    rdfs:range <PrizeFile> .

<share>
    a owl:DatatypeProperty ;
    rdfs:comment "The share of a Nobel Prize given to a Laureate, may be 1, 2 or 4 corresponding to the whole prize, half the prize and a quarter of the prize." ;
    rdfs:domain <http://dbpedia.org/ontology/LaureateAward> ;
    rdfs:label "share" ;
    rdfs:range <http://www.w3.org/2001/XMLSchema#Integer> .

<university>
    a owl:ObjectProperty ;
    rdfs:comment "Points to the universities the Laureate was affiliated with during the period he did his contribution that laid the ground for the award." ;
    rdfs:domain <LaureateAward> ;
    rdfs:label "university" ;
    rdfs:range <http://dbpedia.org/ontology/University> .

<year>
    a owl:DatatypeProperty ;
    rdfs:comment "The year a given Nobel Prize was given." ;
    rdfs:domain <http://dbpedia.org/ontology/Award> ;
    rdfs:label "year" ;
    rdfs:range <http://www.w3.org/2001/XMLSchema#Integer> .

<http://www.nobelprize.org/>
    rdfs:label "Nobelprize.org" .

