@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:Agent a owl:Class;
          rdfs:comment "A person, organization, or intelligence in a comic universe."@en;
          rdfs:label "Agent";
          rdfs:subClassOf cbo:Thing;
          vs:term_status "unstable".
cbo:Event a owl:Class;
          rdfs:comment "An event in a comic universe."@en;
          rdfs:label "Event"@en;
          rdfs:subClassOf cbo:Thing;
          vs:term_status "unstable".
cbo:Location a owl:Class;
             rdfs:comment "A location in a comic universe."@en;
             rdfs:label "Location"@en;
             rdfs:subClassOf cbo:Thing;
             vs:term_status "unstable".
cbo:Object a owl:Class;
           rdfs:comment "An object in a comic universe."@en;
           rdfs:label "Object"@en;
           rdfs:subClassOf cbo:Thing;
           vs:term_status "unstable".
cbo:Thing a owl:Class;
          rdfs:comment "A thing in a comic universe."@en;
          rdfs:label "Thing";
          rdfs:subClassOf cbo:ComicUniverse;
          vs:term_status "unstable".
cbo:appearance a owl:ObjectProperty;
               rdfs:comment "Describes the appearance of a comic universe element within a comic work."@en;
               rdfs:domain cbo:Comic;
               rdfs:label "appearance"@en;
               rdfs:range cbo:Thing;
               vs:term_status "unstable".
cbo:universe a owl:ObjectProperty;
             rdfs:comment "Links a thing to a comic universe."@en;
             rdfs:domain cbo:Thing;
             rdfs:label "universe"@en;
             rdfs:range cbo:ComicUniverse;
             vs:term_status "unstable".
