Atelier: crate atelier_rdf

Provides the ability to read and write Smithy models to and from the W3C's Resource Description Framework (RDF).

crates.io docs.rs

This crate provides a common mapping between the Smithy semantic model, and an RDF vocabulary. This mapping can be used to serialize the resulting RDF graph to one of the standard RDF representations, or store in a graph store. The mapping allows for models to be augmented by additional facts in the RDF graph and allows for inference over the model in it's RDF form.

Example - Mapping

The following simply constructs an RDF Graph from a provided model.

```rust use ateliercore::model::Model; use atelierrdf::model::modeltordf;

let model = makemodel(); let rdfgraph = modeltordf(&model, None).unwrap(); ```

Example - Writer

This example writes the provided model in RDF's Turtle serialization representation.

```rust use ateliercore::model::Model; use ateliercore::io::ModelWriter; use atelier_rdf::writer::RdfWriter; use std::io::stdout;

let model = make_model(); let mut writer = RdfWriter::default(); writer.write(&mut stdout(), &model).unwrap(); ```

Changes

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