From bc359588e7ddd0b320022c87cbb16f23271b5f91 Mon Sep 17 00:00:00 2001 From: chenejac Date: Tue, 29 Nov 2022 15:55:40 +0100 Subject: [PATCH] correction - changing of format of the vocabulary (from n3 to ttl) --- .../rdf/tbox/firsttime/UILabelsVocabulary.ttl | 117 ++++++------------ 1 file changed, 39 insertions(+), 78 deletions(-) diff --git a/home/src/main/resources/rdf/tbox/firsttime/UILabelsVocabulary.ttl b/home/src/main/resources/rdf/tbox/firsttime/UILabelsVocabulary.ttl index a12a76c35..12ad7749c 100644 --- a/home/src/main/resources/rdf/tbox/firsttime/UILabelsVocabulary.ttl +++ b/home/src/main/resources/rdf/tbox/firsttime/UILabelsVocabulary.ttl @@ -1,78 +1,39 @@ - . - . - . - . - "ftl file url" . - . - "Points to the FTL file containing the key" . - . - . - "Properties file url " . - . - "Value of the key" . - . - . - . - "has theme" . - . - . - . - "has package" . - . - . - . - "has application" . - . - . - . - . - . - . - "ftl file url" . - . - "Points to the FTL file containing the key" . - . - . - "Propertie file url " . - . - "Value of the key" . - . - . - . - "has theme" . - . - . - . - "has package" . - . - . - . - "has application" . - . - . - . - . - . - . - "ftl file url" . - . - "Points to the FTL file containing the key" . - . - . - "Propertie file url " . - . - "Value of the key" . - . - . - . - "has theme" . - . - . - . - "has package" . - . - . - . - "has application" . - . - . +@prefix owl: . +@prefix rdf: . +@prefix prop-data: . +@prefix prop: . +@prefix xsd: . +@prefix skos: . +@prefix rdfs: . + +prop:hasPackage rdf:type owl:DatatypeProperty ; + rdfs:domain prop:PropertyKey ; + rdfs:label "has package" ; + rdfs:range xsd:string . + +prop:hasKey rdf:type owl:DatatypeProperty ; + rdfs:comment "Value of the key" ; + rdfs:domain prop:PropertyKey ; + rdfs:label "Propertie file url " ; + rdfs:range xsd:string . + +prop:hasTheme rdf:type owl:DatatypeProperty ; + rdfs:domain prop:PropertyKey ; + rdfs:label "has theme" ; + rdfs:range xsd:string . + +prop:PropertyKey rdf:type owl:Class ; + rdfs:label skos:Concept ; + rdfs:subClassOf owl:Thing ; + rdfs:subClassOf skos:Concept . + +prop:ftlUrl rdf:type owl:DatatypeProperty ; + rdfs:comment "Points to the FTL file containing the key" ; + rdfs:domain prop:PropertyKey ; + rdfs:label "ftl file url" ; + rdfs:range xsd:anyURI . + +prop:hasApp rdf:type owl:DatatypeProperty ; + rdfs:domain prop:PropertyKey ; + rdfs:label "has application" ; + rdfs:range xsd:string . \ No newline at end of file