@prefix : . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . @base . 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/odml-rdf#hasDocument :hasDocument rdf:type owl:ObjectProperty ; rdfs:domain :Hub ; rdfs:range :Document ; rdfs:label "hasDocument"^^xsd:string . ### https://g-node.org/odml-rdf#hasProperty :hasProperty rdf:type owl:ObjectProperty ; rdfs:domain :Section ; rdfs:range :Property ; rdfs:label "hasProperty"^^xsd:string . ### https://g-node.org/odml-rdf#hasSection :hasSection rdf:type owl:ObjectProperty ; rdfs:domain :Document , :Section ; rdfs:range :Section ; rdfs:label "hasSection"^^xsd:string . ### https://g-node.org/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/odml-rdf#hasValue :hasValue rdf:type owl:ObjectProperty ; rdfs:domain :Property ; rdfs:range rdf:Seq ; rdfs:label "hasValue"^^xsd:string . ### https://g-node.org/odml-rdf#isDocumentOf :isDocumentOf rdf:type owl:ObjectProperty ; rdfs:domain :Document ; rdfs:range :Hub ; rdfs:label "isDocumentOf"^^xsd:string . ### https://g-node.org/odml-rdf#isPropertyOf :isPropertyOf rdf:type owl:ObjectProperty ; rdfs:domain :Property ; rdfs:range :Section ; rdfs:label "isPropertyOf"^^xsd:string . ### https://g-node.org/odml-rdf#isSectionOf :isSectionOf rdf:type owl:ObjectProperty ; rdfs:domain :Section ; rdfs:range :Document , :Section ; rdfs:label "isSectionOf"^^xsd:string . ### https://g-node.org/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/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/odml-rdf#hasAuthor :hasAuthor rdf:type owl:DatatypeProperty ; rdfs:domain :Document ; rdfs:range xsd:string ; rdfs:label "hasAuthor"^^xsd:string . ### https://g-node.org/odml-rdf#hasDate :hasDate rdf:type owl:DatatypeProperty ; rdfs:domain :Document ; rdfs:range xsd:date ; rdfs:label "hasDate"^^xsd:string . ### https://g-node.org/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/odml-rdf#hasDocVersion :hasDocVersion rdf:type owl:DatatypeProperty ; rdfs:domain :Document ; rdfs:range xsd:float ; rdfs:label "hasDocVersion"^^xsd:string . ### https://g-node.org/odml-rdf#hasDtype :hasDtype rdf:type owl:DatatypeProperty ; rdfs:domain :Property ; rdfs:range xsd:string ; rdfs:label "hasDtype"^^xsd:string . ### https://g-node.org/odml-rdf#hasExternalTerminology :hasExternalTerminology rdf:type owl:DatatypeProperty ; rdfs:domain :Terminology ; rdfs:range rdfs:Literal ; rdfs:label "hasExternalTerminology"^^xsd:string . ### https://g-node.org/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/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/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/odml-rdf#hasType :hasType rdf:type owl:DatatypeProperty ; rdfs:domain :Section ; rdfs:range xsd:string ; rdfs:label "hasType"^^xsd:string . ### https://g-node.org/odml-rdf#hasUncertainty :hasUncertainty rdf:type owl:DatatypeProperty ; rdfs:domain :Property ; rdfs:range xsd:float ; rdfs:label "hasUncertainty"^^xsd:string . ### https://g-node.org/odml-rdf#hasUnit :hasUnit rdf:type owl:DatatypeProperty ; rdfs:domain :Property ; rdfs:range xsd:string ; rdfs:label "hasUnit"^^xsd:string . ### https://g-node.org/odml-rdf#hasValueOrigin :hasValueOrigin rdf:type owl:DatatypeProperty ; rdfs:domain :Property ; rdfs:range xsd:string ; rdfs:label "hasValueOrigin" . ### https://g-node.org/odml-rdf#hasVersion :hasVersion rdf:type owl:DatatypeProperty ; rdfs:domain :Document ; rdfs:range xsd:float ; rdfs:label "hasVersion"^^xsd:string . ################################################################# # Basic 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/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/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/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/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/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 . ################################################################# # ODML Sub Classes ################################################################# ### https://g-node.org/odml-rdf#Affiliation :Affiliation rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Affiliation" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#AlternateIdentifier :AlternateIdentifier rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "AlternateIdentifier" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Amplifier :Amplifier rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Amplifier" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Analysis :Analysis rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Analysis" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Attenuator :Attenuator rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Attenuator" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Behavior :Behavior rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Behavior" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#CameraObjective :CameraObjective rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "CameraObjective" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Cell :Cell rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Cell" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#CellProperties :CellProperties rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "CellProperties" . ### https://g-node.org/odml-rdf#Contributer :Contributer rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Contributer" . rdfs:seeAlso . ### https://g-node.org/odml-rdf#Creator :Creator rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Creator" . rdfs:seeAlso . ### https://g-node.org/odml-rdf#DataAcquisition :DataAcquisition rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "DataAcquisition" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Dataset :Dataset rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Dataset" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#DataReference :DataReference rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "DataReference" . ### https://g-node.org/odml-rdf#Date :Date rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Date" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#DC :DC rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "DC" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Description :Description rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Description" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Electrode :Electrode rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Electrode" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Electrophysiology :Electrophysiology rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Electrophysiology" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Event :Event rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Event" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#EventList :EventList rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "EventList" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Experiment :Experiment rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Experiment" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Eyetracker :Eyetracker rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Eyetracker" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Gabor :Gabor rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Gabor" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Grating :Grating rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Grating" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Filter :Filter rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Filter" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Filterset :Filterset rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Filterset" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Format :Format rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Format" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#FundingReference :FundingReference rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "FundingReference" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#GeoLocation :GeoLocation rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "GeoLocation" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Hardware :Hardware rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Hardware" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#HardwareProperties :HardwareProperties rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "HardwareProperties" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#HardwareSettings :HardwareSettings rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "HardwareSettings" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Identifier :Identifier rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Identifier" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#ImageAcquisition :ImageAcquisition rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "ImageAcquisition" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Imaging :Imaging rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Imaging" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#LeakyIntegrateAndFire :LeakyIntegrateAndFire rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "LeakyIntegrateAndFire" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Lightsource :Lightsource rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Lightsource" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Microscope :Microscope rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Microscope" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#MicroscopeObjective :MicroscopeObjective rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "MicroscopeObjective" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Movie :Movie rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Movie" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#MultiCompartmentModel :MultiCompartmentModel rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "MultiCompartmentModel" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Scanner :Scanner rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Scanner" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#StimulusIsolator :StimulusIsolator rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "StimulusIsolator" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#NamedIdentifier :NamedIdentifier rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "NamedIdentifier" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#PerfectIntegrateAndFire :PerfectIntegrateAndFire rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "PerfectIntegrateAndFire" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Person :Person rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Person" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#PowerSpectrum :PowerSpectrum rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "PowerSpectrum" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Preparation :Preparation rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Preparation" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Project :Project rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Project" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Protocol :Protocol rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Protocol" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Psychophysics :Psychophysics rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Psychophysics" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Pulse :Pulse rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Pulse" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Ramp :Ramp rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Ramp" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#RandomDot :RandomDot rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "RandomDot" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Recording :Recording rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Recording" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#RelatedIdentifier :RelatedIdentifier rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "RelatedIdentifier" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#ResourceType :ResourceType rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "ResourceType" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Rights :Rights rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Rights" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Sawtooth :Sawtooth rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Sawtooth" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Settings :Settings rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Settings" . ### https://g-node.org/odml-rdf#Setup :Setup rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Setup" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Sinewave :Sinewave rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Sinewave" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#SingleCompartmentModel :SingleCompartmentModel rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "SingleCompartmentModel" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Size :Size rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Size" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Sinewave :Sinewave rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Sinewave" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Squarewave :Squarewave rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Squarewave" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Stimulus :Stimulus rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description of the Stimulus."^^xsd:string ; rdfs:label "Stimulus" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Subject :Subject rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Subject" ; rdfs:seeAlso ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Title :Title rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Title" ; rdfs:seeAlso . ### https://g-node.org/odml-rdf#Whitenoise :Whitenoise rdf:type owl:Class ; rdfs:subClassOf :Section ; rdfs:comment "Description"^^xsd:string ; rdfs:label "Whitenoise" ; rdfs:seeAlso . ### Generated by the OWL API (version 4.3.1) https://github.com/owlcs/owlapi