@prefix fentry: <http://www.essepuntato.it/2014/03/fentry/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

fentry:
  skos:prefLabel "Ontologia Scheda F"@it, "F Entry (Scheda F) Ontology"@en ;
  a owl:Ontology, skos:ConceptScheme ;
  skos:hasTopConcept fentry:shot .

fentry:shot
  rdfs:label "Scatto Fotografico"@it, "Shot"@en ;
  skos:inScheme fentry: ;
  a skos:Concept, owl:Class ;
  rdfs:comment "The realisation of a photograph - it is strictly related with the act of taking the picture by someone."@en, "La realizzazione di una fotografia, è strettamente correlata all'atto di scattare la foto da parte di qualcuno."@it ;
  rdfs:subClassOf <http://purl.org/vocab/frbr/core#Expression> ;
  skos:prefLabel "Scatto Fotografico"@it, "Shot"@en ;
  skos:topConceptOf fentry: .

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 .

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

fentry:describes rdfs:range fentry:shot .
