athene-owlapi 0.0.1

This package provides a Rust API for OWL that adheres as closely as possible to the OWL 2 Web Ontology Language Structural Specification.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use rdftk_iri::vocab::VOCABULARY_RDF;

// ------------------------------------------------------------------------------------------------
// Public Functions ❯ Datatypes
// ------------------------------------------------------------------------------------------------

//
// The IRI for the `rdf:PlainLiteral` datatype.
//
// This datatype was introduced in it's own specification, [rdf:PlainLiteral: A
// Datatype for RDF Plain Literals](https://www.w3.org/TR/rdf-plain-literal/) and
// used in OWL 2.
//
make_iri_function!(plain_literal_iri => VOCABULARY_RDF:PlainLiteral);