activitystreams
activitystreams copied to clipboard
`as:name` schema declaration should use `rdfs:comment` property instead of non-existent `rdfs:name`
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 — 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.
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.