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/04 10:33:00 UTC

[jira] [Created] (JENA-2080) Add RDF-start support to TriX.

Andy Seaborne created JENA-2080:
-----------------------------------

             Summary: Add RDF-start 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
             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)