123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
- @prefix : <https://g-node.org/projects/odml-rdf#> .
- @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 <https://g-node.org/projects/odml-rdf> .
- <https://g-node.org/projects/odml-rdf> rdf:type owl:Ontology .
- #################################################################
- # Datatypes
- #################################################################
- ### http://www.w3.org/2001/XMLSchema#date
- xsd:date rdf:type rdfs:Datatype ;
- rdfs:label "xsd:date" .
- #################################################################
- # Object Properties
- #################################################################
- ### https://g-node.org/projects/odml-rdf#hasDocument
- :hasDocument rdf:type owl:ObjectProperty ;
- rdfs:domain :Hub ;
- rdfs:range :Document ;
- rdfs:label "hasDocument"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasProperty
- :hasProperty rdf:type owl:ObjectProperty ;
- rdfs:domain :Section ;
- rdfs:range :Property ;
- rdfs:label "hasProperty"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasSection
- :hasSection rdf:type owl:ObjectProperty ;
- rdfs:domain :Document ,
- :Section ;
- rdfs:range :Section ;
- rdfs:label "hasSection"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasTerminology
- :hasTerminology rdf:type owl:ObjectProperty ;
- rdfs:domain :Document ,
- :Hub ,
- :Section ,
- :Terminology ;
- rdfs:range :Terminology ;
- rdfs:label "hasTerminology"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasValue
- :hasValue rdf:type owl:ObjectProperty ;
- rdfs:domain :Property ;
- rdfs:range rdf:Seq ;
- rdfs:label "hasValue"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#isDocumentOf
- :isDocumentOf rdf:type owl:ObjectProperty ;
- rdfs:domain :Document ;
- rdfs:range :Hub ;
- rdfs:label "isDocumentOf"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#isPropertyOf
- :isPropertyOf rdf:type owl:ObjectProperty ;
- rdfs:domain :Property ;
- rdfs:range :Section ;
- rdfs:label "isPropertyOf"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#isSectionOf
- :isSectionOf rdf:type owl:ObjectProperty ;
- rdfs:domain :Section ;
- rdfs:range :Document ,
- :Section ;
- rdfs:label "isSectionOf"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#isTerminologyOf
- :isTerminologyOf rdf:type owl:ObjectProperty ;
- rdfs:domain :Terminology ;
- rdfs:range :Document ,
- :Hub ,
- :Section ,
- :Terminology ;
- rdfs:label "isTerminologyOf"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#isValueOf
- :isValueOf rdf:type owl:ObjectProperty ;
- rdfs:domain rdf:Seq ;
- rdfs:range :Property ;
- rdfs:label "isValueOf"^^xsd:string .
- #################################################################
- # Data properties
- #################################################################
- ### https://g-node.org/projects/odml-rdf#hasAuthor
- :hasAuthor rdf:type owl:DatatypeProperty ;
- rdfs:domain :Document ;
- rdfs:range xsd:string ;
- rdfs:label "hasAuthor"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasDate
- :hasDate rdf:type owl:DatatypeProperty ;
- rdfs:domain :Document ;
- rdfs:range xsd:date ;
- rdfs:label "hasDate"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasDefinition
- :hasDefinition rdf:type owl:DatatypeProperty ;
- rdfs:domain :Property ,
- :Section ;
- rdfs:range xsd:string ;
- rdfs:label "hasDefinition"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasDocVersion
- :hasDocVersion rdf:type owl:DatatypeProperty ;
- rdfs:domain :Document ;
- rdfs:range xsd:float ;
- rdfs:label "hasDocVersion"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasDtype
- :hasDtype rdf:type owl:DatatypeProperty ;
- rdfs:domain :Property ;
- rdfs:range xsd:string ;
- rdfs:label "hasDtype"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasExternalTerminology
- :hasExternalTerminology rdf:type owl:DatatypeProperty ;
- rdfs:domain :Terminology ;
- rdfs:range rdfs:Literal ;
- rdfs:label "hasExternalTerminology"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasId
- :hasId rdf:type owl:DatatypeProperty ,
- owl:FunctionalProperty ;
- rdfs:domain :Document ,
- :Property ,
- :Section ;
- rdfs:range rdfs:Literal ;
- rdfs:label "hasId"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasName
- :hasName rdf:type owl:DatatypeProperty ;
- rdfs:domain :Property ,
- :Section ;
- rdfs:range xsd:string ;
- rdfs:label "hasName"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasReference
- :hasReference rdf:type owl:DatatypeProperty ;
- rdfs:domain :Property ,
- :Section ;
- rdfs:range rdfs:Literal ;
- rdfs:label "hasReference"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasType
- :hasType rdf:type owl:DatatypeProperty ;
- rdfs:domain :Section ;
- rdfs:range xsd:string ;
- rdfs:label "hasType"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasUncertainty
- :hasUncertainty rdf:type owl:DatatypeProperty ;
- rdfs:domain :Property ;
- rdfs:range xsd:float ;
- rdfs:label "hasUncertainty"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasUnit
- :hasUnit rdf:type owl:DatatypeProperty ;
- rdfs:domain :Property ;
- rdfs:range xsd:string ;
- rdfs:label "hasUnit"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#hasValueOrigin
- :hasValueOrigin rdf:type owl:DatatypeProperty ;
- rdfs:domain :Property ;
- rdfs:range xsd:string ;
- rdfs:label "hasValueOrigin" .
- ### https://g-node.org/projects/odml-rdf#hasVersion
- :hasVersion rdf:type owl:DatatypeProperty ;
- rdfs:domain :Document ;
- rdfs:range xsd:float ;
- rdfs:label "hasVersion"^^xsd:string .
- #################################################################
- # Classes
- #################################################################
- ### http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
- rdf:Seq rdf:type owl:Class ;
- rdfs:subClassOf [ rdf:type owl:Restriction ;
- owl:onProperty :isValueOf ;
- owl:someValuesFrom :Property
- ] ;
- rdfs:comment "The class of ordered containers." ;
- rdfs:isDefinedBy rdf: ;
- rdfs:label "Seq" .
- ### https://g-node.org/projects/odml-rdf#Cell
- :Cell rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "Cell" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/cell/cell.xml> .
- ### https://g-node.org/projects/odml-rdf#CellProperties
- :CellProperties rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "CellProperties" .
- ### https://g-node.org/projects/odml-rdf#DataAcquisition
- :DataAcquisition rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "DataAcquisition" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/hardware/daq.xml> .
- ### https://g-node.org/projects/odml-rdf#Dataset
- :Dataset rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "Dataset" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/dataset/dataset.xml> .
- ### https://g-node.org/projects/odml-rdf#Document
- :Document rdf:type owl:Class ;
- rdfs:subClassOf owl:Thing ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasSection ;
- owl:someValuesFrom :Section
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasTerminology ;
- owl:someValuesFrom :Terminology
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :isDocumentOf ;
- owl:someValuesFrom :Hub
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasAuthor ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasDate ;
- owl:someValuesFrom xsd:date
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasDocVersion ;
- owl:someValuesFrom xsd:float
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasId ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasVersion ;
- owl:someValuesFrom xsd:float
- ] ;
- rdfs:comment "Doc description"^^xsd:string ;
- rdfs:label "Document" ;
- rdfs:seeAlso "Link to the doc description of site"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#Electrode
- :Electrode rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "Electrode" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/electrode/electrode.xml> .
- ### https://g-node.org/projects/odml-rdf#Hardware
- :Hardware rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "Hardware" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/hardware/hardware.xml> .
- ### https://g-node.org/projects/odml-rdf#HardwareSettings
- :HardwareSettings rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "HardwareSettings" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/collection/hardware_settings.xml> .
- ### https://g-node.org/projects/odml-rdf#Hub
- :Hub rdf:type owl:Class ;
- rdfs:subClassOf owl:Thing ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasDocument ;
- owl:someValuesFrom :Document
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasTerminology ;
- owl:someValuesFrom :Terminology
- ] ;
- rdfs:comment "Description of the hub class"^^xsd:string ;
- rdfs:label "Hub" ;
- rdfs:seeAlso "Link to the Hub remote description"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#Preparation
- :Preparation rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "Preparation" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/preparation/preparation.xml> .
- ### https://g-node.org/projects/odml-rdf#Property
- :Property rdf:type owl:Class ;
- rdfs:subClassOf owl:Thing ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasValue ;
- owl:someValuesFrom rdf:Seq
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :isPropertyOf ;
- owl:someValuesFrom :Section
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasDefinition ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasDtype ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasId ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasName ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasReference ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasUncertainty ;
- owl:someValuesFrom xsd:float
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasUnit ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasValueOrigin ;
- owl:someValuesFrom rdfs:Literal
- ] ;
- rdfs:comment "Description of a Property entity"^^xsd:string ;
- rdfs:label "Property" ;
- rdfs:seeAlso "Link to the description on the site"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#Recording
- :Recording rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "Recording" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/recording/recording.xml> .
- ### https://g-node.org/projects/odml-rdf#Section
- :Section rdf:type owl:Class ;
- rdfs:subClassOf owl:Thing ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasProperty ;
- owl:someValuesFrom :Property
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasSection ;
- owl:someValuesFrom :Section
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasTerminology ;
- owl:someValuesFrom :Terminology
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :isSectionOf ;
- owl:someValuesFrom :Document
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :isSectionOf ;
- owl:someValuesFrom :Section
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasDefinition ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasId ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasName ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasReference ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasType ;
- owl:someValuesFrom rdfs:Literal
- ] ;
- rdfs:comment "Comment about section"^^xsd:string ;
- rdfs:label "Section" ;
- rdfs:seeAlso "Link to the doc description of site"^^xsd:string .
- ### https://g-node.org/projects/odml-rdf#Settings
- :Settings rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "Settings" .
- ### https://g-node.org/projects/odml-rdf#Setup
- :Setup rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "Setup" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/setup/setup.xml> .
- ### https://g-node.org/projects/odml-rdf#Stimulus
- :Stimulus rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description of the Stimulus."^^xsd:string ;
- rdfs:label "Stimulus" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/stimulus/stimulus.xml> .
- ### https://g-node.org/projects/odml-rdf#Subject
- :Subject rdf:type owl:Class ;
- rdfs:subClassOf :Section ;
- rdfs:comment "Description"^^xsd:string ;
- rdfs:label "Subject" ;
- rdfs:seeAlso <http://portal.g-node.org/odml/terminologies/v1.0/subject/subject.xml> .
- ### https://g-node.org/projects/odml-rdf#Terminology
- :Terminology rdf:type owl:Class ;
- rdfs:subClassOf owl:Thing ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasSection ;
- owl:someValuesFrom :Section
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasTerminology ;
- owl:someValuesFrom :Terminology
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :isTerminologyOf ;
- owl:someValuesFrom :Document
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :isTerminologyOf ;
- owl:someValuesFrom :Hub
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :isTerminologyOf ;
- owl:someValuesFrom :Section
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :isTerminologyOf ;
- owl:someValuesFrom :Terminology
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasExternalTerminology ;
- owl:someValuesFrom rdfs:Literal
- ] ,
- [ rdf:type owl:Restriction ;
- owl:onProperty :hasId ;
- owl:someValuesFrom rdfs:Literal
- ] ;
- rdfs:comment "Description of a Terminology"^^xsd:string ;
- rdfs:label "Terminology" ;
- rdfs:seeAlso "Link to the remote description"^^xsd:string .
- ### Generated by the OWL API (version 4.3.1) https://github.com/owlcs/owlapi
|