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 1 year 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

@phtyson — Instead of using the > to quote the Turtle blocks set apart by In activitystreams2.owl: and should be, it would be better to precede and follow those blocks with quote fences, i.e., lines containing only 3 backticks, ```.

This has the extra bonus of codefencing the @en instances, which currently tag that GitHub user who has not chosen to participate in this conversation.

TallTed avatar Jul 03 '24 19:07 TallTed

This makes sense. I will take some time to make a patch to the OWL file, and we can approve at our next CG meeting. We'll need to figure out how to push the file to w3c.org.

evanp avatar Jul 19 '24 16:07 evanp