rudof_rdf/rdf_core/vocabs/rdfs.rs
1use crate::rdf_core::vocabs::RdfVocabulary;
2use crate::vocab_term;
3
4pub struct RdfsVocab;
5
6/// RDFS vocabulary terms.
7impl RdfVocabulary for RdfsVocab {
8 const BASE: &'static str = "http://www.w3.org/2000/01/rdf-schema#";
9}
10
11vocab_term!(RdfsVocab, RDFS_LABEL, "label");
12vocab_term!(RdfsVocab, RDFS_CLASS, "Class");
13vocab_term!(RdfsVocab, RDFS_SUBCLASS_OF_STR, "subClassOf");