Support for RDF 1.2

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Support for RDF 1.2

Eric  Liu
Hello,

Can I ask if there are plan to support RDF 1.2? Or is it already supported ?

What is the roadmap for the support? Timeline ?

Thanks!
Reply | Threaded
Open this post in threaded view
|

Re: Support for RDF 1.2

Jiba
Administrator
Hello,

What are exactly the new features of RDF 1.2? After a quick search, I've identified 3 of them :

 * VERSION identifier in RDF files
 * triple terms as object
 * JSON as object (possibly not specific to RDF 1.2, but not supported and possibly interesting).

Did I missed something? Which features are the most interesting?

Jiba
Reply | Threaded
Open this post in threaded view
|

Re: Support for RDF 1.2

Eric  Liu
Hello,

My understanding is that RDF 1.2 is largely intended to align with RDF-star. If it helps, here’s the official specification for more detail: https://w3c.github.io/rdf-new/spec/

In essence, RDF 1.2 introduces support for using a triple as a term within another triple (in the object position), adds directional language-tagged strings for better text presentation, and provides a way to explicitly indicate the RDF version used in a dataset.

Overall, these updates seem aimed at improving data provenance and traceability, which should make it easier to understand and trust data sources.
Reply | Threaded
Open this post in threaded view
|

Re: Support for RDF 1.2

Jiba
Administrator
Hello,

I have implemented some RDF 1.2 feature in the development version :
 * VERSION in NTriple format
 * triple terms as object (can only be saved in NTriple format, not yet RDF/XML)

You can create a tripe term as follows:

individual.reifies.append(TripleTerm((s, p, o), onto))

Jiba