RDFtk: Core

core This crate provides an implementation of the RDF abstract syntax along with a Resource type that provides a builder-like experience for models.

crates.io docs.rs

From RDF 1.1 Concepts and Abstract Syntax;

The core structure of the abstract syntax is a set of triples, each consisting of a subject, a predicate and an object. A set of such triples is called an RDF graph. An RDF graph can be visualized as a node and directed-arc diagram, in which each triple is represented as a node-arc-node link.

rdf-graph

There can be three kinds of nodes in an RDF graph: IRIs, literals, and blank nodes.

In this library the triple, or statement, as well as subject, predicate, and object types are in the module statement. Literal's as objects are supported in the literal module. Traits that describe graphs are provided by the graph module.

Additional features are provided such as support for data sets (module model.data_set) as well as support for extensions to the core RDF abstract model such as RDF-star.

Example

```rust use field33rdftkcoretemporaryfork::{Literal, Statement, StatementList, SubjectNode}; use field33rdftkiritemporaryfork::IRI; use std::rc::Rc; use std::str::FromStr;

pub fn make_statements() -> StatementList { let mut statements: StatementList = Default::default();

statements.push(Statement::new(
    SubjectNode::named(IRI::from_str("http://en.wikipedia.org/wiki/Tony_Benn").unwrap()),
    IRI::from_str("http://purl.org/dc/elements/1.1/title").unwrap(),
    Literal::new("Tony Benn").into(),
).into());
// ...
statements

} ```

Changes

Version 0.3.1

Version 0.3.0

Version 0.2.4

Version 0.2.3

Version 0.2.2

Version 0.2.1

Version 0.2.0

Version 0.1.15

Version 0.1.14

Version 0.1.13

Version 0.1.12

Version 0.1.11

Version 0.1.10

Version 0.1.9

Version 0.1.8

Version 0.1.7

Version 0.1.6

Version 0.1.5

Version 0.1.4

Version 0.1.3

Version 0.1.2

Version 0.1.1

Version 0.1.0

TODO

TBD

RDF