RoleNounAnnotations

From W3C Wiki
  • I think an accessibility label ontology would ease some of the mismatch between RoleNoun and HasPropertyOf: i.e., one with properties that identified (unidirectional) RoleNoun labels useful for UIs and the syntactic sugar that N3 has with "is" and "of" -- Chimezie (see 09/09/07 swig log)

For example (see has_part live):


@prefix ui: <http://esw.w3.org/topic/RoleNounAnnotations#>
<http://www.obofoundry.org/ro/ro.owl#has_part> 
  rdfs:label "has_part";
  a rdf:Property;
  ui:roleNounLabel "part";
  ui:roleNounPrefix "has"
  ui:inverseRoleNounSuffix "of"


The ontology in OWL/Turtle:


@prefix ui <http://esw.w3.org/topic/RoleNounAnnotations#>

ui:roleNounLabel 
  a owl:AnnotationProperty;
  rdfs:label "RoleNoun label"

ui:roleNounPrefix 
  a owl:AnnotationProperty;
  rdfs:label "RoleNoun prefix"

ui:inverseRoleNounSuffix 
  a owl:AnnotationProperty;
  rdfs:label "Role Noun suffix for the inverse property"

ui:inverseRoleNounPrefix 
  a owl:AnnotationProperty;
  rdfs:label "Role Noun prefix for the inverse property"


<nowiki>