rdf-model 0.3.3

RDF.rs is a Rust framework for working with RDF knowledge graphs.
1
2
3
4
5
6
7
8
9
// This is free and unencumbered software released into the public domain.

use crate::CowTerm;

pub const RDF_TYPE: CowTerm<'static> =
    CowTerm::static_iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type");

pub const RDFS_LABEL: CowTerm<'static> =
    CowTerm::static_iri("http://www.w3.org/2000/01/rdf-schema#label");