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:
parent
c527de5ad8
commit
a22aa37394
14 changed files with 31468 additions and 31469 deletions
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -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 .
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue