Change PropertyKey class name and namespace (#386)

* Change PropertyKey class name and namespace

* Fix prefix/namespace error found in code review.
This commit is contained in:
Brian Lowe 2023-05-08 15:25:46 +03:00 committed by GitHub
parent c527de5ad8
commit a22aa37394
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 31468 additions and 31469 deletions

View file

@ -1,39 +1,38 @@
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix prop-data: <http://vivoweb.org/ontology/core/properties/individual#> .
@prefix prop: <http://vivoweb.org/ontology/core/properties/vocabulary#> .
@prefix uil: <http://vivoweb.org/ontology/vitro/ui-label/vocabulary#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
prop:hasPackage rdf:type owl:DatatypeProperty ;
rdfs:domain prop:PropertyKey ;
uil:hasPackage rdf:type owl:DatatypeProperty ;
rdfs:domain uil:UILabel ;
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 " ;
uil:hasKey rdf:type owl:DatatypeProperty ;
rdfs:comment "value of the key" ;
rdfs:domain uil:UILabel ;
rdfs:label "has key" ;
rdfs:range xsd:string .
prop:hasTheme rdf:type owl:DatatypeProperty ;
rdfs:domain prop:PropertyKey ;
uil:hasTheme rdf:type owl:DatatypeProperty ;
rdfs:domain uil:UILabel ;
rdfs:label "has theme" ;
rdfs:range xsd:string .
prop:PropertyKey rdf:type owl:Class ;
uil:UILabel 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" ;
uil:ftlUrl rdf:type owl:DatatypeProperty ;
rdfs:comment "Points to the Freemarker template (.ftl) file containing the key." ;
rdfs:domain uil:UILabel ;
rdfs:label ".ftl file url" ;
rdfs:range xsd:anyURI .
prop:hasApp rdf:type owl:DatatypeProperty ;
rdfs:domain prop:PropertyKey ;
uil:hasApp rdf:type owl:DatatypeProperty ;
rdfs:domain uil:UILabel ;
rdfs:label "has application" ;
rdfs:range xsd:string .