@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @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/> . @prefix org: <http://www.w3.org/ns/org#> . @prefix dct: <http://purl.org/dc/terms/> . dct:Agent owl:equivalentClass foaf:Agent . org:Organization rdfs:subClassOf foaf:Agent . org:hasMember rdfs:range foaf:Agent . org:memberOf rdfs:domain foaf:Agent . foaf:Agent metadata_def:mappingLoom "agent" ; metadata_def:mappingSameURI foaf:Agent ; metadata_def:prefLabel "Agent" ; a owl:Class ; rdfs:label "Agent" ; rdfs:subClassOf owl:Thing . foaf:Organization rdfs:subClassOf foaf:Agent . foaf:Person rdfs:subClassOf foaf:Agent .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@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/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix dct: <http://purl.org/dc/terms/> .

dct:Agent
    owl:equivalentClass foaf:Agent .

org:Organization
    rdfs:subClassOf foaf:Agent .

org:hasMember
    rdfs:range foaf:Agent .

org:memberOf
    rdfs:domain foaf:Agent .

foaf:Agent
    metadata_def:mappingLoom "agent" ;
    metadata_def:mappingSameURI foaf:Agent ;
    metadata_def:prefLabel "Agent" ;
    a owl:Class ;
    rdfs:label "Agent" ;
    rdfs:subClassOf owl:Thing .

foaf:Organization
    rdfs:subClassOf foaf:Agent .

foaf:Person
    rdfs:subClassOf foaf:Agent .