activitystreams icon indicating copy to clipboard operation
activitystreams copied to clipboard

`as:name` schema declaration should use `rdfs:comment` property instead of non-existent `rdfs:name`

Open phtyson opened this issue 8 months ago • 2 comments

Please Indicate One:

  • [ ] Editorial
  • [ ] Question
  • [ ] Feedback
  • [ ] Blocking Issue
  • [x] Non-Blocking Issue

In activitystreams2.owl:

as:name a owl:DatatypeProperty ;
   rdfs:label "name"@en ;
  rdfs:name "The default, plain-text display name of the object or link."@en ;

should be

 as:name a owl:DatatypeProperty ;
   rdfs:label "name"@en ;
   rdfs:comment "The default, plain-text display name of the object or link."@en ;

phtyson avatar Jul 03 '24 19:07 phtyson