w3c / activitystreams

Activity Streams 2.0
https://www.w3.org/TR/activitystreams-core/
Other
276 stars 60 forks source link

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

Open phtyson opened 3 days ago

phtyson commented 3 days ago

Please Indicate One:

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 ;
TallTed commented 3 days ago

@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.