@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix xml: <http://www.w3.org/XML/1998/namespace>.
@prefix cbo: <http://comicmeta.org/cbo/>.
@prefix dc: <http://purl.org/dc/elements/1.1/>.
@prefix dcterms: <http://purl.org/dc/terms/>.
@prefix dctype: <http://purl.org/dc/dcmitype/>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix frbr: <http://purl.org/vocab/frbr/core#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix schema: <http://schema.org/>.
@prefix skos: <http://www.w3.org/2004/02/skos/core#>.
@prefix vann: <http://purl.org/vocab/vann/>.
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#>.

cbo: dc:creator <https://sean.petiya.com/#me>;
     dc:description "An OWL ontology and RDF metadata vocabulary for describing comic books and comic book collections.";
     dc:title "Comic Book Ontology"@en;
     dcterms:license <http://creativecommons.org/licenses/by/4.0>;
     dcterms:modified "2023-03-15";
     vann:preferredNamespacePrefix "cbo";
     vann:preferredNamespaceUri "http://comicmeta.org/cbo/";
     a owl:Ontology;
     owl:versionIRI cbo:;
     owl:versionInfo "0.16.0".
cbo:Collection a owl:Class;
               rdfs:comment "A collection of comic books and related resources."@en;
               rdfs:label "Collection"@en;
               rdfs:subClassOf dctype:Collection;
               vs:term_status "unstable".
cbo:Pedigree a owl:Class;
             rdfs:comment "An exceptional original owner collection of high quality, vintage comic books often containing copies that are considered exemplars of key issues."@en;
             rdfs:label "Pedigree"@en;
             rdfs:subClassOf cbo:Collection;
             vs:term_status "unstable".
cbo:box a owl:ObjectProperty;
        rdfs:comment "Associates a box with a comic book collection."@en;
        rdfs:domain cbo:Collection;
        rdfs:label "box"@en;
        rdfs:range cbo:Box;
        rdfs:subPropertyOf dcterms:hasPart;
        vs:term_status "unstable".
cbo:collection a owl:ObjectProperty;
               rdfs:comment "Links a collector to a collection."@en;
               rdfs:domain cbo:Collector;
               rdfs:label "collection"@en;
               rdfs:range cbo:Collection;
               vs:term_status "unstable".
cbo:item a owl:ObjectProperty;
         rdfs:comment "Links a comic book collection to an item."@en;
         rdfs:domain cbo:Collection;
         rdfs:label "item"@en;
         rdfs:range cbo:Item;
         rdfs:subPropertyOf dcterms:hasPart;
         owl:inverseOf cbo:itemOf;
         vs:term_status "unstable".
cbo:itemOf a owl:ObjectProperty;
           rdfs:comment "Links an item to a comic book collection."@en;
           rdfs:domain cbo:Item;
           rdfs:label "item of"@en;
           rdfs:range cbo:Collection;
           rdfs:subPropertyOf dcterms:isPartOf;
           vs:term_status "unstable".
cbo:owner a owl:ObjectProperty;
          rdfs:comment "Links an item or collection to the agent that owns it."@en;
          rdfs:domain cbo:Collection,
                      cbo:Item;
          rdfs:label "owner"@en;
          rdfs:range foaf:Agent;
          vs:term_status "unstable".
cbo:ownerOf a owl:ObjectProperty;
            rdfs:comment "Links an agent to an owned item or collection."@en;
            rdfs:domain foaf:Agent;
            rdfs:label "owner of"@en;
            rdfs:range cbo:Collection,
                       cbo:Item;
            vs:term_status "unstable".
