@prefix : <http://w3id.org/codo#> .
@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://w3id.org/codo> .

<http://w3id.org/codo> rdf:type owl:Ontology ;
                        owl:versionIRI <http://w3id.org/codo/1.3> ;
                        <http://omv.ontoware.org/2005/05/ontology#designedForOntologyTask> """This COVID-19 ontology is a data model for publishing COVID-19 data on the Web as a Graph. 

The primary focuses of the model are: 
(1) COVID-19 cases: the data for COVID-19 cases (e.g., active, recovered, deceased, migrated) ondaily basis across the geo-location (district, state and country), available resources and requirements; 
(2) COVID-19 patient data: nationality, symptom, suspected level of covid -19 cases, covid-19 treatment facility, covid-19 clinical facility, patient's travel history, inter-personal relationships between patients, suspected transmission reason, tracking of patient test results, etc."""@en ;
                        <http://purl.org/dc/terms/created> "2020-04-27T10:00:00"^^xsd:dateTime ;
                        <http://purl.org/dc/terms/creator> "Biswanath Dutta (Indian Statistical Institute, India)"@en ,
                                                           "Michael DeBellis (Semantic Web Consultant, USA)"@en ;
                        <http://purl.org/dc/terms/license> "https://creativecommons.org/licenses/by/4.0/"^^xsd:anyURI ;
                        <http://purl.org/dc/terms/publisher> "Indian Statistical Institute"@en ;
                        <http://purl.org/dc/terms/title> "An Ontology for Representation and Publication of COVID-19 Cases and Patient Information"@en ;
                        <http://www.isibang.ac.in/ns/mod#browsingUI> "http://www.isibang.ac.in/ns/codo"^^xsd:anyURI ;
                        <http://www.isibang.ac.in/ns/mod#competencyQuestion> """Some example competency questions: 
How many people recovered from COVId-19 in place p until date t? 
How many people died in country c? 
Give me the travel history of patient p? 
Give me the COVID-19 patients and their relationship, if any. 
Give me the COVID-19 patients who are in family relationships. 
Give me the primary reasons for the maximum number of COVID-19 patients. 
Give me the most prevalent symtopms of Severe COVID-19.""" .

#################################################################
#    Annotation properties
#################################################################

###  http://omv.ontoware.org/2005/05/ontology#designedForOntologyTask
<http://omv.ontoware.org/2005/05/ontology#designedForOntologyTask> rdf:type owl:AnnotationProperty .


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


###  http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> 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/publisher
<http://purl.org/dc/terms/publisher> rdf:type owl:AnnotationProperty .


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


###  http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled
<http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> rdf:type owl:AnnotationProperty .


###  http://w3id.org/codo#utilityEntity
:utilityEntity rdf:type owl:AnnotationProperty ;
               rdfs:comment "Used to mark any entity (only data properties now) that is meant for processing data but is not part of the deployed model" .


###  http://www.isibang.ac.in/ns/mod#browsingUI
<http://www.isibang.ac.in/ns/mod#browsingUI> rdf:type owl:AnnotationProperty .


###  http://www.isibang.ac.in/ns/mod#competencyQuestion
<http://www.isibang.ac.in/ns/mod#competencyQuestion> rdf:type owl:AnnotationProperty .


###  http://www.w3.org/2004/02/skos/core#altLabel
<http://www.w3.org/2004/02/skos/core#altLabel> rdf:type owl:AnnotationProperty .


#################################################################
#    Object Properties
#################################################################

###  http://w3id.org/codo#admittedIn
:admittedIn rdf:type owl:ObjectProperty ;
            owl:inverseOf :hasAdmittedPatient ;
            rdfs:domain <https://schema.org/Patient> ;
            rdfs:range :COVID-19DedicatedFacility ;
            rdfs:comment "The patient admitted to the covid-19 dedicated facilities, like home, hotel, hospital, etc."@en ;
            rdfs:label "admitted in"@en .


###  http://w3id.org/codo#clinicalFacility
:clinicalFacility rdf:type owl:ObjectProperty ;
                  rdfs:domain :Disease ;
                  rdfs:range <http://schema.org/MedicalClinic> ;
                  rdfs:comment "The medical clinic where testing/ diagnosis for disease is available."@en ;
                  rdfs:label "clinical facility"@en .


###  http://w3id.org/codo#co-worker
:co-worker rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf :hasRelationship ;
           owl:inverseOf :co-worker ;
           rdf:type owl:SymmetricProperty ;
           rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
           rdfs:range <http://xmlns.com/foaf/0.1/Person> ;
           rdfs:comment "Two persons in co-worker relation."@en ;
           rdfs:label "co-worker"@en .


###  http://w3id.org/codo#comorbidity
:comorbidity rdf:type owl:ObjectProperty ;
             rdfs:subPropertyOf owl:topObjectProperty ;
             rdfs:domain <https://schema.org/Patient> ;
             rdfs:range :Comorbidity ;
             rdfs:label "comorbidity"@en .


###  http://w3id.org/codo#containedIn
:containedIn rdf:type owl:ObjectProperty ;
             owl:inverseOf :contains ;
             rdf:type owl:TransitiveProperty ;
             rdfs:domain [ rdf:type owl:Class ;
                           owl:unionOf ( <http://xmlns.com/foaf/0.1/Agent>
                                         <https://schema.org/Place>
                                       )
                         ] ;
             rdfs:range <https://schema.org/Place> ;
             rdfs:comment "Indicates a place has a place part."@en ;
             rdfs:label "contained in"@en .


###  http://w3id.org/codo#contains
:contains rdf:type owl:ObjectProperty ,
                   owl:TransitiveProperty ;
          rdfs:comment "A place is part of another place."@en ;
          rdfs:label "contains"@en .


###  http://w3id.org/codo#contractedVirusFrom
:contractedVirusFrom rdf:type owl:ObjectProperty ;
                     owl:inverseOf :passedVirusTo ;
                     rdfs:domain <http://xmlns.com/foaf/0.1/Agent> ;
                     rdfs:range <http://xmlns.com/foaf/0.1/Agent> ;
                     rdfs:comment "In case the patient contracted the virus from is known, this property mentions the case number of the \"parent\" [source: https://www.isibang.ac.in/~athreya/incovid19/data.html]"@en ;
                     rdfs:label "contracted virus from"@en .


###  http://w3id.org/codo#countryWiseStatistics
:countryWiseStatistics rdf:type owl:ObjectProperty ;
                       rdfs:subPropertyOf :hasStatistics ;
                       rdfs:domain <https://schema.org/Country> ;
                       rdfs:range :CountryWiseStatistics ;
                       rdfs:comment "A property to connect to the country wise metrics related to the casualities of the disease."@en ;
                       rdfs:label "country wise statistics"@en .


###  http://w3id.org/codo#covid-19ClinicalFacility
:covid-19ClinicalFacility rdf:type owl:ObjectProperty ;
                          rdfs:subPropertyOf :clinicalFacility ;
                          rdfs:domain :DiseaseCausedByCoronaviridae ;
                          rdfs:range <http://schema.org/CovidTestingFacility> ;
                          rdfs:comment "The medical clinic where testing/ diagnosis for the COVID-19 Coronavirus disease is available."@en ;
                          rdfs:label "covid-19 clinical facility"@en .


###  http://w3id.org/codo#currentResident
:currentResident rdf:type owl:ObjectProperty ;
                 rdfs:subPropertyOf owl:topObjectProperty ;
                 owl:inverseOf :isCurrentResidentOf ;
                 rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                 rdfs:range <https://schema.org/Place> ;
                 rdfs:comment "The Place (typically a City but could be a building, state, etc.) where a Person currently lives" ;
                 rdfs:label "currentResident"@en .


###  http://w3id.org/codo#districtWiseStatistics
:districtWiseStatistics rdf:type owl:ObjectProperty ;
                        rdfs:subPropertyOf :hasStatistics ;
                        rdfs:domain :District ;
                        rdfs:range :DistrictWiseStatistics ;
                        rdfs:comment "A property to connect to the district wise metrics related to the casualities of the disease."@en ;
                        rdfs:label "district wise statistics"@en .


###  http://w3id.org/codo#hasAdmittedPatient
:hasAdmittedPatient rdf:type owl:ObjectProperty .


###  http://w3id.org/codo#hasAunt
:hasAunt rdf:type owl:ObjectProperty ;
         rdfs:subPropertyOf :kinswomen ;
         rdfs:comment "The sister of your father or mother; the wife of your uncle."@en ;
         rdfs:label "hasAunt"@en .


###  http://w3id.org/codo#hasBrother
:hasBrother rdf:type owl:ObjectProperty ;
            rdfs:subPropertyOf :hasSibling ,
                               :kinsman ;
            rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
            rdfs:comment "A male with the same parents as someone else."@en ;
            rdfs:label "hasBrother"@en .


###  http://w3id.org/codo#hasChild
:hasChild rdf:type owl:ObjectProperty ;
          rdfs:subPropertyOf :hasFamilyMember ;
          owl:inverseOf :hasParent .


###  http://w3id.org/codo#hasCity
:hasCity rdf:type owl:ObjectProperty ;
         rdfs:subPropertyOf :containedIn ;
         rdfs:range :City ;
         rdfs:label "has city"@en .


###  http://w3id.org/codo#hasCloseRelationship
:hasCloseRelationship rdf:type owl:ObjectProperty ;
                      rdfs:subPropertyOf :hasRelationship .


###  http://w3id.org/codo#hasCountry
:hasCountry rdf:type owl:ObjectProperty ;
            rdfs:subPropertyOf :containedIn ;
            rdfs:range <https://schema.org/Country> ;
            rdfs:label "has country"@en .


###  http://w3id.org/codo#hasCousin
:hasCousin rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf :hasFamilyMember ;
           owl:inverseOf :hasCousin ;
           rdf:type owl:SymmetricProperty .


###  http://w3id.org/codo#hasDaughter
:hasDaughter rdf:type owl:ObjectProperty ;
             rdfs:subPropertyOf :hasChild ;
             owl:inverseOf :isDaughterOf ;
             rdfs:range :Woman .


###  http://w3id.org/codo#hasDiagnosis
:hasDiagnosis rdf:type owl:ObjectProperty ;
              owl:inverseOf :isDiagnosisFor ;
              rdfs:domain <https://schema.org/Patient> ;
              rdfs:range :Diagnosis ;
              rdfs:comment "The diagnosis details of a patient."@en ;
              rdfs:label "has diagnosis"@en .


###  http://w3id.org/codo#hasDistrict
:hasDistrict rdf:type owl:ObjectProperty ;
             rdfs:subPropertyOf :containedIn ;
             rdfs:range :District ;
             rdfs:label "has district"@en .


###  http://w3id.org/codo#hasDomesticHelp
:hasDomesticHelp rdf:type owl:ObjectProperty ;
                 rdfs:subPropertyOf :hasCloseRelationship ;
                 owl:inverseOf :isDomesticHelpFor ;
                 rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                 rdfs:range <http://xmlns.com/foaf/0.1/Person> ;
                 rdfs:comment "A person is a domestic help to anothe person."@en ;
                 rdfs:label "domestic help"@en .


###  http://w3id.org/codo#hasFamilyMember
:hasFamilyMember rdf:type owl:ObjectProperty ;
                 rdfs:subPropertyOf :hasRelationship .


###  http://w3id.org/codo#hasFather
:hasFather rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf :hasParent ;
           rdfs:range :Man .


###  http://w3id.org/codo#hasHusband
:hasHusband rdf:type owl:ObjectProperty ;
            rdfs:subPropertyOf :hasSpouse ;
            owl:inverseOf :hasWife ;
            rdfs:domain :Woman ;
            rdfs:range :Man ;
            rdfs:label "hasHusband"@en .


###  http://w3id.org/codo#hasLocation
:hasLocation rdf:type owl:ObjectProperty ;
             owl:inverseOf :isLocationFor ;
             rdfs:domain [ rdf:type owl:Class ;
                           owl:unionOf ( :Disease
                                         <http://xmlns.com/foaf/0.1/Agent>
                                       )
                         ] ;
             rdfs:range <https://schema.org/Place> ;
             rdfs:comment "The location of for example where a person is situated, an organization (covid-19 dedicated facilities, medical clinics) is located, or the geographic coverage of a disease."@en ;
             rdfs:label "location"@en .


###  http://w3id.org/codo#hasMember
:hasMember rdf:type owl:ObjectProperty ;
           owl:inverseOf :isMemberOf ;
           rdfs:domain :Group ;
           rdfs:range <http://xmlns.com/foaf/0.1/Agent> ;
           rdfs:label "hasMember"@en .


###  http://w3id.org/codo#hasMother
:hasMother rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf :hasParent ;
           rdfs:range :Woman .


###  http://w3id.org/codo#hasNeighbor
:hasNeighbor rdf:type owl:ObjectProperty ;
             rdfs:subPropertyOf :hasRelationship ;
             rdfs:label "hasNeighbor"@en .


###  http://w3id.org/codo#hasNephew
:hasNephew rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf :kinsman ;
           rdfs:comment "A son of your brother or sister."@en ;
           rdfs:label "hasNephew"@en .


###  http://w3id.org/codo#hasNiece
:hasNiece rdf:type owl:ObjectProperty ;
          rdfs:subPropertyOf :kinswomen ;
          rdfs:comment "A daughter of your brother or sister."@en ;
          rdfs:label "hasNiece"@en .


###  http://w3id.org/codo#hasParent
:hasParent rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf :hasFamilyMember .


###  http://w3id.org/codo#hasProvince
:hasProvince rdf:type owl:ObjectProperty ;
             rdfs:subPropertyOf :containedIn ;
             rdfs:range :Province ;
             rdfs:label "province"@en .


###  http://w3id.org/codo#hasRelationship
:hasRelationship rdf:type owl:ObjectProperty ;
                 rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                 rdfs:range <http://xmlns.com/foaf/0.1/Person> ;
                 rdfs:comment "A generic property to store the relationships between persons."@en ;
                 rdfs:label "has relationships"@en .


###  http://w3id.org/codo#hasRoommate
:hasRoommate rdf:type owl:ObjectProperty ;
             rdfs:subPropertyOf :hasCloseRelationship ;
             owl:inverseOf :hasRoommate ;
             rdf:type owl:SymmetricProperty ;
             rdfs:comment "An associate who shares a room with you."@en ;
             rdfs:label "roommate"@en .


###  http://w3id.org/codo#hasSibling
:hasSibling rdf:type owl:ObjectProperty ;
            rdfs:subPropertyOf :hasFamilyMember ;
            owl:inverseOf :hasSibling ;
            rdf:type owl:SymmetricProperty .


###  http://w3id.org/codo#hasSister
:hasSister rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf :hasSibling ,
                              :kinswomen ;
           rdfs:comment "A female person who has the same parents as another person."@en ;
           rdfs:label "hasSister"@en .


###  http://w3id.org/codo#hasSon
:hasSon rdf:type owl:ObjectProperty ;
        rdfs:subPropertyOf :hasChild ;
        owl:inverseOf :isSonOf ;
        rdfs:range :Man .


###  http://w3id.org/codo#hasSpouse
:hasSpouse rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf :hasCloseRelationship ,
                              :hasFamilyMember ;
           owl:inverseOf :hasSpouse ;
           rdf:type owl:SymmetricProperty ;
           rdfs:comment "Two persons in married relationship."@en ;
           rdfs:label "spouse"@en .


###  http://w3id.org/codo#hasState
:hasState rdf:type owl:ObjectProperty ;
          rdfs:subPropertyOf :containedIn ;
          rdfs:range <https://schema.org/State> .


###  http://w3id.org/codo#hasStatistics
:hasStatistics rdf:type owl:ObjectProperty ;
               owl:inverseOf :isCovid-19StatisticsOf ;
               rdfs:domain <https://schema.org/Place> ;
               rdfs:range :Statistics ;
               rdfs:comment "A generic property to connect to the metrics related to the casualities of the disease."@en ;
               rdfs:label "has statistics"@en .


###  http://w3id.org/codo#hasSymptom
:hasSymptom rdf:type owl:ObjectProperty ;
            rdfs:domain <https://schema.org/Patient> ;
            rdfs:range <http://purl.obolibrary.org/obo/SYMP_0000462> ;
            rdfs:comment "Any sensation or change in bodily function that is experienced by a patient and is associated with a particular disease."@en ;
            rdfs:label "has symptom"@en .


###  http://w3id.org/codo#hasTestResult
:hasTestResult rdf:type owl:ObjectProperty ;
               owl:inverseOf :isTestResultFor ;
               rdfs:domain <https://schema.org/Patient> ;
               rdfs:range :TestResult ;
               rdfs:comment "A patient has clinical test result."@en ;
               rdfs:label "has test result"@en .


###  http://w3id.org/codo#hasTravelCompanion
:hasTravelCompanion rdf:type owl:ObjectProperty ;
                    rdfs:subPropertyOf :hasRelationship ;
                    owl:inverseOf :hasTravelCompanion ;
                    rdf:type owl:SymmetricProperty .


###  http://w3id.org/codo#hasUncle
:hasUncle rdf:type owl:ObjectProperty ;
          rdfs:subPropertyOf :kinsman ;
          rdfs:comment "The brother of your father or mother; the husband of your aunt."@en ;
          rdfs:label "hasUncle"@en .


###  http://w3id.org/codo#hasUnionTerritory
:hasUnionTerritory rdf:type owl:ObjectProperty ;
                   rdfs:subPropertyOf :containedIn ;
                   rdfs:label "has union territory"@en .


###  http://w3id.org/codo#hasWife
:hasWife rdf:type owl:ObjectProperty ;
         rdfs:subPropertyOf :hasSpouse ;
         rdfs:domain :Man ;
         rdfs:range :Woman ;
         rdfs:label "hasWife"@en .


###  http://w3id.org/codo#isCovid-19StatisticsOf
:isCovid-19StatisticsOf rdf:type owl:ObjectProperty ;
                        rdfs:label "is covid-19 statistics of"@en .


###  http://w3id.org/codo#isCurrentResidentOf
:isCurrentResidentOf rdf:type owl:ObjectProperty .


###  http://w3id.org/codo#isDaughterOf
:isDaughterOf rdf:type owl:ObjectProperty ;
              rdfs:subPropertyOf :hasParent .


###  http://w3id.org/codo#isDiagnosisFor
:isDiagnosisFor rdf:type owl:ObjectProperty ;
                rdfs:label "is diagnosis of"@en .


###  http://w3id.org/codo#isDomesticHelpFor
:isDomesticHelpFor rdf:type owl:ObjectProperty ;
                   rdfs:subPropertyOf :hasCloseRelationship .


###  http://w3id.org/codo#isLocationFor
:isLocationFor rdf:type owl:ObjectProperty .


###  http://w3id.org/codo#isMemberOf
:isMemberOf rdf:type owl:ObjectProperty ;
            rdfs:subPropertyOf owl:topObjectProperty ;
            rdfs:domain <http://xmlns.com/foaf/0.1/Agent> ;
            rdfs:range :Group ;
            rdfs:label "isMemberOf"@en .


###  http://w3id.org/codo#isPermanentResidentOf
:isPermanentResidentOf rdf:type owl:ObjectProperty ;
                       owl:inverseOf :permanentResident .


###  http://w3id.org/codo#isSonOf
:isSonOf rdf:type owl:ObjectProperty ;
         rdfs:subPropertyOf :hasParent .


###  http://w3id.org/codo#isTestResultFor
:isTestResultFor rdf:type owl:ObjectProperty ;
                 rdfs:label "is test result for"@en .


###  http://w3id.org/codo#kinsman
:kinsman rdf:type owl:ObjectProperty ;
         rdfs:subPropertyOf :hasFamilyMember ;
         rdfs:range :Man ;
         rdfs:comment "A male relative."@en ;
         rdfs:label "kinsman"@en .


###  http://w3id.org/codo#kinswomen
:kinswomen rdf:type owl:ObjectProperty ;
           rdfs:subPropertyOf :hasFamilyMember ;
           rdfs:range :Woman ;
           rdfs:comment "A female relative."@en ;
           rdfs:label "kinswomen"@en .


###  http://w3id.org/codo#laboratoryTestFinding
:laboratoryTestFinding rdf:type owl:ObjectProperty ;
                       rdfs:subPropertyOf :hasTestResult ;
                       rdfs:range :LaboratiryTestFinding ;
                       rdfs:comment "Patient's covid-19 clinical test result."@en ;
                       rdfs:label "laboratory test finding"@en .


###  http://w3id.org/codo#mostRecentTestResult
:mostRecentTestResult rdf:type owl:ObjectProperty ;
                      rdfs:subPropertyOf :hasTestResult ;
                      rdfs:range :VitalSigns ;
                      rdfs:comment "The most recent covid-19 clinical test result."@en ;
                      rdfs:label "most recent test result"@en .


###  http://w3id.org/codo#nextTestResult
:nextTestResult rdf:type owl:ObjectProperty ;
                owl:inverseOf :previousTestResult ;
                rdfs:comment "The next clinical test result of a patient."@en ;
                rdfs:label "next test result"@en .


###  http://w3id.org/codo#passedVirusTo
:passedVirusTo rdf:type owl:ObjectProperty .


###  http://w3id.org/codo#permanentResident
:permanentResident rdf:type owl:ObjectProperty ;
                   rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                   rdfs:range <https://schema.org/Place> ;
                   rdfs:comment "The Place (typically a City but could be a building, State, etc.) that a Person has as their permanent home." .


###  http://w3id.org/codo#previousTestResult
:previousTestResult rdf:type owl:ObjectProperty ;
                    rdfs:domain :VitalSigns ;
                    rdfs:range :VitalSigns ;
                    rdfs:comment "The previous clinical test result of a patient."@en ;
                    rdfs:label "previous test result"@en .


###  http://w3id.org/codo#securityGuard
:securityGuard rdf:type owl:ObjectProperty ;
               rdfs:subPropertyOf :hasRelationship ;
               rdfs:comment "A security guard of a person."@en ;
               rdfs:label "security guard"@en .


###  http://w3id.org/codo#stateWiseStatistics
:stateWiseStatistics rdf:type owl:ObjectProperty ;
                     rdfs:subPropertyOf :hasStatistics ;
                     rdfs:domain <https://schema.org/State> ;
                     rdfs:range :StateWiseStatistics ;
                     rdfs:comment "A property to connect to the state (province) wise metrics related to the casualities of the disease."@en ;
                     rdfs:label "state wise statistics"@en .


###  http://w3id.org/codo#status
:status rdf:type owl:ObjectProperty ;
        rdfs:domain <https://schema.org/Patient> ;
        rdfs:range :Status .


###  http://w3id.org/codo#suspectedReasonOfCatchingCovid-19
:suspectedReasonOfCatchingCovid-19 rdf:type owl:ObjectProperty ;
                                   rdfs:domain <https://schema.org/Patient> ;
                                   rdfs:range :ExposureToCOVID-19 ;
                                   rdfs:comment "The suspected reasons of catching covid-19 disease, for example, travel, attending a marriage anniversary, while treating a patient, infected famility member."@en ;
                                   rdfs:label "suspected reasons of catching covid-19"@en .


###  http://w3id.org/codo#testedInClinic
:testedInClinic rdf:type owl:ObjectProperty ;
                rdfs:domain :TestResult ;
                rdfs:range <http://schema.org/MedicalClinic> .


###  http://w3id.org/codo#travelHistory
:travelHistory rdf:type owl:ObjectProperty ;
               rdfs:subPropertyOf owl:topObjectProperty ;
               rdfs:domain [ rdf:type owl:Class ;
                             owl:unionOf ( :ExposureToCOVID-19
                                           <http://xmlns.com/foaf/0.1/Person>
                                         )
                           ] ;
               rdfs:range <https://schema.org/Place> ;
               rdfs:comment "A generic property to store the travel history of a patient. Also used to record the Place that a Patient traveledFrom on ExposureToCovid19 individuals."@en ;
               rdfs:label "travel history"@en .


###  http://w3id.org/codo#travelledFrom
:travelledFrom rdf:type owl:ObjectProperty ;
               rdfs:subPropertyOf :travelHistory ;
               rdfs:range <https://schema.org/Place> ;
               rdfs:comment "A suspected covid-19 patient travelled from a place, e.g., country/ state/ district."@en ;
               rdfs:label "travelled from"@en .


###  http://w3id.org/codo#travelledTo
:travelledTo rdf:type owl:ObjectProperty ;
             rdfs:subPropertyOf :travelHistory ;
             rdfs:range <https://schema.org/Place> ;
             rdfs:comment "A suspected covid-19 patient travelled to a place, e.g., country/ state/ district."@en ;
             rdfs:label "travelled to"@en .


###  http://www.w3.org/2002/07/owl#topObjectProperty
owl:topObjectProperty rdf:type owl:ObjectProperty ,
                               owl:SymmetricProperty ,
                               owl:TransitiveProperty ,
                               owl:ReflexiveProperty .


###  https://pending.schema.org/gender
<https://pending.schema.org/gender> rdf:type owl:ObjectProperty ,
                                             owl:FunctionalProperty ;
                                    rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                                    rdfs:range <https://schema.org/GenderType> ;
                                    rdfs:comment "Gender of a person."@en ;
                                    rdfs:label "has gender"@en .


###  https://schema.org/nationality
<https://schema.org/nationality> rdf:type owl:ObjectProperty ;
                                 rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
                                 rdfs:range <https://schema.org/Country> ;
                                 rdfs:comment "Nationality of the person."@en ;
                                 rdfs:label "nationality"@en .


#################################################################
#    Data properties
#################################################################

###  http://w3id.org/codo#BP-diastolic
:BP-diastolic rdf:type owl:DatatypeProperty ;
              rdfs:subPropertyOf owl:topDataProperty ;
              rdf:type owl:FunctionalProperty ;
              rdfs:domain :VitalSigns ;
              rdfs:range xsd:integer ;
              rdfs:label "Blood Pressure (Distolic)"@en .


###  http://w3id.org/codo#BP-systolic
:BP-systolic rdf:type owl:DatatypeProperty ,
                      owl:FunctionalProperty ;
             rdfs:domain :VitalSigns ;
             rdfs:range xsd:integer ;
             rdfs:label "Blood Pressure (Systolic)"@en .


###  http://w3id.org/codo#SpO2
:SpO2 rdf:type owl:DatatypeProperty ,
               owl:FunctionalProperty ;
      rdfs:domain :VitalSigns ;
      rdfs:range xsd:integer ;
      rdfs:comment "The peripheral capillary oxygen saturation, an estimate (in %) of the amount of oxygen in the blood."@en ;
      rdfs:label "peripheral capillary oxygen saturation(SpO2)"@en .


###  http://w3id.org/codo#acronym
:acronym rdf:type owl:DatatypeProperty ;
         rdfs:range xsd:string ;
         rdfs:comment "An acronym."@en ;
         rdfs:label "acronym"@en .


###  http://w3id.org/codo#active
:active rdf:type owl:DatatypeProperty ;
        rdfs:subPropertyOf :cases ;
        rdfs:domain :Statistics ;
        rdfs:range xsd:integer ;
        rdfs:comment "Number of active covid cases."@en ;
        rdfs:label "active"@en .


###  http://w3id.org/codo#admittedOn
:admittedOn rdf:type owl:DatatypeProperty ;
            rdfs:subPropertyOf :date ;
            rdfs:domain <https://schema.org/Patient> ;
            rdfs:range xsd:dateTime ;
            rdfs:comment "A patient admitted on a particular day and time."@en ;
            rdfs:label "admitted on"@en ,
                       "date of admission"@en .


###  http://w3id.org/codo#age
:age rdf:type owl:DatatypeProperty ,
              owl:FunctionalProperty ;
     rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
     rdfs:range xsd:decimal ;
     rdfs:comment "An age of a person."@en ;
     rdfs:label "age"@en .


###  http://w3id.org/codo#area
:area rdf:type owl:DatatypeProperty ,
               owl:FunctionalProperty ;
      rdfs:domain <https://schema.org/Place> ;
      rdfs:range xsd:decimal ;
      rdfs:comment "Tthe extent of a 2-dimensional surface enclosed within a boundary (in sq. km.)."@en ;
      rdfs:label "area"@en .


###  http://w3id.org/codo#bedShortage
:bedShortage rdf:type owl:DatatypeProperty ;
             rdfs:subPropertyOf :resource ;
             rdfs:domain :Statistics ;
             rdfs:range xsd:integer ;
             rdfs:comment "no. of bed shortage."@en ;
             rdfs:label "no. of bed shortage"@en .


###  http://w3id.org/codo#bedsNeeded
:bedsNeeded rdf:type owl:DatatypeProperty ;
            rdfs:subPropertyOf :resource ;
            rdfs:domain :Statistics ;
            rdfs:range xsd:integer ;
            rdfs:comment "no. of beds needed."@en ;
            rdfs:label "no. of beds needed"@en .


###  http://w3id.org/codo#cases
:cases rdf:type owl:DatatypeProperty ;
       rdfs:subPropertyOf :metrics ;
       rdfs:domain :Statistics ;
       rdfs:range xsd:integer ;
       rdfs:comment "Number of covid cases."@en ;
       rdfs:label "cases"@en .


###  http://w3id.org/codo#countryCode
:countryCode rdf:type owl:DatatypeProperty ;
             rdfs:domain <https://schema.org/Country> ;
             rdfs:range xsd:string ;
             rdfs:comment "The country code. Example, \"IND\" for India."@en ;
             rdfs:label "country code"@en .


###  http://w3id.org/codo#covid-19caseOn
:covid-19caseOn rdf:type owl:DatatypeProperty ;
                rdfs:subPropertyOf :date ;
                rdfs:domain :Statistics ;
                rdfs:range xsd:dateTime ;
                rdfs:comment "covid-19 cases on a day"@en ;
                rdfs:label "covid-19 case on"@en .


###  http://w3id.org/codo#dailyIncreasedCases
:dailyIncreasedCases rdf:type owl:DatatypeProperty ;
                     rdfs:subPropertyOf :cases ;
                     rdfs:domain :Statistics ;
                     rdfs:range xsd:integer ;
                     rdfs:comment "Total no,. of active cases in Date 2 - total no. of active cases in Date 1"@en ;
                     rdfs:label "daily increased cases"@en .


###  http://w3id.org/codo#date
:date rdf:type owl:DatatypeProperty ;
      rdfs:range xsd:dateTime ;
      rdfs:comment "A particular day specified as the time something happens."@en ;
      rdfs:label "date"@en .


###  http://w3id.org/codo#deceased
:deceased rdf:type owl:DatatypeProperty ;
          rdfs:subPropertyOf :cases ;
          rdfs:domain :Statistics ;
          rdfs:range xsd:integer ;
          rdfs:comment "number of deceased covid-19 patients."@en ;
          rdfs:label "deceased"@en .


###  http://w3id.org/codo#diagnosedOn
:diagnosedOn rdf:type owl:DatatypeProperty ;
             rdfs:subPropertyOf :date ;
             rdfs:domain :Diagnosis ;
             rdfs:range xsd:dateTime ;
             rdfs:comment "The diagnosis took place on a day."@en ;
             rdfs:label "diagnosed on"@en ;
             <http://www.w3.org/2004/02/skos/core#altLabel> "tested positive on"@en .


###  http://w3id.org/codo#districtPatientID
:districtPatientID rdf:type owl:DatatypeProperty ;
                   rdfs:subPropertyOf :hasID ;
                   rdf:type owl:FunctionalProperty ;
                   rdfs:range xsd:string ;
                   rdfs:comment "The patient ID assigned at the district level (usually a first level of administrative division within a state/ province)."@en ;
                   rdfs:label "district wise patient ID"@en .


###  http://w3id.org/codo#endDate
:endDate rdf:type owl:DatatypeProperty ;
         rdfs:subPropertyOf :date ;
         rdfs:range xsd:dateTime .


###  http://w3id.org/codo#eventDate
:eventDate rdf:type owl:DatatypeProperty ;
           rdfs:subPropertyOf :date ;
           rdfs:range xsd:dateTime .


###  http://w3id.org/codo#geoName
:geoName rdf:type owl:DatatypeProperty ;
         rdfs:subPropertyOf owl:topDataProperty ;
         rdfs:domain <https://schema.org/Place> ;
         rdfs:comment "Removed data type xsd:string from range for now. Because I copied the values over from the labels using SPARQL the annotations for the language (\""@en") were copied over and the reasoner in protege was complaining that it was not a valid string (guessing this only works for literals). ,
                      "A utility string to be used together with a Full Text Index in Allegro to facilitate processing reasonStrings with names of Places" ;
         rdfs:label "geoName"@en .


###  http://w3id.org/codo#hadCovidTest
:hadCovidTest rdf:type owl:DatatypeProperty ,
                       owl:FunctionalProperty ;
              rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
              rdfs:range xsd:boolean .


###  http://w3id.org/codo#hasCausedAnySecondaryInfections
:hasCausedAnySecondaryInfections rdf:type owl:DatatypeProperty ;
                                 rdfs:domain <https://schema.org/Patient> ;
                                 rdfs:range xsd:boolean ;
                                 rdfs:comment "This indiicates the the secondary infections caused, if any. The values are either \"yes\", \"no\" and indicate if the patient has caused any [known] secondary infections [source: https://www.isibang.ac.in/~athreya/incovid19/data.html]."@en ;
                                 rdfs:label "has caused any secondary infections"@en .


###  http://w3id.org/codo#hasID
:hasID rdf:type owl:DatatypeProperty ;
       rdfs:range xsd:string ;
       rdfs:label "case id"@en .


###  http://w3id.org/codo#heartRate
:heartRate rdf:type owl:DatatypeProperty ,
                    owl:FunctionalProperty ;
           rdfs:domain :VitalSigns ;
           rdfs:range xsd:integer ;
           rdfs:comment "The rate at which the heart beats; usually measured to obtain a quick evaluation of a person's health."@en ;
           rdfs:label "Heart rate"@en .


###  http://w3id.org/codo#height
:height rdf:type owl:DatatypeProperty ,
                 owl:FunctionalProperty ;
        rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
        rdfs:range xsd:decimal ;
        rdfs:label "height"@en .


###  http://w3id.org/codo#icuBedShortage
:icuBedShortage rdf:type owl:DatatypeProperty ;
                rdfs:subPropertyOf :resource ;
                rdfs:domain :Statistics ;
                rdfs:range xsd:integer ;
                rdfs:comment "no. of icu bed shortage."@en ;
                rdfs:label "no. of icu bed shortage"@en .


###  http://w3id.org/codo#icuBedsNeeded
:icuBedsNeeded rdf:type owl:DatatypeProperty ;
               rdfs:subPropertyOf :resource ;
               rdfs:domain :Statistics ;
               rdfs:range xsd:integer ;
               rdfs:comment "no. of invasive ventilators needed."@en ;
               rdfs:label "no. of icu beds needed"@en .


###  http://w3id.org/codo#invasiveVentilatorsNeeded
:invasiveVentilatorsNeeded rdf:type owl:DatatypeProperty ;
                           rdfs:subPropertyOf :resource ;
                           rdfs:domain :Statistics ;
                           rdfs:range xsd:integer ;
                           rdfs:comment "no. of invasive ventilators needed."@en ;
                           rdfs:label "no. of invasive ventilators needed"@en .


###  http://w3id.org/codo#metrics
:metrics rdf:type owl:DatatypeProperty ;
         rdfs:domain :Statistics ;
         rdfs:comment "A generic property to provide the result related to the covid-19 disease casualties and resources."@en ;
         rdfs:label "metrics"@en .


###  http://w3id.org/codo#noOfPeopleMigrated
:noOfPeopleMigrated rdf:type owl:DatatypeProperty ;
                    rdfs:subPropertyOf :cases ;
                    rdfs:domain :Statistics ;
                    rdfs:range xsd:integer ;
                    rdfs:comment "Number of people migrated after recovery from the covid."@en ,
                                 "number of people migrated"@en .


###  http://w3id.org/codo#populationDensity
:populationDensity rdf:type owl:DatatypeProperty ,
                            owl:FunctionalProperty ;
                   rdfs:domain <https://schema.org/Place> ;
                   rdfs:range xsd:decimal ;
                   rdfs:comment "For humans, population density is the number of people per unit of area, usually quoted per square kilometre or square mile, and which may include or exclude for example areas of water or glaciers."@en ;
                   rdfs:label "population density"@en .


###  http://w3id.org/codo#recovered
:recovered rdf:type owl:DatatypeProperty ;
           rdfs:subPropertyOf :cases ;
           rdfs:domain :Statistics ;
           rdfs:range xsd:integer ;
           rdfs:comment "Number of people recovered from covid."@en ;
           rdfs:label "recovered"@en .


###  http://w3id.org/codo#releasedOn
:releasedOn rdf:type owl:DatatypeProperty ;
            rdfs:subPropertyOf :date ;
            rdfs:domain <https://schema.org/Patient> ;
            rdfs:range xsd:dateTime ;
            rdfs:comment "The patient released on a day from a covid dedicated facility."@en ;
            rdfs:label "date of discharge"@en ;
            <http://www.w3.org/2004/02/skos/core#altLabel> "out date"@en ,
                                                           "released on"@en .


###  http://w3id.org/codo#resource
:resource rdf:type owl:DatatypeProperty ;
          rdfs:subPropertyOf :metrics ;
          rdfs:domain :Statistics ;
          rdfs:comment "Available/ required resource for covid treatment."@en ;
          rdfs:label "resource"@en .


###  http://w3id.org/codo#respiratoryRate
:respiratoryRate rdf:type owl:DatatypeProperty ,
                          owl:FunctionalProperty ;
                 rdfs:domain :VitalSigns ;
                 rdfs:range xsd:integer ;
                 rdfs:comment "Is the number of breaths a person take per minute."@en ;
                 rdfs:label "respiratory rate"@en .


###  http://w3id.org/codo#source
:source rdf:type owl:DatatypeProperty ;
        rdfs:domain :Statistics ;
        rdfs:range [ rdf:type rdfs:Datatype ;
                     owl:unionOf ( xsd:anyURI
                                   xsd:string
                                 )
                   ] ;
        rdfs:comment "The data source based on which the statistics produced."@en .


###  http://w3id.org/codo#startDate
:startDate rdf:type owl:DatatypeProperty ;
           rdfs:subPropertyOf :date ;
           rdfs:range xsd:dateTime .


###  http://w3id.org/codo#stateCode
:stateCode rdf:type owl:DatatypeProperty ;
           rdfs:domain <https://schema.org/State> ;
           rdfs:range xsd:string ;
           rdfs:comment "State (province) code. Example, \"KL\" of Kerala."@en ;
           rdfs:label "state code"@en .


###  http://w3id.org/codo#statePatientID
:statePatientID rdf:type owl:DatatypeProperty ;
                rdfs:subPropertyOf :hasID ;
                rdf:type owl:FunctionalProperty ;
                rdfs:range xsd:string ;
                rdfs:comment "The patient ID assigned at the state/province level."@en ;
                rdfs:label "state wise patient ID"@en .


###  http://w3id.org/codo#temperature
:temperature rdf:type owl:DatatypeProperty ,
                      owl:FunctionalProperty ;
             rdfs:domain :VitalSigns ;
             rdfs:range xsd:decimal ;
             rdfs:comment "The body temperature."@en ;
             rdfs:label "temperature"@en .


###  http://w3id.org/codo#testResultOn
:testResultOn rdf:type owl:DatatypeProperty ;
              rdfs:subPropertyOf :date ;
              rdfs:domain :TestResult ;
              rdfs:range xsd:dateTime ;
              rdfs:comment "The test result date."@en ;
              rdfs:label "test result on"@en .


###  http://w3id.org/codo#weight
:weight rdf:type owl:DatatypeProperty ,
                 owl:FunctionalProperty ;
        rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
        rdfs:range xsd:decimal ;
        rdfs:comment "The weight."@en ;
        rdfs:label "weight"@en .


###  http://xmlns.com/foaf/0.1/name
<http://xmlns.com/foaf/0.1/name> rdf:type owl:DatatypeProperty ;
                                 rdfs:range xsd:string ;
                                 rdfs:comment "A name for some thing."@en ;
                                 rdfs:label "name"@en .


###  https://schema.org/address
<https://schema.org/address> rdf:type owl:DatatypeProperty ;
                             rdfs:domain [ rdf:type owl:Class ;
                                           owl:unionOf ( <http://xmlns.com/foaf/0.1/Organization>
                                                         <http://xmlns.com/foaf/0.1/Person>
                                                       )
                                         ] ;
                             rdfs:range xsd:string ;
                             rdfs:comment "Physical address of the item."@en ;
                             rdfs:label "address"@en .


###  https://schema.org/addressLocality
<https://schema.org/addressLocality> rdf:type owl:DatatypeProperty ;
                                     rdfs:subPropertyOf <https://schema.org/address> ;
                                     rdfs:range xsd:string ;
                                     rdfs:comment "The locality in which the street address is, and which is in the region. For example, BHEL Layout."@en ;
                                     rdfs:label "address locality"@en .


###  https://schema.org/latitude
<https://schema.org/latitude> rdf:type owl:DatatypeProperty ,
                                       owl:FunctionalProperty ;
                              rdfs:domain <https://schema.org/Place> ;
                              rdfs:range xsd:decimal ;
                              rdfs:comment "The latitude of a location. For example 37.42242"@en ;
                              rdfs:label "latitude"@en .


###  https://schema.org/longitude
<https://schema.org/longitude> rdf:type owl:DatatypeProperty ,
                                        owl:FunctionalProperty ;
                               rdfs:domain <https://schema.org/Place> ;
                               rdfs:range xsd:decimal ;
                               rdfs:comment "The longitude of a location. For example -122.08585."@en ;
                               rdfs:label "longitude"@en .


###  https://schema.org/postalCode
<https://schema.org/postalCode> rdf:type owl:DatatypeProperty ;
                                rdfs:subPropertyOf <https://schema.org/address> ;
                                rdfs:range xsd:string ;
                                rdfs:comment "The postal code. For example, 560060"@en ;
                                rdfs:label "postal code"@en .


###  https://schema.org/streetAddress
<https://schema.org/streetAddress> rdf:type owl:DatatypeProperty ;
                                   rdfs:subPropertyOf <https://schema.org/address> ;
                                   rdfs:range xsd:string ;
                                   rdfs:comment "The street address. For example, 1st Main, Muthurainagara."@en ;
                                   rdfs:label "street address"@en .


#################################################################
#    Classes
#################################################################

###  http://purl.obolibrary.org/obo/SYMP_0000462
<http://purl.obolibrary.org/obo/SYMP_0000462> rdf:type owl:Class ;
                                              owl:equivalentClass <http://snomed.info/id/404684003> ;
                                              rdfs:comment "A symptom is a perceived change in function, sensation, loss, disturbance or appearance reported by a patient indicative of a disease."@en ,
                                                           """Source: https://www.mohfw.gov.in/pdf/FinalGuidanceonMangaementofCovidcasesversion2.pdf 

https://www.who.int/news-room/q-a-detail/q-a-coronaviruses"""@en ;
                                              rdfs:label "Symptom"@en .


###  http://schema.org/CovidTestingFacility
<http://schema.org/CovidTestingFacility> rdf:type owl:Class ;
                                         rdfs:subClassOf <http://schema.org/MedicalClinic> ;
                                         rdfs:comment "A Medical clinic where testing for the COVID-19 Coronavirus disease is available."@en ,
                                                      "Covid testing facility"@en .


###  http://schema.org/MedicalClinic
<http://schema.org/MedicalClinic> rdf:type owl:Class ;
                                  rdfs:subClassOf <http://xmlns.com/foaf/0.1/Organization> ;
                                  rdfs:comment "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare."@en ;
                                  rdfs:label "Medical clinic"@en .


###  http://snomed.info/id/404684003
<http://snomed.info/id/404684003> rdf:type owl:Class ;
                                  rdfs:label "Clinical finding (finding)"@en .


###  http://w3id.org/codo#Anniversary
:Anniversary rdf:type owl:Class ;
             rdfs:subClassOf :ExposureViaGathering ;
             rdfs:label "Anniversary"@en .


###  http://w3id.org/codo#Business
:Business rdf:type owl:Class ;
          rdfs:subClassOf <http://xmlns.com/foaf/0.1/Organization> ;
          rdfs:label "Business"@en .


###  http://w3id.org/codo#COVID-19DedicatedFacility
:COVID-19DedicatedFacility rdf:type owl:Class ;
                           rdfs:subClassOf <http://xmlns.com/foaf/0.1/Organization> ;
                           rdfs:comment "Any facility for providing care to COVID-19 patients."@en ,
                                        "source: https://www.mohfw.gov.in/pdf/FinalGuidanceonMangaementofCovidcasesversion2.pdf"@en ;
                           rdfs:label "COVID-19 dedicated facility"@en .


###  http://w3id.org/codo#COVID-19Diagnosis
:COVID-19Diagnosis rdf:type owl:Class ;
                   rdfs:subClassOf :Diagnosis ;
                   rdfs:comment """The diagnosis as COVID-19 patient. 
The diagnosied COVID-19 patients are categorised to three different categories/cases based on various clinical test and vital signs."""@en ;
                   rdfs:label "COVID-19 Diagnosis"@en .


###  http://w3id.org/codo#City
:City rdf:type owl:Class ;
      rdfs:subClassOf <https://schema.org/Place> ;
      rdfs:comment "A city."@en ,
                   "Towns with population of 1,00,000 and above are called cities."@en .


###  http://w3id.org/codo#CityWard
:CityWard rdf:type owl:Class ;
          rdfs:subClassOf <https://schema.org/Place> ;
          rdfs:comment "A ward is a containedIn a city. Calling it CityWard to avoid confusion with a hospital ward." .


###  http://w3id.org/codo#CloseContact
:CloseContact rdf:type owl:Class ;
              rdfs:subClassOf :ExposureToCOVID-19 ;
              rdfs:comment "Close contact, a suspected cause for catching COVID-19."@en ;
              rdfs:label "Close contact"@en .


###  http://w3id.org/codo#Cluster
:Cluster rdf:type owl:Class ;
         rdfs:subClassOf :Group ;
         rdfs:comment "A Cluster is a group of patients with the same disease who are grouped by one or more properties that are considered critical to an analysis of how the disease has spread." .


###  http://w3id.org/codo#Comorbidity
:Comorbidity rdf:type owl:Class ;
             rdfs:comment "indicate a medical condition existing simultaneously but independently with another condition in a patient (source: Wikipedia)"@en ;
             rdfs:label "Comorbidity"@en .


###  http://w3id.org/codo#ContactCluster
:ContactCluster rdf:type owl:Class ;
                rdfs:subClassOf :Cluster ;
                rdfs:comment "A cluster defined by contact with certain individuals. Note that to some extent all clusters are contact clusters so this class is used only for those clusters that specifically mention contact with individuals (or lack of knowledge about such contact) rather than geographic, time, or disease data." .


###  http://w3id.org/codo#ContactWithHealthWorkers
:ContactWithHealthWorkers rdf:type owl:Class ;
                          rdfs:subClassOf :ExposureToCOVID-19 .


###  http://w3id.org/codo#CoronavirusInfection
:CoronavirusInfection rdf:type owl:Class ;
                      rdfs:subClassOf :DiseaseCausedByCoronaviridae ;
                      rdfs:comment "Coronaviruses are a large family of viruses which may cause illness in animals or humans.  In humans, several coronaviruses are known to cause respiratory infections ranging from the common cold to more severe diseases such as Middle East Respiratory Syndrome (MERS) and Severe Acute Respiratory Syndrome (SARS). (source: https://www.who.int/news-room/q-a-detail/q-a-coronaviruses)"@en ,
                                   "SCTID: 186747009"@en ;
                      rdfs:label "Coronavirus infection"@en .


###  http://w3id.org/codo#CountryWiseStatistics
:CountryWiseStatistics rdf:type owl:Class ;
                       rdfs:subClassOf :Statistics ;
                       rdfs:label "Country wise statistics"@en .


###  http://w3id.org/codo#CovidCareCentre
:CovidCareCentre rdf:type owl:Class ;
                 rdfs:subClassOf :COVID-19DedicatedFacility ;
                 rdfs:comment "Any facility, such as hotels/lodges/hostels/stadiums for providing care to COVID-19 patients are reffered as Covid Care Centre (CCC)."@en ;
                 rdfs:label "Covid Care Centre (CCC)"@en .


###  http://w3id.org/codo#DedicatedCovidHealthCentre
:DedicatedCovidHealthCentre rdf:type owl:Class ;
                            rdfs:subClassOf :COVID-19DedicatedFacility ;
                            rdfs:comment "The Dedicated COVID Health Centre are hospitals that shall offer care for all cases that have been clinically assigned as moderate."@en ;
                            rdfs:label "Dedicated Covid Health Centre (DCHC)"@en .


###  http://w3id.org/codo#DedicatedCovidHospital
:DedicatedCovidHospital rdf:type owl:Class ;
                        rdfs:subClassOf :COVID-19DedicatedFacility ;
                        rdfs:comment "The Dedicated COVID Hospitals are hospitals that shall offer comprehensive care primarily for those who have been clinically assigned as severe."@en ;
                        rdfs:label "Dedicated Covid Hospital (DCH)"@en .


###  http://w3id.org/codo#DiagnosedWithCovid
:DiagnosedWithCovid rdf:type owl:Class ;
                    owl:equivalentClass [ owl:intersectionOf ( <https://schema.org/Patient>
                                                               [ rdf:type owl:Restriction ;
                                                                 owl:onProperty :hasDiagnosis ;
                                                                 owl:someValuesFrom :COVID-19Diagnosis
                                                               ]
                                                             ) ;
                                          rdf:type owl:Class
                                        ] ;
                    rdfs:subClassOf <https://schema.org/Patient> ;
                    rdfs:comment "A person diagnosed With COVID-19."@en ;
                    rdfs:label "Diagnosed With COVID-19"@en .


###  http://w3id.org/codo#Diagnosis
:Diagnosis rdf:type owl:Class ;
           rdfs:comment "SCTID: 439401001"@en ,
                        "identifying the nature or cause of some phenomenon."@en .


###  http://w3id.org/codo#DiagnosisType
:DiagnosisType rdf:type owl:Class ;
               rdfs:subClassOf :Diagnosis ;
               rdfs:comment "This models the manner in which a diagnosis was discovered. E.g., via a pregnancy test, screening for a suspected disease,  tests done before surgery, etc." .


###  http://w3id.org/codo#Disease
:Disease rdf:type owl:Class ;
         rdfs:comment "SCTID: 64572001"@en ,
                      "an impairment of health or a condition of abnormal functioning."@en ;
         rdfs:label "Disease"@en .


###  http://w3id.org/codo#DiseaseCausedByCoronaviridae
:DiseaseCausedByCoronaviridae rdf:type owl:Class ;
                              rdfs:subClassOf :ViralDisease ,
                                              [ rdf:type owl:Restriction ;
                                                owl:onProperty :covid-19ClinicalFacility ;
                                                owl:someValuesFrom <http://schema.org/CovidTestingFacility>
                                              ] ;
                              rdfs:comment "A viral disease caused by coronavirus."@en ,
                                           "SCTID: 27619001"@en ;
                              rdfs:label "Disease caused by Coronaviridae"@en .


###  http://w3id.org/codo#DiseaseCluster
:DiseaseCluster rdf:type owl:Class ;
                rdfs:subClassOf :Cluster ;
                rdfs:comment "Patients clustered by diseases that made them susceptible to the virus" .


###  http://w3id.org/codo#District
:District rdf:type owl:Class ;
          rdfs:subClassOf <https://schema.org/Place> ;
          rdfs:comment "An adminidtrative area spanning regions or counties, several municipalities, subdivisions of municipalities, school district, or political district."@en .


###  http://w3id.org/codo#DistrictWiseStatistics
:DistrictWiseStatistics rdf:type owl:Class ;
                        rdfs:subClassOf :Statistics ;
                        rdfs:label "District wise statistics"@en .


###  http://w3id.org/codo#Doctor
:Doctor rdf:type owl:Class ;
        rdfs:subClassOf :HealthCareProfessional ;
        rdfs:comment "A licensed medical doctor."@en ,
                     "SCTID: 158965000"@en ;
        rdfs:label "Doctor"@en .


###  http://w3id.org/codo#ExposureToCOVID-19
:ExposureToCOVID-19 rdf:type owl:Class ;
                    rdfs:comment "Suspected causes of catching COVID-19."@en ;
                    rdfs:label "Exposure to COVID-19"@en .


###  http://w3id.org/codo#ExposureViaCongregation
:ExposureViaCongregation rdf:type owl:Class ;
                         rdfs:subClassOf :ExposureViaGathering .


###  http://w3id.org/codo#ExposureViaGathering
:ExposureViaGathering rdf:type owl:Class ;
                      rdfs:subClassOf :ExposureToCOVID-19 ;
                      rdfs:comment "Mass gathering, a suspected cause for catching COVID-19."@en ;
                      rdfs:label "Gathering"@en .


###  http://w3id.org/codo#GeographicCluster
:GeographicCluster rdf:type owl:Class ;
                   rdfs:subClassOf :Cluster ;
                   rdfs:comment "Patients clustered by the geographic region where they contracted the infection" .


###  http://w3id.org/codo#GeographicRegion
:GeographicRegion rdf:type owl:Class ;
                  rdfs:subClassOf <https://schema.org/Place> ;
                  rdfs:comment "Geographic regions such as the Middle East, North America, etc. For the cluster class" ;
                  rdfs:label "GeographicRegion"@en .


###  http://w3id.org/codo#Group
:Group rdf:type owl:Class ;
       rdfs:subClassOf <http://xmlns.com/foaf/0.1/Agent> ;
       rdfs:label "Group"@en .


###  http://w3id.org/codo#HealthCareProfessional
:HealthCareProfessional rdf:type owl:Class ;
                        rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> ;
                        rdfs:label "HealthCareProfessional"@en .


###  http://w3id.org/codo#InfectedBrother
:InfectedBrother rdf:type owl:Class ;
                 rdfs:subClassOf :InfectedFamilyMember .


###  http://w3id.org/codo#InfectedCo-Passenger
:InfectedCo-Passenger rdf:type owl:Class ;
                      rdfs:subClassOf :ExposureToCOVID-19 .


###  http://w3id.org/codo#InfectedCo-Worker
:InfectedCo-Worker rdf:type owl:Class ;
                   rdfs:subClassOf :InfectedViaJob .


###  http://w3id.org/codo#InfectedCousin
:InfectedCousin rdf:type owl:Class ;
                rdfs:subClassOf :InfectedFamilyMember .


###  http://w3id.org/codo#InfectedDaughter
:InfectedDaughter rdf:type owl:Class ;
                  rdfs:subClassOf :InfectedFamilyMember .


###  http://w3id.org/codo#InfectedDomesticHelp
:InfectedDomesticHelp rdf:type owl:Class ;
                      rdfs:subClassOf :ExposureToCOVID-19 .


###  http://w3id.org/codo#InfectedFamilyMember
:InfectedFamilyMember rdf:type owl:Class ;
                      rdfs:subClassOf :ExposureToCOVID-19 .


###  http://w3id.org/codo#InfectedFather
:InfectedFather rdf:type owl:Class ;
                rdfs:subClassOf :InfectedFamilyMember .


###  http://w3id.org/codo#InfectedMother
:InfectedMother rdf:type owl:Class ;
                rdfs:subClassOf :InfectedFamilyMember .


###  http://w3id.org/codo#InfectedNeighbor
:InfectedNeighbor rdf:type owl:Class ;
                  rdfs:subClassOf :ExposureToCOVID-19 ;
                  rdfs:label "InfectedNeighbor"@en .


###  http://w3id.org/codo#InfectedNephew
:InfectedNephew rdf:type owl:Class ;
                rdfs:subClassOf :InfectedFamilyMember ;
                rdfs:label "InfectedNephew"@en .


###  http://w3id.org/codo#InfectedNiece
:InfectedNiece rdf:type owl:Class ;
               rdfs:subClassOf :InfectedFamilyMember ;
               rdfs:label "InfectedNiece"@en .


###  http://w3id.org/codo#InfectedRoomMate
:InfectedRoomMate rdf:type owl:Class ;
                  rdfs:subClassOf :ExposureToCOVID-19 .


###  http://w3id.org/codo#InfectedSister
:InfectedSister rdf:type owl:Class ;
                rdfs:subClassOf :InfectedFamilyMember .


###  http://w3id.org/codo#InfectedSon
:InfectedSon rdf:type owl:Class ;
             rdfs:subClassOf :InfectedFamilyMember .


###  http://w3id.org/codo#InfectedSpouse
:InfectedSpouse rdf:type owl:Class ;
                rdfs:subClassOf :InfectedFamilyMember .


###  http://w3id.org/codo#InfectedViaHealthcareWork
:InfectedViaHealthcareWork rdf:type owl:Class ;
                           rdfs:subClassOf :InfectedViaJob ;
                           rdfs:label "InfectedViaHealthcareWork"@en .


###  http://w3id.org/codo#InfectedViaJob
:InfectedViaJob rdf:type owl:Class ;
                rdfs:subClassOf :ExposureToCOVID-19 ;
                rdfs:label "InfectedViaJob"@en .


###  http://w3id.org/codo#InfectedViaPoliceWork
:InfectedViaPoliceWork rdf:type owl:Class ;
                       rdfs:subClassOf :InfectedViaJob ;
                       rdfs:label "InfectedViaPoliceWork"@en .


###  http://w3id.org/codo#LaboratiryTestFinding
:LaboratiryTestFinding rdf:type owl:Class ;
                       owl:equivalentClass [ rdf:type owl:Class ;
                                             owl:oneOf ( :Negative
                                                         :Pending
                                                         :Positive
                                                       )
                                           ] ;
                       rdfs:subClassOf :TestResult ;
                       rdfs:comment "SCTID: 118246004"@en ,
                                    "The laboratory test finding of the patient. The possible values are Positive, Negative, Pending."@en ;
                       rdfs:label "Laboratory test finding"@en .


###  http://w3id.org/codo#Man
:Man rdf:type owl:Class ;
     owl:equivalentClass [ owl:intersectionOf ( <http://xmlns.com/foaf/0.1/Person>
                                                [ rdf:type owl:Restriction ;
                                                  owl:onProperty <https://pending.schema.org/gender> ;
                                                  owl:hasValue :Male
                                                ]
                                              ) ;
                           rdf:type owl:Class
                         ] ;
     rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> ;
     rdfs:comment "A man."@en .


###  http://w3id.org/codo#MildAndVeryMildCOVID-19
:MildAndVeryMildCOVID-19 rdf:type owl:Class ;
                         rdfs:subClassOf :COVID-19Diagnosis ;
                         rdfs:comment """Cases presenting with fever and/or upper respiratory tract illness (Influenza
Like Illness, ILI)."""@en ;
                         rdfs:label "Mild and very mild COVID-19"@en .


###  http://w3id.org/codo#ModerateCOVID-19
:ModerateCOVID-19 rdf:type owl:Class ;
                  rdfs:subClassOf :COVID-19Diagnosis ;
                  rdfs:comment "Pneumonia with no signs of severe disease (Respiratory Rate 15 to 30/minute, SpO2 90%-94%)."@en ;
                  rdfs:label "Moderate COVID-19"@en .


###  http://w3id.org/codo#Nurse
:Nurse rdf:type owl:Class ;
       rdfs:subClassOf :HealthCareProfessional ;
       rdfs:comment "A health professional skilled in caring for young children or the sick (usually under the supervision of a physician)."@en ,
                    "SCTID: 106292003"@en ;
       rdfs:label "Nurse"@en ,
                  "Professional nurse"@en .


###  http://w3id.org/codo#PolicePerson
:PolicePerson rdf:type owl:Class ;
              rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> ;
              rdfs:label "PolicePerson"@en .


###  http://w3id.org/codo#PreSurgeryTest
:PreSurgeryTest rdf:type owl:Class ;
                rdfs:subClassOf :DiagnosisType ;
                rdfs:comment "The patient was discovered to have another disease as the result of tests given before surgery." .


###  http://w3id.org/codo#PregnancyScreening
:PregnancyScreening rdf:type owl:Class ;
                    rdfs:subClassOf :DiagnosisType ;
                    rdfs:comment "The patient was discovered to have a disease as a result of tests given during pregnancy." .


###  http://w3id.org/codo#Province
:Province rdf:type owl:Class ;
          rdfs:subClassOf <https://schema.org/Place> ;
          rdfs:label "Province"@en .


###  http://w3id.org/codo#SecondaryContact
:SecondaryContact rdf:type owl:Class ;
                  rdfs:subClassOf :ExposureToCOVID-19 ;
                  rdfs:label "SecondaryContact"@en .


###  http://w3id.org/codo#SecurityGuard
:SecurityGuard rdf:type owl:Class ;
               rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> ;
               rdfs:label "SecurityGuard"@en .


###  http://w3id.org/codo#SevereCOVID-19
:SevereCOVID-19 rdf:type owl:Class ;
                rdfs:subClassOf :COVID-19Diagnosis ;
                rdfs:comment "Severe Pneumonia (with respiratory rate ≥30/minute and/or SpO2 < 90% in room air) or ARDS or Septic shock."@en ;
                rdfs:label "Severe COVID-19"@en .


###  http://w3id.org/codo#StateWiseStatistics
:StateWiseStatistics rdf:type owl:Class ;
                     rdfs:subClassOf :Statistics ;
                     rdfs:label "State wise statistics"@en .


###  http://w3id.org/codo#Statistics
:Statistics rdf:type owl:Class ;
            rdfs:comment "Statistics based on each day."@en ,
                         "Statistics of COVID-19 cases which includes the deatils of active, recovered, deaths, and also the resources (e.g., beds required, shortage of beds, ICUs) on daily basis."@en .


###  http://w3id.org/codo#Status
:Status rdf:type owl:Class ;
        owl:equivalentClass [ rdf:type owl:Class ;
                              owl:oneOf ( :Cured
                                          :Deceased
                                          :Hospitalized
                                        )
                            ] ;
        rdfs:comment "The current status of the patient, for example: recovered, hospitalized, deceased."@en ;
        rdfs:label "Status"@en .


###  http://w3id.org/codo#TestData
:TestData rdf:type owl:Class .


###  http://w3id.org/codo#TestResult
:TestResult rdf:type owl:Class ;
            rdfs:comment "A test result."@en ;
            rdfs:label "Test result"@en .


###  http://w3id.org/codo#TimeCluster
:TimeCluster rdf:type owl:Class ;
             rdfs:subClassOf :Cluster ;
             rdfs:comment "A cluster defined by some event (including lack of knowledge) at a certain date. Note that clusters are not disjoint, so a cluster can be an instance of a TimeCluster and other clusters." .


###  http://w3id.org/codo#Town
:Town rdf:type owl:Class ;
      rdfs:subClassOf <https://schema.org/Place> ;
      rdfs:comment "Places which satisfy the following criteria are called towns: (i) A minimum population of 5,000; (ii) At least 75 per cent of the male main working population engaged in non-agricultural pursuits; and (iii) A density of population of at least 400 persons per sq. km. (i.e. 1000 per sq. Mile)."@en ;
      rdfs:label "Town"@en .


###  http://w3id.org/codo#UnderTracing
:UnderTracing rdf:type owl:Class ;
              rdfs:subClassOf :DiagnosisType ;
              rdfs:comment "The patient was identified as at risk for the disease (e.g., Covid-19) and was tested as part of tracing people identified to be at risk." .


###  http://w3id.org/codo#UnionTerritory
:UnionTerritory rdf:type owl:Class ;
                rdfs:subClassOf <https://schema.org/Place> ;
                rdfs:comment "A union territory ('Federally administered territory/province') is a type of administrative division in the Republic of India. Unlike the states of India, which have their own governments, union territories are federal territories governed directly by the Central Government of India."@en ;
                rdfs:label "UnionTerritory"@en .


###  http://w3id.org/codo#UntestedForCovid
:UntestedForCovid rdf:type owl:Class ;
                  owl:equivalentClass [ owl:intersectionOf ( <http://xmlns.com/foaf/0.1/Person>
                                                             [ rdf:type owl:Restriction ;
                                                               owl:onProperty :hadCovidTest ;
                                                               owl:hasValue "false"^^xsd:boolean
                                                             ]
                                                           ) ;
                                        rdf:type owl:Class
                                      ] ;
                  rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> ;
                  rdfs:comment "Untested for COVID-19"@en ;
                  rdfs:label "Untested for COVID-19"@en .


###  http://w3id.org/codo#UrgentlyNeedsCovidTest
:UrgentlyNeedsCovidTest rdf:type owl:Class ;
                        owl:equivalentClass [ owl:intersectionOf ( <http://xmlns.com/foaf/0.1/Person>
                                                                   [ rdf:type owl:Restriction ;
                                                                     owl:onProperty :hasCloseRelationship ;
                                                                     owl:someValuesFrom :DiagnosedWithCovid
                                                                   ]
                                                                   [ rdf:type owl:Restriction ;
                                                                     owl:onProperty :hadCovidTest ;
                                                                     owl:hasValue "false"^^xsd:boolean
                                                                   ]
                                                                 ) ;
                                              rdf:type owl:Class
                                            ] ;
                        rdfs:subClassOf :UntestedForCovid ;
                        rdfs:comment "Urgently needs COVID test"@en ,
                                     "Urgently needs COVID-19 test"@en .


###  http://w3id.org/codo#ViralDisease
:ViralDisease rdf:type owl:Class ;
              rdfs:subClassOf <https://schema.org/InfectiousDisease> ;
              rdfs:comment "SCTID: 34014006"@en ;
              rdfs:label "Viral disease"@en .


###  http://w3id.org/codo#VitalSigns
:VitalSigns rdf:type owl:Class ;
            rdfs:subClassOf :TestResult ;
            rdfs:comment "The vital signs of a suspected covid-19 patient as found through clinical tests."@en ;
            rdfs:label "Vital signs"@en .


###  http://w3id.org/codo#Woman
:Woman rdf:type owl:Class ;
       owl:equivalentClass [ owl:intersectionOf ( <http://xmlns.com/foaf/0.1/Person>
                                                  [ rdf:type owl:Restriction ;
                                                    owl:onProperty <https://pending.schema.org/gender> ;
                                                    owl:hasValue :Female
                                                  ]
                                                ) ;
                             rdf:type owl:Class
                           ] ;
       rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> ;
       rdfs:comment "A women."@en .


###  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 ;
                                  rdfs:label "Agent"@en .


###  http://xmlns.com/foaf/0.1/Organization
<http://xmlns.com/foaf/0.1/Organization> rdf:type owl:Class ;
                                         rdfs:subClassOf :Group ;
                                         rdfs:comment "A group of people who work together."@en ;
                                         rdfs:label "Organization"@en .


###  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> ;
                                   rdfs:comment "A human being."@en ;
                                   rdfs:label "Person"@en .


###  https://schema.org/Country
<https://schema.org/Country> rdf:type owl:Class ;
                             rdfs:subClassOf <https://schema.org/Place> ;
                             rdfs:comment "A country."@en .


###  https://schema.org/GenderType
<https://schema.org/GenderType> rdf:type owl:Class ;
                                owl:equivalentClass [ rdf:type owl:Class ;
                                                      owl:oneOf ( :Female
                                                                  :Male
                                                                )
                                                    ] ;
                                rdfs:comment "An enumeration of genders."@en ;
                                rdfs:label "Gender type"@en .


###  https://schema.org/InfectiousDisease
<https://schema.org/InfectiousDisease> rdf:type owl:Class ;
                                       rdfs:subClassOf :Disease ;
                                       rdfs:comment "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease."@en ,
                                                    "SCTID: 40733004"@en ;
                                       rdfs:label "Infectious disease"@en .


###  https://schema.org/Patient
<https://schema.org/Patient> rdf:type owl:Class ;
                             rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> ,
                                             [ rdf:type owl:Restriction ;
                                               owl:onProperty :hasDiagnosis ;
                                               owl:someValuesFrom :Diagnosis
                                             ] ;
                             rdfs:comment "A patient is any person recipient of health care services."@en ,
                                          """Patients are categorised into three groups based on the following guidelines. 

Source: https://www.mohfw.gov.in/pdf/FinalGuidanceonMangaementofCovidcasesversion2.pdf"""@en ,
                                          "SCTID: 116154003"@en ;
                             rdfs:label "Patient"@en .


###  https://schema.org/Place
<https://schema.org/Place> rdf:type owl:Class ;
                           rdfs:comment "Entities that have a somewhat fixed, physical extension."@en .


###  https://schema.org/State
<https://schema.org/State> rdf:type owl:Class ;
                           rdfs:subClassOf <https://schema.org/Place> ;
                           rdfs:comment "A state or province of a country."@en .


#################################################################
#    Individuals
#################################################################

###  http://w3id.org/codo#AbuDhabi
:AbuDhabi rdf:type owl:NamedIndividual ,
                   :City ,
                   <https://schema.org/Place> ;
          :geoName "Abu Dhabi" ;
          <https://schema.org/latitude> 24.466667 ;
          <https://schema.org/longitude> 54.366667 ;
          rdfs:label "Abu Dhabi"@en .


###  http://w3id.org/codo#AchesAndPains
:AchesAndPains rdf:type owl:NamedIndividual ,
                        <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                        <http://snomed.info/id/404684003> ;
               rdfs:comment "SCTID: 82991003"@en ;
               rdfs:label "Generalized aches and pains (finding)"@en .


###  http://w3id.org/codo#AcuteRespiratoryDistressSyndrome
:AcuteRespiratoryDistressSyndrome rdf:type owl:NamedIndividual ,
                                           :Comorbidity ;
                                  rdfs:label "Acute Respiratory Distress Syndrome (ARDS)"@en .


###  http://w3id.org/codo#Ahmedabad
:Ahmedabad rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :Gujarat ,
                        :India ;
           :hasState :Gujarat ;
           :geoName "Ahmedabad" ;
           <https://schema.org/latitude> 23.03 ;
           <https://schema.org/longitude> 72.58 ;
           rdfs:label "Ahmedabad"@en .


###  http://w3id.org/codo#Ajmer
:Ajmer rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :containedIn :India ,
                    :Rajasthan ;
       :hasState :Rajasthan ;
       :geoName "Ajmer" ;
       <https://schema.org/latitude> 26.4499 ;
       <https://schema.org/longitude> 74.6399 ;
       rdfs:label "Ajmer"@en .


###  http://w3id.org/codo#Amsterdam
:Amsterdam rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :Netherlands ;
           :hasCountry :Netherlands ;
           :geoName "Amsterdam" ;
           <https://schema.org/latitude> 52.366667 ;
           <https://schema.org/longitude> 4.9 ;
           rdfs:label "Amsterdam"@en .


###  http://w3id.org/codo#Anantapur
:Anantapur rdf:type owl:NamedIndividual ,
                    :District ,
                    <https://schema.org/Place> ;
           :containedIn :AndhraPradesh ,
                        :India ;
           :contains :Hindupur ;
           :hasState :AndhraPradesh ;
           :geoName "Anantapur" ;
           rdfs:label "Anantapur"@en .


###  http://w3id.org/codo#AndamanAndNicobarIslands
:AndamanAndNicobarIslands rdf:type owl:NamedIndividual ,
                                   :UnionTerritory ,
                                   <https://schema.org/Place> ;
                          :containedIn :India ;
                          :hasCountry :India ;
                          :geoName "Andaman and Nicobar Islands" ;
                          rdfs:comment "A union territory of India comprising 572 islands of which 37 are inhabited, are a group of islands at the juncture of the Bay of Bengal and the Andaman Sea."@en ;
                          rdfs:label "Andaman and Nicobar Islands"@en .


###  http://w3id.org/codo#AndhraPradesh
:AndhraPradesh rdf:type owl:NamedIndividual ,
                        <https://schema.org/Place> ,
                        <https://schema.org/State> ;
               :containedIn :India ;
               :contains :Anantapur ,
                         :Hindupur ,
                         :Vishakapatnam ;
               :hasCountry :India ;
               :geoName "Andhra Pradesh" ;
               rdfs:label "Andhra Pradesh"@en .


###  http://w3id.org/codo#Argentina
:Argentina rdf:type owl:NamedIndividual ,
                    <https://schema.org/Country> ,
                    <https://schema.org/Place> ;
           :geoName "Argentina" ;
           rdfs:label "Argentina"@en .


###  http://w3id.org/codo#Assam
:Assam rdf:type owl:NamedIndividual ,
                <https://schema.org/Place> ,
                <https://schema.org/State> ;
       :containedIn :India ;
       :hasCountry :India ;
       :geoName "Assam" ;
       rdfs:label "Assam"@en .


###  http://w3id.org/codo#Athens
:Athens rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :Greece ;
        :hasCountry :Greece ;
        :geoName "Athens" ;
        <https://schema.org/latitude> 37.983972 ;
        <https://schema.org/longitude> 23.727806 ;
        rdfs:label "Athens"@en .


###  http://w3id.org/codo#Bagalkote
:Bagalkote rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :BengaluruUrban ,
                        :India ,
                        :Karnataka ;
           :hasState :Karnataka ;
           :geoName "Bagalkote" ;
           <https://schema.org/latitude> 16.1817 ;
           <https://schema.org/longitude> 75.6958 ;
           rdfs:label "Bagalkote"@en .


###  http://w3id.org/codo#Bahrain
:Bahrain rdf:type owl:NamedIndividual ,
                  <https://schema.org/Country> ,
                  <https://schema.org/Place> ;
         :geoName "Bahrain" ;
         rdfs:label "Bahrain"@en .


###  http://w3id.org/codo#Bangalore
:Bangalore rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :Bangalore-Urban ,
                        :BengaluruUrban ,
                        :India ,
                        :Karnataka ;
           :hasDistrict :Bangalore-Urban ;
           :geoName "Bangalore" ;
           <https://schema.org/latitude> 12.983333 ;
           <https://schema.org/longitude> 77.583333 ;
           rdfs:label "Bangalore"@en .


###  http://w3id.org/codo#Bangalore-Urban
:Bangalore-Urban rdf:type owl:NamedIndividual ,
                          :District ,
                          <https://schema.org/Place> ;
                 :containedIn :BengaluruUrban ,
                              :India ,
                              :Karnataka ;
                 :contains :Bangalore ;
                 :hasState :Karnataka ;
                 :geoName "Bangalore-Urban" ;
                 rdfs:label "Bangalore-Urban"@en .


###  http://w3id.org/codo#BangaloreRural
:BangaloreRural rdf:type owl:NamedIndividual ,
                         :District ,
                         <https://schema.org/Place> ;
                :containedIn :BengaluruUrban ,
                             :India ,
                             :Karnataka ;
                :contains :Nelamangala ;
                :hasState :Karnataka ;
                :geoName "Bangalore Rural" ;
                rdfs:label "Bangalore Rural"@en .


###  http://w3id.org/codo#Bangladesh
:Bangladesh rdf:type owl:NamedIndividual ,
                     <https://schema.org/Country> ,
                     <https://schema.org/Place> ;
            :geoName "Bangladesh" ;
            rdfs:label "Bangladesh"@en .


###  http://w3id.org/codo#Baroda
:Baroda rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :Gujarat ,
                     :India ;
        :hasState :Gujarat ;
        :geoName "Baroda" ;
        <https://schema.org/latitude> 22.3 ;
        <https://schema.org/longitude> 73.2 ;
        rdfs:label "Baroda"@en .


###  http://w3id.org/codo#Belagavi
:Belagavi rdf:type owl:NamedIndividual ,
                   :City ,
                   <https://schema.org/Place> ;
          :containedIn :BengaluruUrban ,
                       :India ,
                       :Karnataka ;
          :hasState :Karnataka ;
          :geoName "Belagavi" ;
          <https://schema.org/latitude> 15.85 ;
          <https://schema.org/longitude> 74.5 ;
          rdfs:label "Belagavi"@en .


###  http://w3id.org/codo#Bellary
:Bellary rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :BellaryDistrict ,
                      :BengaluruUrban ,
                      :India ,
                      :Karnataka ;
         :hasDistrict :BellaryDistrict ;
         <https://schema.org/latitude> 15.1 ;
         <https://schema.org/longitude> 76.916667 .


###  http://w3id.org/codo#BellaryDistrict
:BellaryDistrict rdf:type owl:NamedIndividual ,
                          :District ,
                          <https://schema.org/Place> ;
                 :containedIn :BengaluruUrban ,
                              :India ,
                              :Karnataka ;
                 :contains :Bellary ;
                 :hasState :Karnataka ;
                 :geoName "Bellary District" ;
                 rdfs:label "Bellary District" .


###  http://w3id.org/codo#BengUrbanDistStat000001
:BengUrbanDistStat000001 rdf:type owl:NamedIndividual ,
                                  :DistrictWiseStatistics ,
                                  :Statistics ;
                         :isCovid-19StatisticsOf :BengaluruUrban ;
                         :cases 59 ;
                         :metrics 59 .


###  http://w3id.org/codo#BengUrbanDistStat000002
:BengUrbanDistStat000002 rdf:type owl:NamedIndividual ,
                                  :DistrictWiseStatistics ,
                                  :Statistics ;
                         :isCovid-19StatisticsOf :BengaluruUrban .


###  http://w3id.org/codo#BengaluruUrban
:BengaluruUrban rdf:type owl:NamedIndividual ,
                         :District ,
                         <https://schema.org/Place> ;
                :contains :Bagalkote ,
                          :Bangalore ,
                          :Bangalore-Urban ,
                          :BangaloreRural ,
                          :Belagavi ,
                          :Bellary ,
                          :BellaryDistrict ,
                          :Bhatkal ,
                          :Bidar ,
                          :Carwar ,
                          :Chamarajanagar ,
                          :Channagiri ,
                          :Chikballarpur ,
                          :Chitradurga ,
                          :Davangere ,
                          :DavangereDistrict ,
                          :Dharwad ,
                          :DharwadDistrict ,
                          :Gadag ,
                          :Gadag-Betageri ,
                          :Gulbarga ,
                          :Hassan ,
                          :Haveri ,
                          :Hubballi ,
                          :Hubli ,
                          :Humnabad ,
                          :Kalaburagi ,
                          :Kalburgi ,
                          :Karnataka ,
                          :Karwara ,
                          :Kodagu ,
                          :Koppal ,
                          :KoppalaDistrict ,
                          :Madikeri ,
                          :Mandya ,
                          :Mangalore ,
                          :Mangaluru ,
                          :Mysore ,
                          :Nanjangud ,
                          :Nelamangala ,
                          :PharmaceuticalCompanyInNanjangud ,
                          :Raichur ,
                          :Ramanagara ,
                          :RamanagaraDistrict ,
                          :Shahapur ,
                          :Shivamogga ,
                          :Tumkur ,
                          :Udupi ,
                          :UttarKannada ,
                          :UttaraKannada ,
                          :Vijayapura ,
                          :Yadgir ;
                :districtWiseStatistics :BengUrbanDistStat000001 ,
                                        :BengUrbanDistStat000002 ;
                :hasStatistics :BengUrbanDistStat000001 ,
                               :BengUrbanDistStat000002 ;
                :isLocationFor :COVID-19 ;
                :geoName "Bengaluru Urban" ;
                rdfs:label "Bengaluru Urban" .


###  http://w3id.org/codo#Bhatkal
:Bhatkal rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :BengaluruUrban ,
                      :India ,
                      :Karnataka ;
         :hasState :Karnataka ;
         :geoName "Bhatkal" ;
         <https://schema.org/latitude> 13.967 ;
         <https://schema.org/longitude> 74.567 ;
         rdfs:label "Bhatkal"@en .


###  http://w3id.org/codo#Bidar
:Bidar rdf:type owl:NamedIndividual ,
                :City ,
                :District ,
                <https://schema.org/Place> ;
       :containedIn :BengaluruUrban ,
                    :India ,
                    :Karnataka ;
       :contains :Humnabad ;
       :hasState :Karnataka ;
       :geoName "Bidar" ;
       <https://schema.org/latitude> 17.9 ;
       <https://schema.org/longitude> 77.5 ;
       rdfs:label "Bidar"@en .


###  http://w3id.org/codo#Bihar
:Bihar rdf:type owl:NamedIndividual ,
                <https://schema.org/Place> ,
                <https://schema.org/State> ;
       :geoName "Bihar" ;
       rdfs:label "Bihar" .


###  http://w3id.org/codo#Brazil
:Brazil rdf:type owl:NamedIndividual ,
                 <https://schema.org/Country> ,
                 <https://schema.org/Place> ;
        :geoName "Brazil" ;
        rdfs:label "Brazil"@en .


###  http://w3id.org/codo#Breathlessness
:Breathlessness rdf:type owl:NamedIndividual ,
                         <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                         <http://snomed.info/id/404684003> ;
                rdfs:label "Breathlessness"@en .


###  http://w3id.org/codo#COVID-19
:COVID-19 rdf:type owl:NamedIndividual ,
                   :CoronavirusInfection ,
                   :Disease ,
                   :DiseaseCausedByCoronaviridae ,
                   :ViralDisease ,
                   <https://schema.org/InfectiousDisease> ;
          :hasLocation :BengaluruUrban ,
                       :India ,
                       :Karnataka ,
                       :UP ;
          <http://xmlns.com/foaf/0.1/name> "COVID-19" ;
          rdfs:comment "A disease caused by severe acute respiratory syndrome coronavirus 2. "@en ,
                       "Disease caused by 2019 novel coronavirus"@en ,
                       "Disease caused by 2019-nCoV"@en ,
                       "SCTID: 840539006"@en .


###  http://w3id.org/codo#CardiovascularDisease
:CardiovascularDisease rdf:type owl:NamedIndividual ,
                                :Comorbidity ;
                       rdfs:label "Cardiovascular Disease (CVD)"@en .


###  http://w3id.org/codo#Carwar
:Carwar rdf:type owl:NamedIndividual ,
                 :City ,
                 :District ,
                 <https://schema.org/Place> ;
        owl:sameAs :Karwara ;
        :containedIn :BengaluruUrban ,
                     :India ,
                     :Karnataka ;
        :hasState :Karnataka ;
        :geoName "Carwar" ;
        rdfs:label "Carwar"@en .


###  http://w3id.org/codo#Chamarajanagar
:Chamarajanagar rdf:type owl:NamedIndividual ,
                         :City ,
                         <https://schema.org/Place> ;
                :containedIn :BengaluruUrban ,
                             :India ,
                             :Karnataka ;
                :hasState :Karnataka ;
                :geoName "Chamarajanagar" ;
                <https://schema.org/latitude> 11.926 ;
                <https://schema.org/longitude> 76.9402 ;
                rdfs:label "Chamarajanagar"@en .


###  http://w3id.org/codo#Channagiri
:Channagiri rdf:type owl:NamedIndividual ,
                     :City ,
                     <https://schema.org/Place> ;
            :containedIn :BengaluruUrban ,
                         :DavangereDistrict ,
                         :India ,
                         :Karnataka ;
            :hasDistrict :DavangereDistrict ;
            :geoName "Channagiri" ;
            <https://schema.org/latitude> 14.03 ;
            <https://schema.org/longitude> 75.93 ;
            rdfs:label "Channagiri" .


###  http://w3id.org/codo#Chattisgadh
:Chattisgadh rdf:type owl:NamedIndividual ,
                      <https://schema.org/Place> ,
                      <https://schema.org/State> ;
             :containedIn :India ;
             :hasCountry :India ;
             :geoName "Chattisgadh" ;
             rdfs:label "Chattisgadh" .


###  http://w3id.org/codo#Chennai
:Chennai rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :India ,
                      :TamilNadu ;
         :hasState :TamilNadu ;
         :geoName "Chennai" ;
         <https://schema.org/latitude> 13.0825 ;
         <https://schema.org/longitude> 80.275 ;
         rdfs:label "Chennai"@en .


###  http://w3id.org/codo#Chikballarpur
:Chikballarpur rdf:type owl:NamedIndividual ,
                        :City ,
                        <https://schema.org/Place> ;
               :containedIn :BengaluruUrban ,
                            :India ,
                            :Karnataka ;
               :hasState :Karnataka ;
               :geoName "Chikkaballapur" ;
               <https://schema.org/latitude> 13.43 ;
               <https://schema.org/longitude> 77.72 ;
               rdfs:label "Chikkaballapur" .


###  http://w3id.org/codo#Chikmagalur
:Chikmagalur rdf:type owl:NamedIndividual ,
                      :City ,
                      <https://schema.org/Place> ;
             :geoName "Chikmagalur" ;
             <https://schema.org/latitude> 13.313 ;
             <https://schema.org/longitude> 75.737 ;
             rdfs:label "Chikmagalur"@en .


###  http://w3id.org/codo#Chitradurga
:Chitradurga rdf:type owl:NamedIndividual ,
                      :City ,
                      <https://schema.org/Place> ;
             :containedIn :BengaluruUrban ,
                          :India ,
                          :Karnataka ;
             :hasState :Karnataka ;
             :geoName "Chitradurga" ;
             <https://schema.org/latitude> 14.23 ;
             <https://schema.org/longitude> 76.4 ;
             rdfs:label "Chitradurga"@en .


###  http://w3id.org/codo#ChronicKidneyDisease
:ChronicKidneyDisease rdf:type owl:NamedIndividual ,
                               :Comorbidity ;
                      rdfs:label "Chronic Kidney Disease (CKD)"@en .


###  http://w3id.org/codo#ChronicKidneyInsufficiency
:ChronicKidneyInsufficiency rdf:type owl:NamedIndividual ,
                                     :Comorbidity ;
                            rdfs:label "Chronic Kidney Insufficiency (CKI)"@en .


###  http://w3id.org/codo#ChronicLiverDisease
:ChronicLiverDisease rdf:type owl:NamedIndividual ,
                              :Comorbidity ;
                     rdfs:label "Chronic Liver Disease (CLD)"@en .


###  http://w3id.org/codo#ChronicObstructivePulmonaryDisease
:ChronicObstructivePulmonaryDisease rdf:type owl:NamedIndividual ,
                                             :Comorbidity ;
                                    rdfs:label "Chronic Obstructive Pulmonary Disease (COPD)"@en .


###  http://w3id.org/codo#Colombo
:Colombo rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :SriLanka ,
                      :WesternProvince ;
         :hasProvince :WesternProvince ;
         :geoName "Colombo" ;
         <https://schema.org/latitude> 6.934444 ;
         <https://schema.org/longitude> 79.842778 ;
         rdfs:label "Colombo"@en .


###  http://w3id.org/codo#ContainmentZonesCluster
:ContainmentZonesCluster rdf:type owl:NamedIndividual ,
                                  :Cluster ,
                                  :ContactCluster ,
                                  :Group ,
                                  <http://xmlns.com/foaf/0.1/Agent> ;
                         rdfs:comment "Containment Zones : The patients who were contacts of Conatinment Zones and their contacts. Some patients have the Ward represented in the Reason column." .


###  http://w3id.org/codo#Cough
:Cough rdf:type owl:NamedIndividual ,
                <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                <http://snomed.info/id/404684003> ;
       rdfs:label "Cough"@en .


###  http://w3id.org/codo#Cured
:Cured rdf:type owl:NamedIndividual ,
                :Status .


###  http://w3id.org/codo#DadraAndNagarHaveliAndDamanAndDiu
:DadraAndNagarHaveliAndDamanAndDiu rdf:type owl:NamedIndividual ,
                                            :UnionTerritory ,
                                            <https://schema.org/Place> ;
                                   :containedIn :India ;
                                   :hasCountry :India ;
                                   :geoName "Dadra And Nagar Haveli And Daman And Diu" ;
                                   rdfs:comment "Dadra and Nagar Haveli and Daman and Diu (DNHDD) is a union territory in western India."@en ;
                                   rdfs:label "Dadra And Nagar Haveli And Daman And Diu"@en .


###  http://w3id.org/codo#DakshinKannadaDistrict
:DakshinKannadaDistrict rdf:type owl:NamedIndividual ,
                                 :District ,
                                 <https://schema.org/Place> ;
                        :containedIn :India ;
                        :contains :Mangalore ,
                                  :Mangaluru ;
                        :hasCountry :India ;
                        :geoName "Dakshina Kannada District" ;
                        rdfs:label "Dakshina Kannada District"@en .


###  http://w3id.org/codo#DamanAndDiu
:DamanAndDiu rdf:type owl:NamedIndividual ,
                      :UnionTerritory ,
                      <https://schema.org/Place> ;
             :containedIn :India ;
             :hasCountry :India ;
             :geoName "Daman And Diu" ;
             rdfs:comment "Until June 2019, Daman and Diu was an Union Territory of India. But since July 2019 it was merged to another Union Territory of India \"Dadra and Nagar Haveli\" and togtrehr formed a single union territory \"Dadra and Nagar Haveli and Daman and Diu (DNHDD).\""@en ;
             rdfs:label "Daman And Diu"@en .


###  http://w3id.org/codo#Dammam
:Dammam rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :SaudiArabia ;
        :hasCountry :SaudiArabia ;
        :geoName "Dammam" ;
        <https://schema.org/latitude> 26.433333 ;
        <https://schema.org/longitude> 50.1 ;
        rdfs:label "Dammam"@en .


###  http://w3id.org/codo#Davangere
:Davangere rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :BengaluruUrban ,
                        :India ,
                        :Karnataka ;
           :hasState :Karnataka ;
           :geoName "Davangere" ;
           <https://schema.org/latitude> 14.4666 ;
           <https://schema.org/longitude> 75.9242 ;
           rdfs:label "Davangere"@en .


###  http://w3id.org/codo#DavangereDistrict
:DavangereDistrict rdf:type owl:NamedIndividual ,
                            :District ,
                            <https://schema.org/Place> ;
                   :containedIn :BengaluruUrban ,
                                :India ,
                                :Karnataka ;
                   :contains :Channagiri ;
                   :hasState :Karnataka ;
                   :geoName "Davangere District" ;
                   rdfs:label "Davangere District" .


###  http://w3id.org/codo#Debaspete
:Debaspete rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :India ;
           :hasCountry :India ;
           :geoName "Debaspete" ;
           rdfs:label "Debaspete" .


###  http://w3id.org/codo#Deceased
:Deceased rdf:type owl:NamedIndividual ,
                   :Status .


###  http://w3id.org/codo#Delhi
:Delhi rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :containedIn :India ;
       :hasCountry :India ;
       :isLocationFor :TJCongregation13thTo18thCluster ;
       :geoName "Delhi" ;
       <https://schema.org/latitude> 28.61 ;
       <https://schema.org/longitude> 77.23 ;
       rdfs:label "Delhi"@en .


###  http://w3id.org/codo#Dharwad
:Dharwad rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :BengaluruUrban ,
                      :DharwadDistrict ,
                      :India ,
                      :Karnataka ;
         :hasDistrict :DharwadDistrict ;
         :geoName "Dharwad" ;
         <https://schema.org/latitude> 15.458333 ;
         <https://schema.org/longitude> 75.008333 ;
         rdfs:label "Dharwad" .


###  http://w3id.org/codo#DharwadDistrict
:DharwadDistrict rdf:type owl:NamedIndividual ,
                          :District ,
                          <https://schema.org/Place> ;
                 :containedIn :BengaluruUrban ,
                              :India ,
                              :Karnataka ;
                 :contains :Dharwad ;
                 :hasState :Karnataka ;
                 :geoName "Dharwad District" ;
                 rdfs:label "Dharwad District" .


###  http://w3id.org/codo#DiabetesMellitus
:DiabetesMellitus rdf:type owl:NamedIndividual ,
                           :Comorbidity ;
                  rdfs:label "Diabetes Mellitus (DM)"@en .


###  http://w3id.org/codo#Diarrhea
:Diarrhea rdf:type owl:NamedIndividual ,
                   <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                   <http://snomed.info/id/404684003> ;
          rdfs:comment "SCTID: 62315008"@en ;
          rdfs:label "Diarrhea"@en .


###  http://w3id.org/codo#Diu
:Diu rdf:type owl:NamedIndividual ,
              :City ,
              <https://schema.org/Place> ;
     :containedIn :India ;
     :hasCountry :India ;
     :geoName "Diu" ;
     <https://schema.org/latitude> 20.71 ;
     <https://schema.org/longitude> 70.98 ;
     rdfs:label "Diu"@en .


###  http://w3id.org/codo#Doha
:Doha rdf:type owl:NamedIndividual ,
               :City ,
               <https://schema.org/Place> ;
      :containedIn :Qatar ;
      :hasCountry :Qatar ;
      :geoName "Doha" ;
      <https://schema.org/latitude> 25.286667 ;
      <https://schema.org/longitude> 51.533333 ;
      rdfs:label "Doha" .


###  http://w3id.org/codo#DomesticTravelHistoryAbsentCluster
:DomesticTravelHistoryAbsentCluster rdf:type owl:NamedIndividual ,
                                             :Cluster ,
                                             :GeographicCluster ,
                                             :Group ,
                                             <http://xmlns.com/foaf/0.1/Agent> ;
                                    :hasLocation :India ;
                                    rdfs:comment "Domestic Travel History Absent : The patients for whom the information was given as \"Travel History-Domestic\"" .


###  http://w3id.org/codo#DryCough
:DryCough rdf:type owl:NamedIndividual ,
                   <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                   <http://snomed.info/id/404684003> ;
          rdfs:comment "SCTID: 11833005"@en ;
          rdfs:label "Dry cough"@en .


###  http://w3id.org/codo#Dubai
:Dubai rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :geoName "Dubai" ;
       <https://schema.org/latitude> 25.263056 ;
       <https://schema.org/longitude> 55.297222 ;
       rdfs:label "Dubai"@en .


###  http://w3id.org/codo#Edinburgh
:Edinburgh rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :Scotland ,
                        :UK ;
           :hasState :Scotland ;
           :geoName "Edinburgh" ;
           <https://schema.org/latitude> 55.953 ;
           <https://schema.org/longitude> -3.189 ;
           rdfs:label "Edinburgh"@en .


###  http://w3id.org/codo#Female
:Female rdf:type owl:NamedIndividual ,
                 <https://schema.org/GenderType> .


###  http://w3id.org/codo#Fever
:Fever rdf:type owl:NamedIndividual ,
                <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                <http://snomed.info/id/404684003> ;
       rdfs:comment "SCTID: 386661006"@en ;
       rdfs:label "Fever"@en .


###  http://w3id.org/codo#France
:France rdf:type owl:NamedIndividual ,
                 <https://schema.org/Country> ,
                 <https://schema.org/Place> ;
        :contains :Paris ;
        :geoName "France" ;
        rdfs:label "France"@en .


###  http://w3id.org/codo#Gadag
:Gadag rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       owl:sameAs :Gadag-Betageri ;
       :containedIn :BengaluruUrban ,
                    :India ,
                    :Karnataka ;
       :hasCountry :India ;
       :hasState :Karnataka ;
       :geoName "Gadag" ;
       <https://schema.org/latitude> 15.4167 ;
       <https://schema.org/longitude> 75.6167 ;
       rdfs:label "Gadag"@en .


###  http://w3id.org/codo#Gadag-Betageri
:Gadag-Betageri rdf:type owl:NamedIndividual ,
                         :City ,
                         <https://schema.org/Place> ;
                :containedIn :BengaluruUrban ,
                             :India ,
                             :Karnataka ;
                :hasCountry :India ;
                :hasState :Karnataka ;
                :geoName "Gadag-Betageri" ;
                <https://schema.org/latitude> 15.4167 ;
                <https://schema.org/longitude> 75.6167 ;
                rdfs:label "Gadag-Betageri"@en .


###  http://w3id.org/codo#Germany
:Germany rdf:type owl:NamedIndividual ,
                  <https://schema.org/Country> ,
                  <https://schema.org/Place> ;
         :geoName "Germany" ;
         rdfs:label "Germany"@en .


###  http://w3id.org/codo#Goa
:Goa rdf:type owl:NamedIndividual ,
              :City ,
              <https://schema.org/Place> ;
     :geoName "Goa" ;
     <https://schema.org/latitude> 15.5 ;
     <https://schema.org/longitude> 73.83 ;
     rdfs:label "Goa"@en .


###  http://w3id.org/codo#Greece
:Greece rdf:type owl:NamedIndividual ,
                 <https://schema.org/Country> ,
                 <https://schema.org/Place> ;
        :contains :Athens ;
        :geoName "Greece" ;
        rdfs:label "Greece"@en .


###  http://w3id.org/codo#Gujarat
:Gujarat rdf:type owl:NamedIndividual ,
                  <https://schema.org/Place> ,
                  <https://schema.org/State> ;
         :containedIn :India ;
         :contains :Ahmedabad ,
                   :Baroda ,
                   :Surat ;
         :hasCountry :India ;
         :isLocationFor :GujaratCluster ;
         :geoName "Gujarat" ;
         rdfs:label "Gujarat"@en .


###  http://w3id.org/codo#GujaratCluster
:GujaratCluster rdf:type owl:NamedIndividual ,
                         :Cluster ,
                         :GeographicCluster ,
                         :Group ,
                         <http://xmlns.com/foaf/0.1/Agent> ;
                :hasLocation :Gujarat ;
                rdfs:comment "From Gujarat : The patients with travel history to Gujarat and their contacts." .


###  http://w3id.org/codo#Gulbarga
:Gulbarga rdf:type owl:NamedIndividual ,
                   :City ,
                   :District ,
                   <https://schema.org/Place> ;
          :containedIn :BengaluruUrban ,
                       :India ,
                       :Karnataka ;
          :hasState :Karnataka ;
          :geoName "Gulbarga" ;
          <https://schema.org/latitude> 17.329 ;
          <https://schema.org/longitude> 76.825 ;
          rdfs:label "Gulbarga" .


###  http://w3id.org/codo#Guyana
:Guyana rdf:type owl:NamedIndividual ,
                 <https://schema.org/Country> ,
                 <https://schema.org/Place> ;
        :geoName "Guyana" ;
        rdfs:comment "officially the Co‑operative Republic of Guyana, is a country on the northern mainland of South America."@en ;
        rdfs:label "Guyana"@en .


###  http://w3id.org/codo#HackingCough
:HackingCough rdf:type owl:NamedIndividual ,
                       <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                       <http://snomed.info/id/404684003> ;
              rdfs:comment "SCTTID: 59994004"@en ;
              rdfs:label "Hacking cough"@en .


###  http://w3id.org/codo#Haryana
:Haryana rdf:type owl:NamedIndividual ,
                  <https://schema.org/Place> ,
                  <https://schema.org/State> ;
         :containedIn :India ;
         :hasCountry :India ;
         :geoName "Haryana" ;
         rdfs:label "Haryana" .


###  http://w3id.org/codo#Hassan
:Hassan rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :BengaluruUrban ,
                     :India ,
                     :Karnataka ;
        :hasState :Karnataka ;
        :geoName "Hassan" ;
        <https://schema.org/latitude> 13.012 ;
        <https://schema.org/longitude> 76.068 ;
        rdfs:label "Hassan"@en .


###  http://w3id.org/codo#Haveri
:Haveri rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :BengaluruUrban ,
                     :India ,
                     :Karnataka ;
        :hasState :Karnataka ;
        :geoName "Haveri" ;
        <https://schema.org/latitude> 14.793889 ;
        <https://schema.org/longitude> 75.403889 ;
        rdfs:label "Haveri" .


###  http://w3id.org/codo#HimachalPradesh
:HimachalPradesh rdf:type owl:NamedIndividual ,
                          <https://schema.org/Place> ,
                          <https://schema.org/State> ;
                 :containedIn :India ;
                 :hasCountry :India ;
                 :geoName "Himachal Pradesh" ;
                 rdfs:label "Himachal Pradesh"@en .


###  http://w3id.org/codo#Hindupur
:Hindupur rdf:type owl:NamedIndividual ,
                   :City ,
                   <https://schema.org/Place> ;
          :containedIn :Anantapur ,
                       :AndhraPradesh ,
                       :India ;
          :hasDistrict :Anantapur ;
          :geoName "Hindupur" ;
          <https://schema.org/latitude> 13.83 ;
          <https://schema.org/longitude> 77.49 ;
          rdfs:label "Hindupur"@en .


###  http://w3id.org/codo#Hospitalized
:Hospitalized rdf:type owl:NamedIndividual ,
                       :Status .


###  http://w3id.org/codo#Hubballi
:Hubballi rdf:type owl:NamedIndividual ,
                   :City ,
                   <https://schema.org/Place> ;
          owl:sameAs :Hubli ;
          :containedIn :BengaluruUrban ,
                       :India ,
                       :Karnataka ;
          :hasState :Karnataka ;
          :geoName "Hubballi" ;
          <https://schema.org/latitude> 15.350217 ;
          <https://schema.org/longitude> 75.137625 ;
          rdfs:label "Hubballi"@en .


###  http://w3id.org/codo#Hubli
:Hubli rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :containedIn :BengaluruUrban ,
                    :India ,
                    :Karnataka ;
       :hasState :Karnataka ;
       :geoName "Hubli" ;
       <https://schema.org/latitude> 15.350217 ;
       <https://schema.org/longitude> 75.137625 ;
       rdfs:comment "Hubli, officially known as Hubballi, is a city in the Indian state of Karnataka."@en ;
       rdfs:label "Hubli"@en .


###  http://w3id.org/codo#Humnabad
:Humnabad rdf:type owl:NamedIndividual ,
                   :City ,
                   <https://schema.org/Place> ;
          :containedIn :BengaluruUrban ,
                       :Bidar ,
                       :India ,
                       :Karnataka ;
          :hasDistrict :Bidar ;
          :geoName "Humnabad" ;
          <https://schema.org/latitude> 17.77 ;
          <https://schema.org/longitude> 77.13 ;
          rdfs:comment "a City and municipal council in the Bidar District of the Indian state of Karnataka and city is a headquarters of Humnabad taluk."@en ;
          rdfs:label "Humnabad"@en .


###  http://w3id.org/codo#Hyderabad
:Hyderabad rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :India ,
                        :Telangana ;
           :hasState :Telangana ;
           :geoName "Hyderabad" ;
           <https://schema.org/latitude> 17.37 ;
           <https://schema.org/longitude> 78.48 ;
           rdfs:label "Hyderabad"@en .


###  http://w3id.org/codo#Hypertension
:Hypertension rdf:type owl:NamedIndividual ,
                       :Comorbidity ;
              rdfs:label "Hypertension (HTN)"@en .


###  http://w3id.org/codo#India
:India rdf:type owl:NamedIndividual ,
                <https://schema.org/Country> ,
                <https://schema.org/Place> ;
       :contains :Ahmedabad ,
                 :Ajmer ,
                 :Anantapur ,
                 :AndamanAndNicobarIslands ,
                 :AndhraPradesh ,
                 :Assam ,
                 :Bagalkote ,
                 :Bangalore ,
                 :Bangalore-Urban ,
                 :BangaloreRural ,
                 :Baroda ,
                 :Belagavi ,
                 :Bellary ,
                 :BellaryDistrict ,
                 :Bhatkal ,
                 :Bidar ,
                 :Carwar ,
                 :Chamarajanagar ,
                 :Channagiri ,
                 :Chattisgadh ,
                 :Chennai ,
                 :Chikballarpur ,
                 :Chitradurga ,
                 :DadraAndNagarHaveliAndDamanAndDiu ,
                 :DakshinKannadaDistrict ,
                 :DamanAndDiu ,
                 :Davangere ,
                 :DavangereDistrict ,
                 :Debaspete ,
                 :Delhi ,
                 :Dharwad ,
                 :DharwadDistrict ,
                 :Diu ,
                 :Gadag ,
                 :Gadag-Betageri ,
                 :Gujarat ,
                 :Gulbarga ,
                 :Haryana ,
                 :Hassan ,
                 :Haveri ,
                 :HimachalPradesh ,
                 :Hindupur ,
                 :Hubballi ,
                 :Hubli ,
                 :Humnabad ,
                 :Hyderabad ,
                 :Jalgaon ,
                 :JalgaonDistrict ,
                 :Jammu ,
                 :JammuAndKashmir ,
                 :Jharkhand ,
                 :Kalaburagi ,
                 :Kalburgi ,
                 :Karnataka ,
                 :Karwara ,
                 :Kashmir ,
                 :Kerala ,
                 :Kodagu ,
                 :Kolhapur ,
                 :Kolkata ,
                 :Koppal ,
                 :KoppalaDistrict ,
                 :MadhyaPradesh ,
                 :Madikeri ,
                 :Madurai ,
                 :MaduraiDistrict ,
                 :Maharashtra ,
                 :Mandya ,
                 :Mangalore ,
                 :Mangaluru ,
                 :Manipur ,
                 :Mumbai ,
                 :Mysore ,
                 :Nagaland ,
                 :Nandurbar ,
                 :NandurbarDistrict ,
                 :Nanjangud ,
                 :Nelamangala ,
                 :Palghar ,
                 :Panvel ,
                 :PharmaceuticalCompanyInNanjangud ,
                 :Pune ,
                 :Raichur ,
                 :Raigadh ,
                 :Rajasthan ,
                 :Ramanagara ,
                 :RamanagaraDistrict ,
                 :Ratnagiri ,
                 :RatnagiriDistrict ,
                 :Shahapur ,
                 :Shikharaji ,
                 :Shivamogga ,
                 :Solapur ,
                 :Surat ,
                 :TamilNadu ,
                 :Telangana ,
                 :Thane ,
                 :ThaneDistrict ,
                 :Trivandrum ,
                 :Tumkur ,
                 :UP ,
                 :Udupi ,
                 :UttarKannada ,
                 :UttaraKannada ,
                 :Vellore ,
                 :VelloreDistrict ,
                 :Vijayapura ,
                 :Vishakapatnam ,
                 :WestBengal ,
                 :Yadgir ;
       :countryWiseStatistics :IndiaStat000001 ;
       :hasStatistics :IndiaStat000001 ;
       :isLocationFor :COVID-19 ,
                      :DomesticTravelHistoryAbsentCluster ;
       :geoName "India" ;
       <http://xmlns.com/foaf/0.1/name> "India" ;
       rdfs:label "India" .


###  http://w3id.org/codo#IndiaStat000001
:IndiaStat000001 rdf:type owl:NamedIndividual ,
                          :CountryWiseStatistics ,
                          :Statistics ;
                 :isCovid-19StatisticsOf :India ;
                 :active 14759 ;
                 :cases 14759 ,
                        18601 ,
                        3252 ,
                        590 ;
                 :deceased 590 ;
                 :metrics 14759 ,
                          18601 ,
                          3252 ,
                          590 ;
                 :recovered 3252 .


###  http://w3id.org/codo#Indonesia
:Indonesia rdf:type owl:NamedIndividual ,
                    <https://schema.org/Country> ,
                    <https://schema.org/Place> ;
           :geoName "Indonesia" ;
           rdfs:label "Indonesia"@en .


###  http://w3id.org/codo#InfluenzaLikeIllnessCluster
:InfluenzaLikeIllnessCluster rdf:type owl:NamedIndividual ,
                                      :Cluster ,
                                      :DiseaseCluster ,
                                      :Group ,
                                      <http://xmlns.com/foaf/0.1/Agent> ;
                             rdfs:comment "Influenza like illness : The patients showing influenza like symptoms and their contacts." .


###  http://w3id.org/codo#InternationalTravelHistoryAbsentCluster
:InternationalTravelHistoryAbsentCluster rdf:type owl:NamedIndividual ,
                                                  :Cluster ,
                                                  :GeographicCluster ,
                                                  :Group ,
                                                  <http://xmlns.com/foaf/0.1/Agent> ;
                                         :hasLocation :TheWorld ;
                                         rdfs:comment "International Travel History Absent : The patients for whom the information was given as \"Travel History-International\"" .


###  http://w3id.org/codo#Iraq
:Iraq rdf:type owl:NamedIndividual ,
               <https://schema.org/Country> ,
               <https://schema.org/Place> ;
      :geoName "Iraq" ,
               "Republic of Iraq" ;
      rdfs:comment "A country in Western Asia, bordered by Turkey to the north, Iran to the east, Kuwait to the southeast, Saudi Arabia to the south, Jordan to the southwest and Syria to the west."@en ;
      rdfs:label "Iraq"@en ,
                 "Republic of Iraq"@en .


###  http://w3id.org/codo#Ireland
:Ireland rdf:type owl:NamedIndividual ,
                  <https://schema.org/Country> ,
                  <https://schema.org/Place> ;
         :geoName "Ireland" ;
         rdfs:label "Ireland" .


###  http://w3id.org/codo#IschemicHeartDisease
:IschemicHeartDisease rdf:type owl:NamedIndividual ,
                               :Comorbidity ;
                      rdfs:label "Ischemic Heart Disease (IHD)"@en .


###  http://w3id.org/codo#Italy
:Italy rdf:type owl:NamedIndividual ,
                <https://schema.org/Country> ,
                <https://schema.org/Place> ;
       :geoName "Italy" ;
       rdfs:label "Italy"@en .


###  http://w3id.org/codo#Jalgaon
:Jalgaon rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :India ,
                      :JalgaonDistrict ,
                      :Maharashtra ;
         :hasDistrict :JalgaonDistrict ;
         :geoName "Jalgaon" ;
         <https://schema.org/latitude> 20.997984 ;
         <https://schema.org/longitude> 75.566711 ;
         rdfs:label "Jalgaon" .


###  http://w3id.org/codo#JalgaonDistrict
:JalgaonDistrict rdf:type owl:NamedIndividual ,
                          :District ,
                          <https://schema.org/Place> ;
                 :containedIn :India ,
                              :Maharashtra ;
                 :contains :Jalgaon ;
                 :hasState :Maharashtra ;
                 :geoName "Jalgaon District" ;
                 rdfs:label "Jalgaon District" .


###  http://w3id.org/codo#Jammu
:Jammu rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :containedIn :India ,
                    :JammuAndKashmir ;
       :hasState :JammuAndKashmir ;
       :geoName "Jammu" ;
       <https://schema.org/latitude> 32.73 ;
       <https://schema.org/longitude> 74.87 ;
       rdfs:comment "Jammu is the winter capital and the largest city in Jammu district of the Indian union territory of Jammu and Kashmir."@en ;
       rdfs:label "Jammu"@en .


###  http://w3id.org/codo#JammuAndKashmir
:JammuAndKashmir rdf:type owl:NamedIndividual ,
                          :UnionTerritory ,
                          <https://schema.org/Place> ,
                          <https://schema.org/State> ;
                 :containedIn :India ;
                 :contains :Jammu ;
                 :hasCountry :India ;
                 :geoName "Jammu And Kashmir" ;
                 rdfs:label "Jammu And Kashmir"@en .


###  http://w3id.org/codo#Jeddah
:Jeddah rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :SaudiArabia ;
        :hasCountry :SaudiArabia ;
        :geoName "Jeddah" ;
        <https://schema.org/latitude> 21.543333 ;
        <https://schema.org/longitude> 39.172778 ;
        rdfs:label "Jeddah"@en .


###  http://w3id.org/codo#Jharkhand
:Jharkhand rdf:type owl:NamedIndividual ,
                    <https://schema.org/Place> ,
                    <https://schema.org/State> ;
           :containedIn :India ;
           :contains :Shikharaji ;
           :hasCountry :India ;
           :geoName "Jharkhand" ;
           rdfs:label "Jharkhand" .


###  http://w3id.org/codo#June-27TraceHistoryAbsentCluster
:June-27TraceHistoryAbsentCluster rdf:type owl:NamedIndividual ,
                                           :Cluster ,
                                           :Group ,
                                           :TimeCluster ,
                                           <http://xmlns.com/foaf/0.1/Agent> ;
                                  :date "2020-06-27T00:00:00"^^xsd:dateTime ;
                                  :eventDate "2020-06-27T00:00:00"^^xsd:dateTime ;
                                  rdfs:comment "27-June Trace History Absent : On this day, no trace history information was given for the patients. Patients who were contacts of these individuals are also in this cluster." .


###  http://w3id.org/codo#June-28TraceHistoryAbsentCluster
:June-28TraceHistoryAbsentCluster rdf:type owl:NamedIndividual ,
                                           :Cluster ,
                                           :Group ,
                                           :TimeCluster ,
                                           <http://xmlns.com/foaf/0.1/Agent> ;
                                  :date "2020-06-28T00:00:00"^^xsd:dateTime ;
                                  :eventDate "2020-06-28T00:00:00"^^xsd:dateTime ;
                                  rdfs:comment "28-June Trace History Absent : On this day, no trace history information was given for the patients. Patients who were contacts of these individuals are also in this cluster." .


###  http://w3id.org/codo#June-29TraceHistoryAbsentCluster
:June-29TraceHistoryAbsentCluster rdf:type owl:NamedIndividual ,
                                           :Cluster ,
                                           :Group ,
                                           :TimeCluster ,
                                           <http://xmlns.com/foaf/0.1/Agent> ;
                                  :date "2020-06-29T00:00:00"^^xsd:dateTime ;
                                  :eventDate "2020-06-29T00:00:00"^^xsd:dateTime ;
                                  rdfs:comment "29-June Trace History Absent : On this day, no trace history information was given for the patients. Patients who were contacts of these individuals are also in this cluster." .


###  http://w3id.org/codo#Kalaburagi
:Kalaburagi rdf:type owl:NamedIndividual ,
                     :City ,
                     :District ,
                     <https://schema.org/Place> ;
            owl:sameAs :Kalburgi ;
            :containedIn :BengaluruUrban ,
                         :India ,
                         :Karnataka ;
            :hasState :Karnataka ;
            :geoName "Kalaburagi" ;
            <https://schema.org/latitude> 17.329 ;
            <https://schema.org/longitude> 76.825 ;
            rdfs:label "Kalaburagi"@en .


###  http://w3id.org/codo#Kalburgi
:Kalburgi rdf:type owl:NamedIndividual ,
                   :City ,
                   :District ,
                   <https://schema.org/Place> ;
          :containedIn :BengaluruUrban ,
                       :India ,
                       :Karnataka ;
          :hasState :Karnataka ;
          :geoName "Kalburgi" ;
          <https://schema.org/latitude> 17.329 ;
          <https://schema.org/longitude> 76.825 ;
          rdfs:label "Kalburgi"@en .


###  http://w3id.org/codo#Karnataka
:Karnataka rdf:type owl:NamedIndividual ,
                    <https://schema.org/Place> ,
                    <https://schema.org/State> ;
           :containedIn :BengaluruUrban ,
                        :India ;
           :contains :Bagalkote ,
                     :Bangalore ,
                     :Bangalore-Urban ,
                     :BangaloreRural ,
                     :Belagavi ,
                     :Bellary ,
                     :BellaryDistrict ,
                     :Bhatkal ,
                     :Bidar ,
                     :Carwar ,
                     :Chamarajanagar ,
                     :Channagiri ,
                     :Chikballarpur ,
                     :Chitradurga ,
                     :Davangere ,
                     :DavangereDistrict ,
                     :Dharwad ,
                     :DharwadDistrict ,
                     :Gadag ,
                     :Gadag-Betageri ,
                     :Gulbarga ,
                     :Hassan ,
                     :Haveri ,
                     :Hubballi ,
                     :Hubli ,
                     :Humnabad ,
                     :Kalaburagi ,
                     :Kalburgi ,
                     :Karwara ,
                     :Kodagu ,
                     :Koppal ,
                     :KoppalaDistrict ,
                     :Madikeri ,
                     :Mandya ,
                     :Mangalore ,
                     :Mangaluru ,
                     :Mysore ,
                     :Nanjangud ,
                     :Nelamangala ,
                     :PharmaceuticalCompanyInNanjangud ,
                     :Raichur ,
                     :Ramanagara ,
                     :RamanagaraDistrict ,
                     :Shahapur ,
                     :Shivamogga ,
                     :Tumkur ,
                     :Udupi ,
                     :UttarKannada ,
                     :UttaraKannada ,
                     :Vijayapura ,
                     :Yadgir ;
           :hasCountry :India ;
           :hasStatistics :karntStateStat000001 ,
                          :karntStateStat000002 ;
           :isLocationFor :COVID-19 ;
           :stateWiseStatistics :karntStateStat000001 ,
                                :karntStateStat000002 ;
           :geoName "Karnataka" ;
           <http://xmlns.com/foaf/0.1/name> "Karnataka" ;
           rdfs:label "Karnataka" .


###  http://w3id.org/codo#Karwara
:Karwara rdf:type owl:NamedIndividual ,
                  :City ,
                  :District ,
                  <https://schema.org/Place> ;
         :containedIn :BengaluruUrban ,
                      :India ,
                      :Karnataka ;
         :hasState :Karnataka ;
         :geoName "Karwara" ;
         rdfs:label "Karwara"@en .


###  http://w3id.org/codo#Kashmir
:Kashmir rdf:type owl:NamedIndividual ,
                  :GeographicRegion ,
                  <https://schema.org/Place> ;
         :containedIn :India ;
         :hasCountry :India ;
         :geoName "Kashmir" ;
         rdfs:label "Kashmir"@en .


###  http://w3id.org/codo#Kerala
:Kerala rdf:type owl:NamedIndividual ,
                 <https://schema.org/Place> ,
                 <https://schema.org/State> ;
        :containedIn :India ;
        :contains :Trivandrum ;
        :hasCountry :India ;
        :geoName "Kerala" ;
        rdfs:label "Kerala"@en .


###  http://w3id.org/codo#Kodagu
:Kodagu rdf:type owl:NamedIndividual ,
                 :District ,
                 <https://schema.org/Place> ;
        :containedIn :BengaluruUrban ,
                     :India ,
                     :Karnataka ;
        :contains :Madikeri ;
        :hasState :Karnataka ;
        :geoName "Coorg" ,
                 "Kodagu" ;
        rdfs:comment "Kodagu, also called Coorg, is a district in Karnataka State."@en ;
        rdfs:label "Coorg"@en ,
                   "Kodagu"@en .


###  http://w3id.org/codo#KodaguDistrict
:KodaguDistrict rdf:type owl:NamedIndividual ,
                         :District ,
                         <https://schema.org/Place> ;
                :geoName "Kodagu District" ;
                rdfs:label "Kodagu District"@en .


###  http://w3id.org/codo#Kolhapur
:Kolhapur rdf:type owl:NamedIndividual ,
                   :City ,
                   <https://schema.org/Place> ;
          :containedIn :India ,
                       :Maharashtra ;
          :hasState :Maharashtra ;
          :geoName "Kolhapur" ;
          <https://schema.org/latitude> 16.691667 ;
          <https://schema.org/longitude> 74.233333 ;
          rdfs:label "Kolhapur" .


###  http://w3id.org/codo#Kolkata
:Kolkata rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :India ,
                      :WestBengal ;
         :hasState :WestBengal ;
         :geoName "Kolkata" ;
         <https://schema.org/latitude> 22.5726 ;
         <https://schema.org/longitude> 88.3639 ;
         rdfs:label "Kolkata"@en .


###  http://w3id.org/codo#Koppal
:Koppal rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :BengaluruUrban ,
                     :India ,
                     :Karnataka ,
                     :KoppalaDistrict ;
        :hasDistrict :KoppalaDistrict ;
        :geoName "Koppal" ,
                 "Koppala" ;
        <https://schema.org/latitude> 15.35 ;
        <https://schema.org/longitude> 76.15 ;
        rdfs:comment "a city in Koppala district in the Indian state of Karnataka."@en ;
        rdfs:label "Koppal"@en ,
                   "Koppala"@en .


###  http://w3id.org/codo#KoppalaDistrict
:KoppalaDistrict rdf:type owl:NamedIndividual ,
                          :District ,
                          <https://schema.org/Place> ;
                 :containedIn :BengaluruUrban ,
                              :India ,
                              :Karnataka ;
                 :contains :Koppal ;
                 :hasState :Karnataka ;
                 :geoName "Koppala District" ;
                 rdfs:label "Koppala District"@en .


###  http://w3id.org/codo#Kuwait
:Kuwait rdf:type owl:NamedIndividual ,
                 <https://schema.org/Country> ,
                 <https://schema.org/Place> ;
        :geoName "Kuwait" ;
        rdfs:label "Kuwait" .


###  http://w3id.org/codo#London
:London rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :UK ;
        :hasCountry :UK ;
        :geoName "London" ;
        <https://schema.org/latitude> 51.507222 ;
        <https://schema.org/longitude> -0.1275 ;
        rdfs:label "London"@en .


###  http://w3id.org/codo#MadhyaPradesh
:MadhyaPradesh rdf:type owl:NamedIndividual ,
                        <https://schema.org/Place> ,
                        <https://schema.org/State> ;
               :containedIn :India ;
               :hasCountry :India ;
               :geoName "Madhya Pradesh" ;
               rdfs:label "Madhya Pradesh" .


###  http://w3id.org/codo#Madikeri
:Madikeri rdf:type owl:NamedIndividual ,
                   :City ,
                   <https://schema.org/Place> ;
          :containedIn :BengaluruUrban ,
                       :India ,
                       :Karnataka ,
                       :Kodagu ;
          :hasDistrict :Kodagu ;
          :geoName "Madikeri" ;
          <https://schema.org/latitude> 12.4209 ;
          <https://schema.org/longitude> 75.7397 ;
          rdfs:label "Madikeri" .


###  http://w3id.org/codo#Madrid
:Madrid rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :Spain ;
        :hasCountry :Spain ;
        :geoName "Madrid" ;
        <https://schema.org/latitude> 40.416667 ;
        <https://schema.org/longitude> -3.716667 ;
        rdfs:label "Madrid"@en .


###  http://w3id.org/codo#Madurai
:Madurai rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :India ,
                      :MaduraiDistrict ,
                      :TamilNadu ;
         :hasDistrict :MaduraiDistrict ;
         :geoName "Madurai" ;
         <https://schema.org/latitude> 9.9 ;
         <https://schema.org/longitude> 78.1 ;
         rdfs:label "Madurai" .


###  http://w3id.org/codo#MaduraiDistrict
:MaduraiDistrict rdf:type owl:NamedIndividual ,
                          :District ,
                          <https://schema.org/Place> ;
                 :containedIn :India ,
                              :TamilNadu ;
                 :contains :Madurai ;
                 :hasState :TamilNadu ;
                 :geoName "Madurai District" ;
                 rdfs:label "Madurai District" .


###  http://w3id.org/codo#Maharashtra
:Maharashtra rdf:type owl:NamedIndividual ,
                      <https://schema.org/Place> ,
                      <https://schema.org/State> ;
             :containedIn :India ;
             :contains :Jalgaon ,
                       :JalgaonDistrict ,
                       :Kolhapur ,
                       :Mumbai ,
                       :Nandurbar ,
                       :NandurbarDistrict ,
                       :Palghar ,
                       :Panvel ,
                       :Pune ,
                       :Raigadh ,
                       :Ratnagiri ,
                       :RatnagiriDistrict ,
                       :Solapur ,
                       :Thane ,
                       :ThaneDistrict ;
             :hasCountry :India ;
             :isLocationFor :MaharashtraCluster ;
             :geoName "Maharashtra" ;
             rdfs:label "Maharashtra"@en .


###  http://w3id.org/codo#MaharashtraCluster
:MaharashtraCluster rdf:type owl:NamedIndividual ,
                             :Cluster ,
                             :GeographicCluster ,
                             :Group ,
                             <http://xmlns.com/foaf/0.1/Agent> ;
                    :hasLocation :Maharashtra ;
                    rdfs:comment "From Maharashtra : The patients with travel history to Maharashtra and their contacts." .


###  http://w3id.org/codo#Malaysia
:Malaysia rdf:type owl:NamedIndividual ,
                   <https://schema.org/Country> ,
                   <https://schema.org/Place> ;
          :geoName "Malaysia" ;
          rdfs:label "Malaysia" .


###  http://w3id.org/codo#Male
:Male rdf:type owl:NamedIndividual ,
               <https://schema.org/GenderType> .


###  http://w3id.org/codo#Mandya
:Mandya rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :BengaluruUrban ,
                     :India ,
                     :Karnataka ;
        :hasState :Karnataka ;
        :geoName "Mandya" ;
        <https://schema.org/latitude> 12.52 ;
        <https://schema.org/longitude> 76.9 ;
        rdfs:label "Mandya"@en .


###  http://w3id.org/codo#Mangalore
:Mangalore rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           owl:sameAs :Mangaluru ;
           :containedIn :BengaluruUrban ,
                        :DakshinKannadaDistrict ,
                        :India ,
                        :Karnataka ;
           :hasDistrict :DakshinKannadaDistrict ;
           :hasState :Karnataka ;
           :geoName "Mangalore" ;
           <https://schema.org/latitude> 12.78563 ;
           <https://schema.org/longitude> 74.84108 ;
           rdfs:label "Mangalore"@en .


###  http://w3id.org/codo#Mangaluru
:Mangaluru rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :BengaluruUrban ,
                        :DakshinKannadaDistrict ,
                        :India ,
                        :Karnataka ;
           :hasDistrict :DakshinKannadaDistrict ;
           :hasState :Karnataka ;
           :geoName "Mangaluru" ;
           <https://schema.org/latitude> 12.78563 ;
           <https://schema.org/longitude> 74.84108 ;
           rdfs:label "Mangaluru"@en .


###  http://w3id.org/codo#Manipur
:Manipur rdf:type owl:NamedIndividual ,
                  <https://schema.org/Place> ,
                  <https://schema.org/State> ;
         :containedIn :India ;
         :hasCountry :India ;
         :geoName "Manipur" ;
         rdfs:label "Manipur"@en .


###  http://w3id.org/codo#Mecca
:Mecca rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :containedIn :SaudiArabia ;
       :hasCountry :SaudiArabia ;
       :geoName "Mecca" ;
       <https://schema.org/latitude> 21.4225 ;
       <https://schema.org/longitude> 39.823333 ;
       rdfs:label "Mecca"@en .


###  http://w3id.org/codo#MiddleEast
:MiddleEast rdf:type owl:NamedIndividual ,
                     :GeographicRegion ,
                     <https://schema.org/Place> ;
            :isLocationFor :MiddleEastCluster ;
            :geoName "Middle East" ;
            rdfs:label "Middle East"@en .


###  http://w3id.org/codo#MiddleEastCluster
:MiddleEastCluster rdf:type owl:NamedIndividual ,
                            :Cluster ,
                            :GeographicCluster ,
                            :Group ,
                            <http://xmlns.com/foaf/0.1/Agent> ;
                   :hasLocation :MiddleEast ;
                   rdfs:comment "From Middle East : The patients with travel to the Middle East and their contacts." ;
                   rdfs:label "MiddleEastCluster"@en .


###  http://w3id.org/codo#Mumbai
:Mumbai rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :India ,
                     :Maharashtra ;
        :hasState :Maharashtra ;
        :geoName "Mumbai" ;
        <https://schema.org/latitude> 18.975 ;
        <https://schema.org/longitude> 72.825833 ;
        rdfs:label "Mumbai"@en .


###  http://w3id.org/codo#Muscat
:Muscat rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :Oman ;
        :hasCountry :Oman ;
        :geoName "Muscat" ;
        <https://schema.org/latitude> 23.588889 ;
        <https://schema.org/longitude> 58.408333 ;
        rdfs:label "Muscat" .


###  http://w3id.org/codo#Mysore
:Mysore rdf:type owl:NamedIndividual ,
                 :District ,
                 <https://schema.org/Place> ;
        :containedIn :BengaluruUrban ,
                     :India ,
                     :Karnataka ;
        :contains :Nanjangud ,
                  :PharmaceuticalCompanyInNanjangud ;
        :hasState :Karnataka ;
        :geoName "Mysore" ;
        rdfs:label "Mysore"@en .


###  http://w3id.org/codo#Nagaland
:Nagaland rdf:type owl:NamedIndividual ,
                   <https://schema.org/Place> ,
                   <https://schema.org/State> ;
          :containedIn :India ;
          :hasCountry :India ;
          :geoName "Nagaland" ;
          rdfs:label "Nagaland"@en .


###  http://w3id.org/codo#Nandurbar
:Nandurbar rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :India ,
                        :Maharashtra ,
                        :NandurbarDistrict ;
           :hasDistrict :NandurbarDistrict ;
           :geoName "Nandurbar" ;
           <https://schema.org/latitude> 21.37 ;
           <https://schema.org/longitude> 74.25 ;
           rdfs:label "Nandurbar" .


###  http://w3id.org/codo#NandurbarDistrict
:NandurbarDistrict rdf:type owl:NamedIndividual ,
                            :District ,
                            <https://schema.org/Place> ;
                   :containedIn :India ,
                                :Maharashtra ;
                   :contains :Nandurbar ;
                   :hasState :Maharashtra ;
                   :geoName "Nandurbar District" ;
                   rdfs:label "Nandurbar District" .


###  http://w3id.org/codo#Nanjangud
:Nanjangud rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :BengaluruUrban ,
                        :India ,
                        :Karnataka ,
                        :Mysore ;
           :contains :PharmaceuticalCompanyInNanjangud ;
           :hasDistrict :Mysore ;
           :geoName "Nanjangud" ;
           <https://schema.org/latitude> 12.12 ;
           <https://schema.org/longitude> 76.68 ;
           rdfs:label "Nanjangud"@en .


###  http://w3id.org/codo#NasalCongestion
:NasalCongestion rdf:type owl:NamedIndividual ,
                          <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                          <http://snomed.info/id/404684003> ;
                 rdfs:comment "SCTID: 68235000"@en ;
                 rdfs:label "Nasal congestion"@en .


###  http://w3id.org/codo#Negative
:Negative rdf:type owl:NamedIndividual ,
                   :LaboratiryTestFinding ,
                   :TestResult .


###  http://w3id.org/codo#Nelamangala
:Nelamangala rdf:type owl:NamedIndividual ,
                      :City ,
                      <https://schema.org/Place> ;
             :containedIn :BangaloreRural ,
                          :BengaluruUrban ,
                          :India ,
                          :Karnataka ;
             :hasDistrict :BangaloreRural ;
             :geoName "Nelamangala" ;
             <https://schema.org/latitude> 13.102 ;
             <https://schema.org/longitude> 77.374 ;
             rdfs:label "Nelamangala"@en .


###  http://w3id.org/codo#Nepal
:Nepal rdf:type owl:NamedIndividual ,
                <https://schema.org/Country> ,
                <https://schema.org/Place> ;
       :geoName "Nepal" ;
       rdfs:label "Nepal" .


###  http://w3id.org/codo#Netherlands
:Netherlands rdf:type owl:NamedIndividual ,
                      <https://schema.org/Country> ,
                      <https://schema.org/Place> ;
             :contains :Amsterdam ;
             :geoName "Netherlands" ;
             rdfs:label "Netherlands"@en .


###  http://w3id.org/codo#NewYorkCity
:NewYorkCity rdf:type owl:NamedIndividual ,
                      :City ,
                      <https://schema.org/Place> ;
             :containedIn :NewYorkState ,
                          :USA ;
             :hasState :NewYorkState ;
             :geoName "New York City" ;
             <https://schema.org/latitude> 40.71274 ;
             <https://schema.org/longitude> -74.005974 ;
             rdfs:label "New York City"@en .


###  http://w3id.org/codo#NewYorkState
:NewYorkState rdf:type owl:NamedIndividual ,
                       <https://schema.org/Place> ,
                       <https://schema.org/State> ;
              :containedIn :USA ;
              :contains :NewYorkCity ;
              :hasCountry :USA ;
              :geoName "New York State" ;
              rdfs:label "New York State"@en .


###  http://w3id.org/codo#NotReported
:NotReported rdf:type owl:NamedIndividual ,
                      :Comorbidity ;
             rdfs:label "Not reported"@en .


###  http://w3id.org/codo#Oman
:Oman rdf:type owl:NamedIndividual ,
               <https://schema.org/Country> ,
               <https://schema.org/Place> ;
      :contains :Muscat ;
      :geoName "Oman" ;
      rdfs:label "Oman" .


###  http://w3id.org/codo#OthersCluster
:OthersCluster rdf:type owl:NamedIndividual ,
                        :Cluster ,
                        :Group ,
                        <http://xmlns.com/foaf/0.1/Agent> ;
               rdfs:comment "Others : The patients who had interdistrict travel in Karnataka, travel to countries / states, healthcare workers and policemen on COVID-19 duty and their contacts. The numbers for these reasons were too few to form separate clusters." .


###  http://w3id.org/codo#P000001-Vitals1
:P000001-Vitals1 rdf:type owl:NamedIndividual ,
                          :TestData ,
                          :TestResult ,
                          :VitalSigns ;
                 :isTestResultFor :p000001 ;
                 :heartRate 120 ;
                 :respiratoryRate 10 .


###  http://w3id.org/codo#P000001Diagnosis
:P000001Diagnosis rdf:type owl:NamedIndividual ,
                           :COVID-19Diagnosis ,
                           :Diagnosis ,
                           :MildAndVeryMildCOVID-19 ,
                           :TestData ;
                  :isDiagnosisFor :p000001 .


###  http://w3id.org/codo#P000002-Vitals1
:P000002-Vitals1 rdf:type owl:NamedIndividual ,
                          :TestData ,
                          :TestResult ,
                          :VitalSigns ;
                 :isTestResultFor :p000002 ;
                 :date "2020-04-26T09:00:00"^^xsd:dateTime ;
                 :respiratoryRate 15 ;
                 :testResultOn "2020-04-26T09:00:00"^^xsd:dateTime .


###  http://w3id.org/codo#P000002Diagnosis
:P000002Diagnosis rdf:type owl:NamedIndividual ,
                           :COVID-19Diagnosis ,
                           :Diagnosis ,
                           :ModerateCOVID-19 ,
                           :TestData ,
                           :UntestedForCovid ,
                           <http://xmlns.com/foaf/0.1/Agent> ,
                           <http://xmlns.com/foaf/0.1/Person> ;
                  :isDiagnosisFor :p000002 ;
                  :hadCovidTest "false"^^xsd:boolean .


###  http://w3id.org/codo#P000003-Vitals1
:P000003-Vitals1 rdf:type owl:NamedIndividual ,
                          :TestData ,
                          :TestResult ,
                          :VitalSigns ;
                 :isTestResultFor :p000003 ;
                 :nextTestResult :P000003-Vitals2 ;
                 :SpO2 90 ;
                 :date "2020-04-21T10:00:00"^^xsd:dateTime ;
                 :respiratoryRate 35 ;
                 :testResultOn "2020-04-21T10:00:00"^^xsd:dateTime .


###  http://w3id.org/codo#P000003-Vitals2
:P000003-Vitals2 rdf:type owl:NamedIndividual ,
                          :TestData ,
                          :TestResult ,
                          :VitalSigns ;
                 :isTestResultFor :p000003 ;
                 :nextTestResult :P000003-Vitals3 ;
                 :previousTestResult :P000003-Vitals1 ;
                 :date "2020-04-22T10:00:00"^^xsd:dateTime ;
                 :testResultOn "2020-04-22T10:00:00"^^xsd:dateTime .


###  http://w3id.org/codo#P000003-Vitals3
:P000003-Vitals3 rdf:type owl:NamedIndividual ,
                          :TestData ,
                          :TestResult ,
                          :VitalSigns ;
                 :isTestResultFor :p000003 ;
                 :nextTestResult :P000003-Vitals4 ;
                 :previousTestResult :P000003-Vitals2 ;
                 :date "2020-04-23T11:00:00"^^xsd:dateTime ;
                 :testResultOn "2020-04-23T11:00:00"^^xsd:dateTime .


###  http://w3id.org/codo#P000003-Vitals4
:P000003-Vitals4 rdf:type owl:NamedIndividual ,
                          :TestData ,
                          :TestResult ,
                          :VitalSigns ;
                 :isTestResultFor :p000003 ;
                 :previousTestResult :P000003-Vitals3 ;
                 :SpO2 90 ;
                 :date "2020-04-26T08:00:00"^^xsd:dateTime ;
                 :respiratoryRate 35 ;
                 :testResultOn "2020-04-26T08:00:00"^^xsd:dateTime .


###  http://w3id.org/codo#P000003Diagnosis
:P000003Diagnosis rdf:type owl:NamedIndividual ,
                           :COVID-19Diagnosis ,
                           :Diagnosis ,
                           :SevereCOVID-19 ,
                           :TestData ;
                  :isDiagnosisFor :p000003 .


###  http://w3id.org/codo#Pain
:Pain rdf:type owl:NamedIndividual ,
               <http://purl.obolibrary.org/obo/SYMP_0000462> ,
               <http://snomed.info/id/404684003> ;
      rdfs:comment "SCTID: 22253000"@en ;
      rdfs:label "Pain"@en .


###  http://w3id.org/codo#PainInThroat
:PainInThroat rdf:type owl:NamedIndividual ,
                       <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                       <http://snomed.info/id/404684003> ;
              rdfs:comment "SCTID: 162397003"@en ;
              rdfs:label "Pain in throat"@en ,
                         "Sore throat"@en .


###  http://w3id.org/codo#Palghar
:Palghar rdf:type owl:NamedIndividual ,
                  :Town ,
                  <https://schema.org/Place> ;
         :containedIn :India ,
                      :Maharashtra ;
         :hasState :Maharashtra ;
         :geoName "Palghar" ;
         rdfs:label "Palghar"@en .


###  http://w3id.org/codo#Panvel
:Panvel rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :India ,
                     :Maharashtra ,
                     :Raigadh ;
        :hasDistrict :Raigadh ;
        :geoName "Panvel" ;
        <https://schema.org/latitude> 18.994444 ;
        <https://schema.org/longitude> 73.113889 ;
        rdfs:comment "a locality in Raigad district of Maharashtra in India."@en ;
        rdfs:label "Panvel"@en .


###  http://w3id.org/codo#Paris
:Paris rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :containedIn :France ;
       :hasCountry :France ;
       :geoName "Paris" ;
       <https://schema.org/latitude> 48.856613 ;
       <https://schema.org/longitude> 2.352222 ;
       rdfs:label "Paris" .


###  http://w3id.org/codo#Pending
:Pending rdf:type owl:NamedIndividual ,
                  :LaboratiryTestFinding ,
                  :TestResult .


###  http://w3id.org/codo#PharmaceuticalCompanyInNanjangud
:PharmaceuticalCompanyInNanjangud rdf:type owl:NamedIndividual ,
                                           :Business ,
                                           :Group ,
                                           <http://xmlns.com/foaf/0.1/Agent> ,
                                           <http://xmlns.com/foaf/0.1/Organization> ,
                                           <https://schema.org/Place> ;
                                  :containedIn :BengaluruUrban ,
                                               :India ,
                                               :Karnataka ,
                                               :Mysore ,
                                               :Nanjangud ;
                                  :hasCity :Nanjangud ;
                                  :isLocationFor :PharmaceuticalCompanyInNanjangudCluster ;
                                  rdfs:label "Pharmaceutical Company In Nanjangud"@en .


###  http://w3id.org/codo#PharmaceuticalCompanyInNanjangudCluster
:PharmaceuticalCompanyInNanjangudCluster rdf:type owl:NamedIndividual ,
                                                  :Cluster ,
                                                  :ContactCluster ,
                                                  :Group ,
                                                  <http://xmlns.com/foaf/0.1/Agent> ;
                                         :hasLocation :PharmaceuticalCompanyInNanjangud ;
                                         rdfs:comment "Pharmaceutical Company in Nanjangud : This patients who were workers of a Pharmaceutical Company in Nanjangud, Mysore along with their contacts." .


###  http://w3id.org/codo#Philippines
:Philippines rdf:type owl:NamedIndividual ,
                      <https://schema.org/Country> ,
                      <https://schema.org/Place> ;
             :geoName "Philippines" ;
             rdfs:label "Philippines"@en .


###  http://w3id.org/codo#Pneumonia
:Pneumonia rdf:type owl:NamedIndividual ,
                    <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                    <http://snomed.info/id/404684003> .


###  http://w3id.org/codo#Positive
:Positive rdf:type owl:NamedIndividual ,
                   :LaboratiryTestFinding ,
                   :TestResult .


###  http://w3id.org/codo#Pune
:Pune rdf:type owl:NamedIndividual ,
               :City ,
               <https://schema.org/Place> ;
      :containedIn :India ,
                   :Maharashtra ;
      :hasState :Maharashtra ;
      :geoName "Pune" ;
      <https://schema.org/latitude> 18.520278 ;
      <https://schema.org/longitude> 73.856667 ;
      rdfs:label "Pune"@en .


###  http://w3id.org/codo#Punjab
:Punjab rdf:type owl:NamedIndividual ,
                 :GeographicRegion ,
                 <https://schema.org/Place> ;
        :geoName "Punjab" ;
        rdfs:label "Punjab" .


###  http://w3id.org/codo#Qatar
:Qatar rdf:type owl:NamedIndividual ,
                <https://schema.org/Country> ,
                <https://schema.org/Place> ;
       :contains :Doha ;
       :geoName "Qatar" ;
       rdfs:label "Qatar" .


###  http://w3id.org/codo#Raichur
:Raichur rdf:type owl:NamedIndividual ,
                  :City ,
                  :District ,
                  <https://schema.org/Place> ;
         :containedIn :BengaluruUrban ,
                      :India ,
                      :Karnataka ;
         :hasState :Karnataka ;
         :geoName "Raichore" ,
                  "Raichur" ;
         <https://schema.org/latitude> 16.2 ;
         <https://schema.org/longitude> 77.37 ;
         rdfs:comment "a city municipality in the district of Raichur in the Indian state of Karnataka."@en ;
         rdfs:label "Raichore"@en ,
                    "Raichur"@en ;
         <http://www.w3.org/2004/02/skos/core#altLabel> "Rayachuru"@en .


###  http://w3id.org/codo#Raigadh
:Raigadh rdf:type owl:NamedIndividual ,
                  :District ,
                  <https://schema.org/Place> ;
         :containedIn :India ,
                      :Maharashtra ;
         :contains :Panvel ;
         :hasState :Maharashtra ;
         :geoName "Raigad" ,
                  "Raigadh" ;
         rdfs:comment "Raigad District (formerly Kolába district), is a district in the Konkan division of Maharashtra, India."@en ;
         rdfs:label "Raigad"@en ,
                    "Raigadh"@en .


###  http://w3id.org/codo#Rajasthan
:Rajasthan rdf:type owl:NamedIndividual ,
                    <https://schema.org/Place> ,
                    <https://schema.org/State> ;
           :containedIn :India ;
           :contains :Ajmer ;
           :hasCountry :India ;
           :isLocationFor :RajasthanCluster ;
           :geoName "Rajasthan" ;
           rdfs:label "Rajasthan"@en .


###  http://w3id.org/codo#RajasthanCluster
:RajasthanCluster rdf:type owl:NamedIndividual ,
                           :Cluster ,
                           :GeographicCluster ,
                           :Group ,
                           <http://xmlns.com/foaf/0.1/Agent> ;
                  :hasLocation :Rajasthan ;
                  rdfs:comment "From Rajasthan : The patients with travel history to Rajasthan and their contacts." .


###  http://w3id.org/codo#Ramanagara
:Ramanagara rdf:type owl:NamedIndividual ,
                     :City ,
                     <https://schema.org/Place> ;
            :containedIn :BengaluruUrban ,
                         :India ,
                         :Karnataka ,
                         :RamanagaraDistrict ;
            :hasDistrict :RamanagaraDistrict ;
            :geoName "Ramanagara" ;
            <https://schema.org/latitude> 12.723 ;
            <https://schema.org/longitude> 77.286 ;
            rdfs:comment "a city and a city municipal council in the Indian state of Karnataka." ;
            rdfs:label "Ramanagara"@en .


###  http://w3id.org/codo#RamanagaraDistrict
:RamanagaraDistrict rdf:type owl:NamedIndividual ,
                             :District ,
                             <https://schema.org/Place> ;
                    :containedIn :BengaluruUrban ,
                                 :India ,
                                 :Karnataka ;
                    :contains :Ramanagara ;
                    :hasState :Karnataka ;
                    :geoName "Ramanagara District" ;
                    rdfs:label "Ramanagara District"@en .


###  http://w3id.org/codo#Ratnagiri
:Ratnagiri rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :containedIn :India ,
                        :Maharashtra ,
                        :RatnagiriDistrict ;
           :hasDistrict :RatnagiriDistrict ;
           :geoName "Ratnagiri" ;
           <https://schema.org/latitude> 16.994444 ;
           <https://schema.org/longitude> 73.3 ;
           rdfs:label "Ratnagiri" .


###  http://w3id.org/codo#RatnagiriDistrict
:RatnagiriDistrict rdf:type owl:NamedIndividual ,
                            :District ,
                            <https://schema.org/Place> ;
                   :containedIn :India ,
                                :Maharashtra ;
                   :contains :Ratnagiri ;
                   :hasState :Maharashtra ;
                   :geoName "Ratnagiri District" ;
                   rdfs:label "Ratnagiri District" .


###  http://w3id.org/codo#RestOfEurope
:RestOfEurope rdf:type owl:NamedIndividual ,
                       :GeographicRegion ,
                       <https://schema.org/Place> ;
              :isLocationFor :RestOfEuropeCluster ;
              :geoName "Rest Of Europe" ;
              rdfs:label "Rest Of Europe"@en .


###  http://w3id.org/codo#RestOfEuropeCluster
:RestOfEuropeCluster rdf:type owl:NamedIndividual ,
                              :Cluster ,
                              :GeographicCluster ,
                              :Group ,
                              <http://xmlns.com/foaf/0.1/Agent> ;
                     :hasLocation :RestOfEurope ;
                     rdfs:comment "From the rest of Europe : The patients with travel history to Europe but not to UK and their contacts." ;
                     rdfs:label "RestOfEuropeCluster"@en .


###  http://w3id.org/codo#Riyadh
:Riyadh rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :SaudiArabia ;
        :hasCountry :SaudiArabia ;
        :geoName "Riyadh" ;
        <https://schema.org/latitude> 24.633333 ;
        <https://schema.org/longitude> 46.716667 ;
        rdfs:label "Riyadh"@en .


###  http://w3id.org/codo#RunnyNose
:RunnyNose rdf:type owl:NamedIndividual ,
                    <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                    <http://snomed.info/id/404684003> ;
           rdfs:comment "SCTID: 267101005"@en ;
           rdfs:label "Nasal discharge presen"@en ,
                      "Nose dripping"@en ,
                      "Nose running"@en .


###  http://w3id.org/codo#SaudiArabia
:SaudiArabia rdf:type owl:NamedIndividual ,
                      <https://schema.org/Country> ,
                      <https://schema.org/Place> ;
             :contains :Dammam ,
                       :Jeddah ,
                       :Mecca ,
                       :Riyadh ;
             :geoName "Saudi Arabia" ;
             rdfs:label "Saudi Arabia"@en .


###  http://w3id.org/codo#Scotland
:Scotland rdf:type owl:NamedIndividual ,
                   <https://schema.org/Place> ,
                   <https://schema.org/State> ;
          :containedIn :UK ;
          :contains :Edinburgh ;
          :hasCountry :UK ;
          :geoName "Scotland" ;
          rdfs:label "Scotland"@en .


###  http://w3id.org/codo#SecondGenerationContactAbsentCluster
:SecondGenerationContactAbsentCluster rdf:type owl:NamedIndividual ,
                                               :Cluster ,
                                               :ContactCluster ,
                                               :Group ,
                                               <http://xmlns.com/foaf/0.1/Agent> ;
                                      rdfs:comment "Second Generation Contact Absent : The patients whose information was given as \"Contact\" without giving the patient ID of the individual they were a contact of." .


###  http://w3id.org/codo#SecondGenerationContactCluster
:SecondGenerationContactCluster rdf:type owl:NamedIndividual ,
                                         :Cluster ,
                                         :ContactCluster ,
                                         :Group ,
                                         <http://xmlns.com/foaf/0.1/Agent> ;
                                rdfs:label "SecondGenerationContactCluster"@en .


###  http://w3id.org/codo#SevereAcuteRespiratoryInfectionCluster
:SevereAcuteRespiratoryInfectionCluster rdf:type owl:NamedIndividual ,
                                                 :Cluster ,
                                                 :DiseaseCluster ,
                                                 :Group ,
                                                 <http://xmlns.com/foaf/0.1/Agent> ;
                                        rdfs:comment "Severe Acute Respiratory Infection: This includes patients with a history of Severe Acute Respiratory Infection whose symptoms have resurfaced and their contacts." .


###  http://w3id.org/codo#SeverePneumonia
:SeverePneumonia rdf:type owl:NamedIndividual ,
                          <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                          <http://snomed.info/id/404684003> .


###  http://w3id.org/codo#Shahapur
:Shahapur rdf:type owl:NamedIndividual ,
                   :City ,
                   <https://schema.org/Place> ;
          :containedIn :BengaluruUrban ,
                       :India ,
                       :Karnataka ,
                       :Yadgir ;
          :hasDistrict :Yadgir ;
          :geoName "Shahapur" ;
          <https://schema.org/latitude> 16.7 ;
          <https://schema.org/longitude> 76.83 ;
          rdfs:comment "a city and taluka headquarter located in the Yadgir district of Indian state of Karnataka."@en ;
          rdfs:label "Shahapur"@en .


###  http://w3id.org/codo#Sharjah
:Sharjah rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :UnitedArabEmirates ;
         :hasCountry :UnitedArabEmirates ;
         :geoName "Sharjah" ;
         <https://schema.org/latitude> 25.3575 ;
         <https://schema.org/longitude> 55.390833 ;
         rdfs:label "Sharjah"@en .


###  http://w3id.org/codo#Shikharaji
:Shikharaji rdf:type owl:NamedIndividual ,
                     :City ,
                     <https://schema.org/Place> ;
            :containedIn :India ,
                         :Jharkhand ;
            :hasState :Jharkhand ;
            :geoName "Shikharaji" ;
            <https://schema.org/latitude> 23.9611 ;
            <https://schema.org/longitude> 86.1371 ;
            rdfs:label "Shikharaji" .


###  http://w3id.org/codo#Shivamogga
:Shivamogga rdf:type owl:NamedIndividual ,
                     :City ,
                     <https://schema.org/Place> ;
            :containedIn :BengaluruUrban ,
                         :India ,
                         :Karnataka ;
            :hasState :Karnataka ;
            :geoName "Shivamogga" ;
            <https://schema.org/latitude> 13.933333 ;
            <https://schema.org/longitude> 75.566667 ;
            rdfs:label "Shivamogga" .


###  http://w3id.org/codo#Singapore
:Singapore rdf:type owl:NamedIndividual ,
                    :City ,
                    <https://schema.org/Place> ;
           :geoName "Singapore" ;
           <https://schema.org/latitude> 1.283333 ;
           <https://schema.org/longitude> 103.833333 ;
           rdfs:label "Singapore"@en .


###  http://w3id.org/codo#Sneezing
:Sneezing rdf:type owl:NamedIndividual ,
                   <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                   <http://snomed.info/id/404684003> ;
          rdfs:comment "SCTID: 76067001"@en ;
          rdfs:label "Sneezing"@en .


###  http://w3id.org/codo#Solapur
:Solapur rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :India ,
                      :Maharashtra ;
         :hasState :Maharashtra ;
         :geoName "Solapur" ;
         <https://schema.org/latitude> 17.68 ;
         <https://schema.org/longitude> 75.92 ;
         rdfs:label "Solapur" .


###  http://w3id.org/codo#SouthAfrica
:SouthAfrica rdf:type owl:NamedIndividual ,
                      <https://schema.org/Country> ,
                      <https://schema.org/Place> ;
             :geoName "Republic of South Africa" ;
             rdfs:label "Republic of South Africa"@en .


###  http://w3id.org/codo#SouthAmerica
:SouthAmerica rdf:type owl:NamedIndividual ,
                       :GeographicRegion ,
                       <https://schema.org/Place> ;
              :isLocationFor :SouthAmericaCluster ;
              :geoName "South America" ;
              rdfs:label "South America"@en .


###  http://w3id.org/codo#SouthAmericaCluster
:SouthAmericaCluster rdf:type owl:NamedIndividual ,
                              :Cluster ,
                              :GeographicCluster ,
                              :Group ,
                              <http://xmlns.com/foaf/0.1/Agent> ;
                     :hasLocation :SouthAmerica ;
                     rdfs:comment "From South America : The patients with travel history to South America and their contacts." ;
                     rdfs:label "SouthAmericaCluster"@en .


###  http://w3id.org/codo#SouthernStatesCluster
:SouthernStatesCluster rdf:type owl:NamedIndividual ,
                                :Cluster ,
                                :GeographicCluster ,
                                :Group ,
                                <http://xmlns.com/foaf/0.1/Agent> ;
                       :hasLocation :SouthernStatesOfIndia ;
                       rdfs:comment "From the Southern States : The patients with travel to Kerala, Tamil Nadu, Andhra Pradesh or Telengana and their contacts. This doesn't contain patients with interdistrict travel in Karnataka" .


###  http://w3id.org/codo#SouthernStatesOfIndia
:SouthernStatesOfIndia rdf:type owl:NamedIndividual ,
                                :GeographicRegion ,
                                <https://schema.org/Place> ;
                       :isLocationFor :SouthernStatesCluster ;
                       :geoName "Southern States Of India" ;
                       rdfs:comment "Kerala, Tamil Nadu, Andhra Pradesh or Telengana. This doesn't contain Karnataka" ;
                       rdfs:label "Southern States Of India" .


###  http://w3id.org/codo#Spain
:Spain rdf:type owl:NamedIndividual ,
                <https://schema.org/Country> ,
                <https://schema.org/Place> ;
       :contains :Madrid ;
       :geoName "Spain" ;
       rdfs:label "Spain"@en .


###  http://w3id.org/codo#SriLanka
:SriLanka rdf:type owl:NamedIndividual ,
                   <https://schema.org/Country> ,
                   <https://schema.org/Place> ;
          :contains :Colombo ,
                    :WesternProvince ;
          :geoName "Sri Lanka" ;
          rdfs:label "Sri Lanka"@en .


###  http://w3id.org/codo#Surat
:Surat rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :containedIn :Gujarat ,
                    :India ;
       :hasState :Gujarat ;
       :geoName "Surat" ;
       <https://schema.org/latitude> 21.17024 ;
       <https://schema.org/longitude> 72.831061 ;
       rdfs:label "Surat"@en .


###  http://w3id.org/codo#Switzerland
:Switzerland rdf:type owl:NamedIndividual ,
                      <https://schema.org/Country> ,
                      <https://schema.org/Place> ;
             :geoName "Switzerland" ;
             rdfs:label "Switzerland"@en .


###  http://w3id.org/codo#TJCongregation13thTo18thCluster
:TJCongregation13thTo18thCluster rdf:type owl:NamedIndividual ,
                                          :Cluster ,
                                          :GeographicCluster ,
                                          :Group ,
                                          :TimeCluster ,
                                          <http://xmlns.com/foaf/0.1/Agent> ;
                                 :hasLocation :Delhi ;
                                 :date "2020-03-13T00:00:00"^^xsd:dateTime ,
                                       "2020-03-18T00:00:00"^^xsd:dateTime ;
                                 :endDate "2020-03-18T00:00:00"^^xsd:dateTime ;
                                 :startDate "2020-03-13T00:00:00"^^xsd:dateTime ;
                                 rdfs:comment "TJ Congregation from 13th to 18th March in Delhi : The patients with travel history to the TJ Congregation in Delhi and their contacts." .


###  http://w3id.org/codo#TamilNadu
:TamilNadu rdf:type owl:NamedIndividual ,
                    <https://schema.org/Place> ,
                    <https://schema.org/State> ;
           :containedIn :India ;
           :contains :Chennai ,
                     :Madurai ,
                     :MaduraiDistrict ,
                     :Vellore ,
                     :VelloreDistrict ;
           :hasCountry :India ;
           :geoName "Tamil Nadu" ;
           rdfs:label "Tamil Nadu"@en .


###  http://w3id.org/codo#Telangana
:Telangana rdf:type owl:NamedIndividual ,
                    <https://schema.org/Place> ,
                    <https://schema.org/State> ;
           :containedIn :India ;
           :contains :Hyderabad ;
           :hasCountry :India ;
           :geoName "Telangana" ;
           rdfs:label "Telangana"@en .


###  http://w3id.org/codo#Texas
:Texas rdf:type owl:NamedIndividual ,
                <https://schema.org/Place> ,
                <https://schema.org/State> ;
       :containedIn :USA ;
       :hasCountry :USA ;
       :geoName "Texas" ;
       rdfs:label "Texas"@en .


###  http://w3id.org/codo#Thane
:Thane rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :containedIn :India ,
                    :Maharashtra ,
                    :ThaneDistrict ;
       :hasDistrict :ThaneDistrict ;
       :geoName "Thane" ;
       <https://schema.org/latitude> 19.172431 ;
       <https://schema.org/longitude> 72.957019 ;
       rdfs:label "Thane" .


###  http://w3id.org/codo#ThaneDistrict
:ThaneDistrict rdf:type owl:NamedIndividual ,
                        :District ,
                        <https://schema.org/Place> ;
               :containedIn :India ,
                            :Maharashtra ;
               :contains :Thane ;
               :hasState :Maharashtra ;
               :geoName "Thane District" ;
               rdfs:label "Thane District" .


###  http://w3id.org/codo#TheWorld
:TheWorld rdf:type owl:NamedIndividual ,
                   :GeographicRegion ,
                   <https://schema.org/Place> ;
          :isLocationFor :InternationalTravelHistoryAbsentCluster ;
          :geoName "The World" ;
          rdfs:comment "Represents the geographic region of the entire world." ;
          rdfs:label "The World" .


###  http://w3id.org/codo#Tired
:Tired rdf:type owl:NamedIndividual ,
                <http://purl.obolibrary.org/obo/SYMP_0000462> ,
                <http://snomed.info/id/404684003> ;
       rdfs:comment "SCTID: 224960004"@en ;
       rdfs:label "Feeling tired"@en .


###  http://w3id.org/codo#Trivandrum
:Trivandrum rdf:type owl:NamedIndividual ,
                     :City ,
                     <https://schema.org/Place> ;
            :containedIn :India ,
                         :Kerala ;
            :hasState :Kerala ;
            :geoName "Trivandrum" ;
            <https://schema.org/latitude> 8.4875 ;
            <https://schema.org/longitude> 76.9525 ;
            rdfs:label "Trivandrum" .


###  http://w3id.org/codo#Tumkur
:Tumkur rdf:type owl:NamedIndividual ,
                 :City ,
                 <https://schema.org/Place> ;
        :containedIn :BengaluruUrban ,
                     :India ,
                     :Karnataka ;
        :hasState :Karnataka ;
        :geoName "Tumkur" ;
        <https://schema.org/latitude> 13.34 ;
        <https://schema.org/longitude> 77.1 ;
        rdfs:label "Tumkur" .


###  http://w3id.org/codo#Turkey
:Turkey rdf:type owl:NamedIndividual ,
                 <https://schema.org/Country> ,
                 <https://schema.org/Place> ;
        :geoName "Turkey" ;
        rdfs:label "Turkey" .


###  http://w3id.org/codo#UK
:UK rdf:type owl:NamedIndividual ,
             <https://schema.org/Country> ,
             <https://schema.org/Place> ;
    :contains :Edinburgh ,
              :London ,
              :Scotland ;
    :isLocationFor :UnitedKingdomCluster ;
    :geoName "UK" ;
    rdfs:label "UK"@en .


###  http://w3id.org/codo#UP
:UP rdf:type owl:NamedIndividual ,
             <https://schema.org/Place> ,
             <https://schema.org/State> ;
    :containedIn :India ;
    :hasCountry :India ;
    :hasStatistics :upStatState000001 ,
                   :upStatState000002 ;
    :isLocationFor :COVID-19 ;
    :stateWiseStatistics :upStatState000001 ,
                         :upStatState000002 ;
    :geoName "UP" ;
    <http://xmlns.com/foaf/0.1/name> "Uttar Pradesh" ;
    rdfs:label "UP" .


###  http://w3id.org/codo#URTI
:URTI rdf:type owl:NamedIndividual ,
               <http://purl.obolibrary.org/obo/SYMP_0000462> ,
               <http://snomed.info/id/404684003> ;
      rdfs:comment "SCTID: 54150009"@en ;
      rdfs:label "URTI"@en ,
                 "Upper Respiratory Tract Infection"@en .


###  http://w3id.org/codo#USA
:USA rdf:type owl:NamedIndividual ,
              <https://schema.org/Country> ,
              <https://schema.org/Place> ;
     :contains :NewYorkCity ,
               :NewYorkState ,
               :Texas ;
     :isLocationFor :USACluster ;
     :geoName "USA" ;
     rdfs:label "USA"@en .


###  http://w3id.org/codo#USACluster
:USACluster rdf:type owl:NamedIndividual ,
                     :Cluster ,
                     :GeographicCluster ,
                     :Group ,
                     <http://xmlns.com/foaf/0.1/Agent> ;
            :hasLocation :USA ;
            rdfs:comment "From USA : The patients who had travel history to USA and their contacts." ;
            rdfs:label "USACluster"@en .


###  http://w3id.org/codo#Udupi
:Udupi rdf:type owl:NamedIndividual ,
                :City ,
                <https://schema.org/Place> ;
       :containedIn :BengaluruUrban ,
                    :India ,
                    :Karnataka ;
       :hasState :Karnataka ;
       :geoName "Udupi" ;
       <https://schema.org/latitude> 13.3389 ;
       <https://schema.org/longitude> 74.7451 ;
       rdfs:label "Udupi"@en .


###  http://w3id.org/codo#UnitedArabEmirates
:UnitedArabEmirates rdf:type owl:NamedIndividual ,
                             <https://schema.org/Country> ,
                             <https://schema.org/Place> ;
                    :contains :Sharjah ;
                    :geoName "United Arab Emirates" ;
                    rdfs:label "United Arab Emirates"@en .


###  http://w3id.org/codo#UnitedKingdomCluster
:UnitedKingdomCluster rdf:type owl:NamedIndividual ,
                               :Cluster ,
                               :GeographicCluster ,
                               :Group ,
                               <http://xmlns.com/foaf/0.1/Agent> ;
                      :hasLocation :UK ;
                      rdfs:comment "From United Kingdom : The patients with travel history to UK and their contacts." ;
                      rdfs:label "UnitedKingdomCluster"@en .


###  http://w3id.org/codo#UnknownCluster
:UnknownCluster rdf:type owl:NamedIndividual ,
                         :Cluster ,
                         :Group ,
                         <http://xmlns.com/foaf/0.1/Agent> ;
                rdfs:comment "Unknown : The patients who have been listed in the Media Bulletins as \"Contact Under Tracing\"and their contacts." .


###  http://w3id.org/codo#UttarKannada
:UttarKannada rdf:type owl:NamedIndividual ,
                       :District ,
                       <https://schema.org/Place> ;
              :containedIn :BengaluruUrban ,
                           :India ,
                           :Karnataka ;
              :hasState :Karnataka ;
              :geoName "Uttar Kannada" ;
              rdfs:label "Uttar Kannada"@en .


###  http://w3id.org/codo#UttarPradesh
:UttarPradesh rdf:type owl:NamedIndividual ,
                       <https://schema.org/Place> ,
                       <https://schema.org/State> ;
              :geoName "Uttar Pradesh" ;
              rdfs:label "Uttar Pradesh" .


###  http://w3id.org/codo#UttaraKannada
:UttaraKannada rdf:type owl:NamedIndividual ,
                        :District ,
                        <https://schema.org/Place> ;
               :containedIn :BengaluruUrban ,
                            :India ,
                            :Karnataka ;
               :hasState :Karnataka ;
               :geoName "North Canara" ,
                        "Uttara Kannada" ;
               rdfs:comment "Uttara Kannada, formerly known as North Canara, is a district in the Indian state of Karnataka."@en ;
               rdfs:label "North Canara"@en ,
                          "Uttara Kannada"@en .


###  http://w3id.org/codo#VadodaraDistrict
:VadodaraDistrict rdf:type owl:NamedIndividual ,
                           :District ,
                           <https://schema.org/Place> ;
                  :geoName "Vadodara District" ;
                  rdfs:label "Vadodara District"@en .


###  http://w3id.org/codo#Vellore
:Vellore rdf:type owl:NamedIndividual ,
                  :City ,
                  <https://schema.org/Place> ;
         :containedIn :India ,
                      :TamilNadu ,
                      :VelloreDistrict ;
         :hasDistrict :VelloreDistrict ;
         :geoName "Vellore" ;
         <https://schema.org/latitude> 12.920219 ;
         <https://schema.org/longitude> 79.133306 ;
         rdfs:label "Vellore"@en .


###  http://w3id.org/codo#VelloreDistrict
:VelloreDistrict rdf:type owl:NamedIndividual ,
                          :District ,
                          <https://schema.org/Place> ;
                 :containedIn :India ,
                              :TamilNadu ;
                 :contains :Vellore ;
                 :hasState :TamilNadu ;
                 :geoName "Vellore District" ;
                 rdfs:label "Vellore District"@en .


###  http://w3id.org/codo#Vijayapura
:Vijayapura rdf:type owl:NamedIndividual ,
                     :City ,
                     <https://schema.org/Place> ;
            :containedIn :BengaluruUrban ,
                         :India ,
                         :Karnataka ;
            :hasState :Karnataka ;
            :geoName "Vijayapura" ;
            <https://schema.org/latitude> 13.29 ;
            <https://schema.org/longitude> 77.8 ;
            rdfs:label "Vijayapura"@en .


###  http://w3id.org/codo#Vishakapatnam
:Vishakapatnam rdf:type owl:NamedIndividual ,
                        :City ,
                        <https://schema.org/Place> ;
               :containedIn :AndhraPradesh ,
                            :India ;
               :hasState :AndhraPradesh ;
               :geoName "Vishakapatnam" ;
               <https://schema.org/latitude> 17.704167 ;
               <https://schema.org/longitude> 83.297778 ;
               rdfs:label "Vishakapatnam" .


###  http://w3id.org/codo#Ward135
:Ward135 rdf:type owl:NamedIndividual ,
                  :CityWard ,
                  <https://schema.org/Place> ;
         :geoName "Ward 135" ;
         rdfs:label "Ward 135"@en .


###  http://w3id.org/codo#WestBengal
:WestBengal rdf:type owl:NamedIndividual ,
                     <https://schema.org/Place> ,
                     <https://schema.org/State> ;
            :containedIn :India ;
            :contains :Kolkata ;
            :hasCountry :India ;
            :geoName "West Bengal" ;
            rdfs:label "West Bengal"@en .


###  http://w3id.org/codo#WesternProvince
:WesternProvince rdf:type owl:NamedIndividual ,
                          :Province ,
                          <https://schema.org/Place> ;
                 :containedIn :SriLanka ;
                 :contains :Colombo ;
                 :hasCountry :SriLanka ;
                 :geoName "Western Province" ;
                 rdfs:comment "is one of the nine provinces of Sri Lanka, the first level administrative division of the country."@en ;
                 rdfs:label "Western Province"@en .


###  http://w3id.org/codo#Yadgir
:Yadgir rdf:type owl:NamedIndividual ,
                 :District ,
                 <https://schema.org/Place> ;
        :containedIn :BengaluruUrban ,
                     :India ,
                     :Karnataka ;
        :contains :Shahapur ;
        :hasState :Karnataka ;
        :geoName "Yadgir" ;
        rdfs:label "Yadgir"@en .


###  http://w3id.org/codo#karntStateStat000001
:karntStateStat000001 rdf:type owl:NamedIndividual ,
                               :StateWiseStatistics ,
                               :Statistics ;
                      :isCovid-19StatisticsOf :Karnataka ;
                      :cases 10 ;
                      :metrics 10 .


###  http://w3id.org/codo#karntStateStat000002
:karntStateStat000002 rdf:type owl:NamedIndividual ,
                               :StateWiseStatistics ,
                               :Statistics ;
                      :isCovid-19StatisticsOf :Karnataka ;
                      :cases 10 ;
                      :metrics 10 .


###  http://w3id.org/codo#p000001
:p000001 rdf:type owl:NamedIndividual ,
                  :DiagnosedWithCovid ,
                  :Man ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasDiagnosis :P000001Diagnosis ;
         :hasSymptom :Fever ,
                     :URTI ;
         :hasTestResult :P000001-Vitals1 ;
         :mostRecentTestResult :P000001-Vitals1 ;
         <https://pending.schema.org/gender> :Male ;
         :hadCovidTest "true"^^xsd:boolean ;
         :hasID "T1" .


###  http://w3id.org/codo#p000002
:p000002 rdf:type owl:NamedIndividual ,
                  :DiagnosedWithCovid ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasDiagnosis :P000002Diagnosis ;
         :hasSymptom :Pneumonia ;
         :hasTestResult :P000002-Vitals1 ;
         :mostRecentTestResult :P000002-Vitals1 ;
         :hadCovidTest "true"^^xsd:boolean ;
         :hasID "T2" .


###  http://w3id.org/codo#p000003
:p000003 rdf:type owl:NamedIndividual ,
                  :DiagnosedWithCovid ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasDiagnosis :P000003Diagnosis ;
         :hasSymptom :SeverePneumonia ;
         :hasTestResult :P000003-Vitals1 ,
                        :P000003-Vitals2 ,
                        :P000003-Vitals3 ,
                        :P000003-Vitals4 ;
         :mostRecentTestResult :P000003-Vitals4 ;
         :hadCovidTest "true"^^xsd:boolean ;
         :hasID "T3" .


###  http://w3id.org/codo#p000004
:p000004 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  :UntestedForCovid ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hadCovidTest "false"^^xsd:boolean ;
         :hasID "T4" .


###  http://w3id.org/codo#p000005
:p000005 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  :UntestedForCovid ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hadCovidTest "false"^^xsd:boolean ;
         :hasID "T5" .


###  http://w3id.org/codo#p000006
:p000006 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  :UntestedForCovid ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hadCovidTest "false"^^xsd:boolean ;
         :hasID "T6" .


###  http://w3id.org/codo#p000007
:p000007 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  :UntestedForCovid ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hadCovidTest "false"^^xsd:boolean ;
         :hasID "T7" .


###  http://w3id.org/codo#p000008
:p000008 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  :UntestedForCovid ,
                  :Woman ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         <https://pending.schema.org/gender> :Female ;
         :hadCovidTest "false"^^xsd:boolean ;
         :hasID "T8" .


###  http://w3id.org/codo#p000009
:p000009 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hadCovidTest "true"^^xsd:boolean ;
         :hasID "T9" .


###  http://w3id.org/codo#p000010
:p000010 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  :UntestedForCovid ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ;
         :hadCovidTest "false"^^xsd:boolean ;
         :hasID "T10" .


###  http://w3id.org/codo#p000011
:p000011 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hadCovidTest "true"^^xsd:boolean ;
         :hasID "T11" .


###  http://w3id.org/codo#p000012
:p000012 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  :UntestedForCovid ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ;
         :hadCovidTest "false"^^xsd:boolean ;
         :hasID "T12" .


###  http://w3id.org/codo#p000013
:p000013 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasID "T13" .


###  http://w3id.org/codo#p000014
:p000014 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasID "T14" .


###  http://w3id.org/codo#p000015
:p000015 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasID "T15" .


###  http://w3id.org/codo#p000016
:p000016 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasID "T16" .


###  http://w3id.org/codo#p000018
:p000018 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasID "T18" ;
         rdfs:label "p000018"@en .


###  http://w3id.org/codo#p000019
:p000019 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasID "T19" ;
         rdfs:label "p000019"@en .


###  http://w3id.org/codo#p000020
:p000020 rdf:type owl:NamedIndividual ,
                  :TestData ,
                  <http://xmlns.com/foaf/0.1/Agent> ,
                  <http://xmlns.com/foaf/0.1/Person> ,
                  <https://schema.org/Patient> ;
         :hasID "T20" ;
         rdfs:label "p000020"@en .


###  http://w3id.org/codo#p99991
:p99991 rdf:type owl:NamedIndividual ,
                 :TestData ,
                 <http://xmlns.com/foaf/0.1/Agent> ,
                 <http://xmlns.com/foaf/0.1/Person> ,
                 <https://schema.org/Patient> ;
        :hasID "T17" ;
        rdfs:comment "Note: had to give this test data id that may conflict with real data in order to process reason strings that require numeric computations on the ID's. I.e., they have to be numeric strings that can be converted to integers not string starting with \"T\" So make sure to delete this and similar test data before loading actual data." ;
        rdfs:label "p000017"@en .


###  http://w3id.org/codo#p99992
:p99992 rdf:type owl:NamedIndividual ,
                 :TestData ,
                 <http://xmlns.com/foaf/0.1/Agent> ,
                 <http://xmlns.com/foaf/0.1/Person> ,
                 <https://schema.org/Patient> ;
        :hasID "99992" ;
        rdfs:comment "Note: had to give this test data id that may conflict with real data in order to process reason strings that require numeric computations on the ID's. I.e., they have to be numeric strings that can be converted to integers not string starting with \"T\" So make sure to delete this and similar test data before loading actual data." .


###  http://w3id.org/codo#p99993
:p99993 rdf:type owl:NamedIndividual ,
                 :TestData ,
                 <http://xmlns.com/foaf/0.1/Agent> ,
                 <http://xmlns.com/foaf/0.1/Person> ,
                 <https://schema.org/Patient> ;
        :hasID "99993" ;
        rdfs:comment "Note: had to give this test data id that may conflict with real data in order to process reason strings that require numeric computations on the ID's. I.e., they have to be numeric strings that can be converted to integers not string starting with \"T\" So make sure to delete this and similar test data before loading actual data." .


###  http://w3id.org/codo#upStatState000001
:upStatState000001 rdf:type owl:NamedIndividual ,
                            :StateWiseStatistics ,
                            :Statistics ;
                   :isCovid-19StatisticsOf :UP ;
                   :cases 15 ;
                   :metrics 15 ;
                   <http://xmlns.com/foaf/0.1/name> "Bengalure Urban" .


###  http://w3id.org/codo#upStatState000002
:upStatState000002 rdf:type owl:NamedIndividual ,
                            :StateWiseStatistics ,
                            :Statistics ;
                   :isCovid-19StatisticsOf :UP .


#################################################################
#    Rules
#################################################################

<http://www.isibang.ac.in/ns/codo#p> rdf:type <http://www.w3.org/2003/11/swrl#Variable> .

<http://www.isibang.ac.in/ns/codo#c> rdf:type <http://www.w3.org/2003/11/swrl#Variable> .

<http://www.isibang.ac.in/ns/codo#b> rdf:type <http://www.w3.org/2003/11/swrl#Variable> .

<http://www.isibang.ac.in/ns/codo#s> rdf:type <http://www.w3.org/2003/11/swrl#Variable> .

<http://www.isibang.ac.in/ns/covid19#p> rdf:type <http://www.w3.org/2003/11/swrl#Variable> .

<http://www.isibang.ac.in/ns/covid19#d> rdf:type <http://www.w3.org/2003/11/swrl#Variable> .

<http://www.isibang.ac.in/ns/covid19#tr> rdf:type <http://www.w3.org/2003/11/swrl#Variable> .

<http://www.isibang.ac.in/ns/covid19#r> rdf:type <http://www.w3.org/2003/11/swrl#Variable> .

<http://www.isibang.ac.in/ns/covid19#sp> rdf:type <http://www.w3.org/2003/11/swrl#Variable> .

[ <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> "true"^^xsd:boolean ;
   rdfs:comment "" ;
   rdfs:label "Mild and Very Mild Covid19 Diagnostic Rule" ;
   rdf:type <http://www.w3.org/2003/11/swrl#Imp> ;
   <http://www.w3.org/2003/11/swrl#body> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasSymptom ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> :URTI
                                                     ] ;
                                           rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                      rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                  <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasDiagnosis ;
                                                                  <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p> ;
                                                                  <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/covid19#d>
                                                                ] ;
                                                      rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                 rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                             <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasSymptom ;
                                                                             <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p> ;
                                                                             <http://www.w3.org/2003/11/swrl#argument2> :Fever
                                                                           ] ;
                                                                 rdf:rest rdf:nil
                                                               ]
                                                    ]
                                         ] ;
   <http://www.w3.org/2003/11/swrl#head> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#ClassAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#classPredicate> :MildAndVeryMildCOVID-19 ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#d>
                                                     ] ;
                                           rdf:rest rdf:nil
                                         ]
 ] .

[ <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> "true"^^xsd:boolean ;
   rdfs:comment "" ;
   rdfs:label "Uncle Rule" ;
   rdf:type <http://www.w3.org/2003/11/swrl#Imp> ;
   <http://www.w3.org/2003/11/swrl#body> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasChild ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#p> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#c>
                                                     ] ;
                                           rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                      rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                  <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasBrother ;
                                                                  <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#p> ;
                                                                  <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#b>
                                                                ] ;
                                                      rdf:rest rdf:nil
                                                    ]
                                         ] ;
   <http://www.w3.org/2003/11/swrl#head> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasUncle ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#c> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#b>
                                                     ] ;
                                           rdf:rest rdf:nil
                                         ]
 ] .

[ <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> "true"^^xsd:boolean ;
   rdfs:comment "" ;
   rdfs:label "Aunt Rule" ;
   rdf:type <http://www.w3.org/2003/11/swrl#Imp> ;
   <http://www.w3.org/2003/11/swrl#body> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasChild ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#p> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#c>
                                                     ] ;
                                           rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                      rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                  <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasSister ;
                                                                  <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#p> ;
                                                                  <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#s>
                                                                ] ;
                                                      rdf:rest rdf:nil
                                                    ]
                                         ] ;
   <http://www.w3.org/2003/11/swrl#head> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasAunt ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#c> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#s>
                                                     ] ;
                                           rdf:rest rdf:nil
                                         ]
 ] .

[ <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> "true"^^xsd:boolean ;
   rdfs:comment "" ;
   rdfs:label "Niece Rule" ;
   rdf:type <http://www.w3.org/2003/11/swrl#Imp> ;
   <http://www.w3.org/2003/11/swrl#body> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasDaughter ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#p> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#c>
                                                     ] ;
                                           rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                      rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                  <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasSibling ;
                                                                  <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#p> ;
                                                                  <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#s>
                                                                ] ;
                                                      rdf:rest rdf:nil
                                                    ]
                                         ] ;
   <http://www.w3.org/2003/11/swrl#head> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasNiece ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#s> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#c>
                                                     ] ;
                                           rdf:rest rdf:nil
                                         ]
 ] .

[ <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> "true"^^xsd:boolean ;
   rdfs:comment "" ;
   rdfs:label "Nephew Rule" ;
   rdf:type <http://www.w3.org/2003/11/swrl#Imp> ;
   <http://www.w3.org/2003/11/swrl#body> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasSon ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#p> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#c>
                                                     ] ;
                                           rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                      rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                  <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasSibling ;
                                                                  <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#p> ;
                                                                  <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#s>
                                                                ] ;
                                                      rdf:rest rdf:nil
                                                    ]
                                         ] ;
   <http://www.w3.org/2003/11/swrl#head> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasNephew ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/codo#s> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/codo#c>
                                                     ] ;
                                           rdf:rest rdf:nil
                                         ]
 ] .

[ <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> "true"^^xsd:boolean ;
   rdfs:comment "" ;
   rdfs:label "Moderate Covid19 Diagnostic Rule" ;
   rdf:type <http://www.w3.org/2003/11/swrl#Imp> ;
   <http://www.w3.org/2003/11/swrl#body> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasDiagnosis ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/covid19#d>
                                                     ] ;
                                           rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                      rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                  <http://www.w3.org/2003/11/swrl#propertyPredicate> :mostRecentTestResult ;
                                                                  <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p> ;
                                                                  <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/covid19#tr>
                                                                ] ;
                                                      rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                 rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                             <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasSymptom ;
                                                                             <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p> ;
                                                                             <http://www.w3.org/2003/11/swrl#argument2> :Pneumonia
                                                                           ] ;
                                                                 rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                            rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#BuiltinAtom> ;
                                                                                        <http://www.w3.org/2003/11/swrl#builtin> <http://www.w3.org/2003/11/swrlb#greaterThanOrEqual> ;
                                                                                        <http://www.w3.org/2003/11/swrl#arguments> [ rdf:type rdf:List ;
                                                                                                                                     rdf:first <http://www.isibang.ac.in/ns/covid19#r> ;
                                                                                                                                     rdf:rest [ rdf:type rdf:List ;
                                                                                                                                                rdf:first 15 ;
                                                                                                                                                rdf:rest rdf:nil
                                                                                                                                              ]
                                                                                                                                   ]
                                                                                      ] ;
                                                                            rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                                       rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#DatavaluedPropertyAtom> ;
                                                                                                   <http://www.w3.org/2003/11/swrl#propertyPredicate> :respiratoryRate ;
                                                                                                   <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#tr> ;
                                                                                                   <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/covid19#r>
                                                                                                 ] ;
                                                                                       rdf:rest rdf:nil
                                                                                     ]
                                                                          ]
                                                               ]
                                                    ]
                                         ] ;
   <http://www.w3.org/2003/11/swrl#head> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#ClassAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#classPredicate> :ModerateCOVID-19 ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#d>
                                                     ] ;
                                           rdf:rest rdf:nil
                                         ]
 ] .

[ <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> "true"^^xsd:boolean ;
   rdfs:comment "" ;
   rdfs:label "Severe Covid19 Diagnostic Rule" ;
   rdf:type <http://www.w3.org/2003/11/swrl#Imp> ;
   <http://www.w3.org/2003/11/swrl#body> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasDiagnosis ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p> ;
                                                       <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/covid19#d>
                                                     ] ;
                                           rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                      rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                  <http://www.w3.org/2003/11/swrl#propertyPredicate> :mostRecentTestResult ;
                                                                  <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p> ;
                                                                  <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/covid19#tr>
                                                                ] ;
                                                      rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                 rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> ;
                                                                             <http://www.w3.org/2003/11/swrl#propertyPredicate> :hasSymptom ;
                                                                             <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p> ;
                                                                             <http://www.w3.org/2003/11/swrl#argument2> :SeverePneumonia
                                                                           ] ;
                                                                 rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                            rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#DatavaluedPropertyAtom> ;
                                                                                        <http://www.w3.org/2003/11/swrl#propertyPredicate> :SpO2 ;
                                                                                        <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#tr> ;
                                                                                        <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/covid19#sp>
                                                                                      ] ;
                                                                            rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                                       rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#ClassAtom> ;
                                                                                                   <http://www.w3.org/2003/11/swrl#classPredicate> <http://xmlns.com/foaf/0.1/Person> ;
                                                                                                   <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#p>
                                                                                                 ] ;
                                                                                       rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                                                  rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#BuiltinAtom> ;
                                                                                                              <http://www.w3.org/2003/11/swrl#builtin> <http://www.w3.org/2003/11/swrlb#greaterThanOrEqual> ;
                                                                                                              <http://www.w3.org/2003/11/swrl#arguments> [ rdf:type rdf:List ;
                                                                                                                                                           rdf:first <http://www.isibang.ac.in/ns/covid19#r> ;
                                                                                                                                                           rdf:rest [ rdf:type rdf:List ;
                                                                                                                                                                      rdf:first 30 ;
                                                                                                                                                                      rdf:rest rdf:nil
                                                                                                                                                                    ]
                                                                                                                                                         ]
                                                                                                            ] ;
                                                                                                  rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                                                             rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#DatavaluedPropertyAtom> ;
                                                                                                                         <http://www.w3.org/2003/11/swrl#propertyPredicate> :respiratoryRate ;
                                                                                                                         <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#tr> ;
                                                                                                                         <http://www.w3.org/2003/11/swrl#argument2> <http://www.isibang.ac.in/ns/covid19#r>
                                                                                                                       ] ;
                                                                                                             rdf:rest [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                                                                                                        rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#BuiltinAtom> ;
                                                                                                                                    <http://www.w3.org/2003/11/swrl#builtin> <http://www.w3.org/2003/11/swrlb#greaterThanOrEqual> ;
                                                                                                                                    <http://www.w3.org/2003/11/swrl#arguments> [ rdf:type rdf:List ;
                                                                                                                                                                                 rdf:first <http://www.isibang.ac.in/ns/covid19#sp> ;
                                                                                                                                                                                 rdf:rest [ rdf:type rdf:List ;
                                                                                                                                                                                            rdf:first 90 ;
                                                                                                                                                                                            rdf:rest rdf:nil
                                                                                                                                                                                          ]
                                                                                                                                                                               ]
                                                                                                                                  ] ;
                                                                                                                        rdf:rest rdf:nil
                                                                                                                      ]
                                                                                                           ]
                                                                                                ]
                                                                                     ]
                                                                          ]
                                                               ]
                                                    ]
                                         ] ;
   <http://www.w3.org/2003/11/swrl#head> [ rdf:type <http://www.w3.org/2003/11/swrl#AtomList> ;
                                           rdf:first [ rdf:type <http://www.w3.org/2003/11/swrl#ClassAtom> ;
                                                       <http://www.w3.org/2003/11/swrl#classPredicate> :SevereCOVID-19 ;
                                                       <http://www.w3.org/2003/11/swrl#argument1> <http://www.isibang.ac.in/ns/covid19#d>
                                                     ] ;
                                           rdf:rest rdf:nil
                                         ]
 ] .

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