@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix archivo: <https://archivo.dbpedia.org/onto#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<https://archivo.dbpedia.org/onto#>
    dc:title "The DBpedia Archivo Ontology"@en ;
    dct:creator <https://yum-yab.github.io/webid.ttl#this> ;
    dct:description "The Archivo Ontology lays the foundation for managing ontologies (and their metadata) on the DBpedia Databus."@en ;
    dct:license <http://creativecommons.org/licenses/by/3.0/> ;
    vann:preferredNamespacePrefix "archivo" ;
    a owl:Ontology ;
    rdfs:comment "The Archivo Ontology lays the foundation for managing ontologies (and their metadata) on the DBpedia Databus."@en ;
    rdfs:label "The DBpedia Archivo Ontology"@en ;
    archivo:trackThis <https://raw.githubusercontent.com/dbpedia/archivo/master/vocabulary/vocab.ttl> .

archivo:Ontology
    dct:description "Archivo considers all instances of skos:ConceptScheme and owl:Ontology as an ontology."@en ;
    a owl:Class ;
    rdfs:comment "Everything that is considered an ontology by the DBpedia Archivo system."@en ;
    rdfs:isDefinedBy <https://archivo.dbpedia.org/onto#> ;
    rdfs:label "Archivo Ontology"@en ;
    owl:unionOf (owl:Ontology
        skos:ConceptScheme
    ) .

archivo:defines
    dct:description "This property is the inverse of rdfs:isDefinedBy and can, for example, be used to link a ontology to the classes and properties it defines."@en ;
    a owl:ObjectProperty ;
    rdfs:comment "This property links a given resource to one that it defines."@en ;
    rdfs:domain rdfs:Resource ;
    rdfs:isDefinedBy <https://archivo.dbpedia.org/onto#> ;
    rdfs:label "Archivo Defines"@en ;
    rdfs:range rdfs:Resource ;
    owl:inverseOf rdfs:isDefinedBy .

archivo:trackThis
    dct:description "This property can be used to link an ontology to the actively developed RDF file resembling the ontology, for example on github."@en ;
    a owl:ObjectProperty ;
    rdfs:comment "This property links an ontology to a file resembling the currently actively developed version of the ontology."@en ;
    rdfs:domain archivo:Ontology ;
    rdfs:isDefinedBy <https://archivo.dbpedia.org/onto#> ;
    rdfs:label "Archivo Track This"@en ;
    rdfs:range rdfs:Resource .

