Provides the ability to read and write Smithy models to and from the W3C's Resource Description Framework (RDF).
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.
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(); ```
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(); ```
Version 0.1.9
Version 0.1.8
Version 0.1.7
Version 0.1.6
Version 0.1.5
Version 0.1.4
ModelWriter
implementationiri_to_shape
.Version 0.1.3
HasIdentity
and HasTraits
.Version 0.1.2
rdftk_iri
, which involved changes. SmithUrn
type and use IRIRef
directly instead.Version 0.1.1
Model
to RDF mapping; document this in the model
module, and implement model::model_to_rdf
.Version 0.1.0
SmithyUrn
type as a URI for RDF usage.