AtomGraph / Web-Client

Generic Linked Data browser and UX component framework. Apache license.
https://hub.docker.com/r/atomgraph/web-client/
Apache License 2.0
121 stars 13 forks source link

JSON-LD transformation allows duplicate properties #62

Closed namedgraph closed 8 years ago

namedgraph commented 9 years ago

Right now rdfxml2json-ld.xsl does not account for duplicate property names. And it should as they are not allowed in JSON (values of such properties should be grouped into an array): https://tools.ietf.org/html/rfc7493#section-2.3

namedgraph commented 8 years ago

Closing as unconfirmed. <xsl:for-each-group select="*" group-by="concat(namespace-uri(), local-name())"> seems to take care of this.