-
Notifications
You must be signed in to change notification settings - Fork 16
metadata mismatch in :prohibit concept #319
Copy link
Copy link
Open
Labels
Description
The :prohibit statement looks jumbled, with rdfs:label seemingly indicating a note; skos:note indicating a definition; and skos:definition indicating another note. Also, if the 'prefer...' statement is a direction to another concept by label, it should perhaps indicate "Has prohibitions" as the correct target label.
@prefix : <http://www.w3.org/ns/odrl/2/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:prohibit
a :ConflictTerm, owl:NamedIndividual, skos:Concept;
rdfs:isDefinedBy odrl: ;
rdfs:label "Prefer Prohibitions"@en ;
skos:definition "Prohibitions take preference over permissions."@en ;
skos:note "Used to determine policy conflict outcomes."@en .
consider changing to:
:prohibit
a :ConflictTerm, owl:NamedIndividual, skos:Concept;
rdfs:isDefinedBy odrl: ;
rdfs:label "Prohibit"@en ;
skos:definition "Used to determine policy conflict outcomes."@en ;
skos:note "Prefer Has prohibitions. Prohibitions take preference over permissions."@en .
Reactions are currently unavailable