You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jena.apache.org by "Andy Seaborne (Jira)" <ji...@apache.org> on 2021/04/06 13:11:00 UTC

[jira] [Resolved] (JENA-2080) Add RDF-star support to TriX.

     [ https://issues.apache.org/jira/browse/JENA-2080?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andy Seaborne resolved JENA-2080.
---------------------------------
    Resolution: Done

> Add RDF-star support to TriX.
> -----------------------------
>
>                 Key: JENA-2080
>                 URL: https://issues.apache.org/jira/browse/JENA-2080
>             Project: Apache Jena
>          Issue Type: Improvement
>            Reporter: Andy Seaborne
>            Assignee: Andy Seaborne
>            Priority: Minor
>             Fix For: Jena 4.1.0
>
>
> We can reuse {{<triple>}} for embedded use:
> {noformat}
> PREFIX :        <http://example/> 
> <<:s :p :o>> :p :o1 .
> {noformat}
> becomes
> {noformat}
> <trix xmlns="http://www.w3.org/2004/03/trix/trix-1/">
>   <graph>
>     <triple>
>       <triple>
>         <uri>http://example/s</uri>
>         <uri>http://example/p</uri>
>         <uri>http://example/o</uri>
>       </triple>
>       <uri>http://example/p</uri>
>       <uri>http://example/o1</uri>
>     </triple>
>   </graph>
> </trix>
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)