@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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

skos:Concept a owl:Class .
<http://w3id.org/write/ontology/description>
  rdfs:range xsd:string ;
  rdfs:comment "Descrizione testuale della risorsa."@it, "Textual description of the resource."@en ;
  skos:prefLabel "descrizione"@it, "description"@en ;
  a skos:Concept, owl:DatatypeProperty ;
  rdfs:label "description"@en, "descrizione"@it ;
  skos:inScheme <http://w3id.org/write/ontology/> .

owl:DatatypeProperty
  rdfs:label "Proprieta datatype"@it, "DatatypeProperty"@en ;
  a rdfs:Class .

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

rdfs:range
  skos:definition "Il codominio della proprietà."@it, "A range of the subject property."@en ;
  rdfs:label "codominio"@it, "range"@en .

<http://w3id.org/write/ontology/>
  skos:prefLabel "Ontologia WRITE"@it, "WRITE Ontology"@en ;
  a owl:Ontology, skos:ConceptScheme .

