@prefix odi: <https://purl.org/ebr/odi#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .

odi:
  rdfs:label "Ontology of Italo Calvino's Destini Incrociati"@en, "Ontologia dei Destini incrociati di Italo Calvino"@it ;
  skos:prefLabel "Ontology of Italo Calvino's Destini Incrociati"@en, "Ontologia dei Destini incrociati di Italo Calvino"@it ;
  a owl:Ontology, skos:ConceptScheme .

odi:hasTitle rdfs:domain odi:Chapter .
owl:Class
  rdfs:label "Classe"@it, "Class"@en ;
  a rdfs:Class .

rdfs:subClassOf
  skos:definition "Il soggetto è una sottoclasse di una classe."@it, "The subject is a subclass of a class."@en ;
  rdfs:label "sottoclasseDi"@it, "subClassOf"@en .

odi:Story rdfs:subClassOf odi:Chapter .
odi:hasChapter rdfs:range odi:Chapter .
odi:Chapter
  a owl:Class, skos:Concept ;
  rdfs:comment "Is a chapter of the book that contains a story."@en, "È un capitolo del libro che contiene una storia."@it ;
  skos:inScheme odi: ;
  skos:prefLabel "Capitolo"@it, "Chapter"@en ;
  rdfs:label "Chapter"@en, "Capitolo"@it ;
  rdfs:subClassOf odi:Edition .

rdfs:comment
  rdfs:comment "Una descrizione della risorsa oggetto."@it, "A description of the subject resource."@en ;
  rdfs:label "commento"@it, "comment"@en .

odi:Edition
  rdfs:label "Edizione"@it, "Edition"@en ;
  skos:prefLabel "Edizione"@it, "Edition"@en ;
  a owl:Class, skos:Concept .

odi:includes rdfs:domain odi:Chapter .
