@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <http://www.purl.org/drammar#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix metadata_def: <http://data.bioontology.org/metadata/def/> . ns0:ADTComponent rdfs:subClassOf ns0:DataStructure . ns0:AbstractDataType rdfs:subClassOf ns0:DataStructure . ns0:DataStructure metadata_def:mappingLoom "datastructure" ; metadata_def:mappingSameURI ns0:DataStructure ; metadata_def:prefLabel "DataStructure" ; a owl:Class ; rdfs:comment """DataStructure This class encodes the data structures that provide structural organization to the other entities. It includes abstract data types (namely sets, lists and trees) and data type components.""" ; rdfs:label "DataStructure" ; rdfs:subClassOf owl:Thing .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://www.purl.org/drammar#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix metadata_def: <http://data.bioontology.org/metadata/def/> .

ns0:ADTComponent
    rdfs:subClassOf ns0:DataStructure .

ns0:AbstractDataType
    rdfs:subClassOf ns0:DataStructure .

ns0:DataStructure
    metadata_def:mappingLoom "datastructure" ;
    metadata_def:mappingSameURI ns0:DataStructure ;
    metadata_def:prefLabel "DataStructure" ;
    a owl:Class ;
    rdfs:comment """DataStructure This class encodes the data structures that provide structural
            organization to the other entities. It includes abstract data types (namely sets, lists
            and trees) and data type components.""" ;
    rdfs:label "DataStructure" ;
    rdfs:subClassOf owl:Thing .