Skip to main content
Module

x/ldkit/namespaces/rdf.ts

LDkit - Linked Data query toolkit for TypeScript developers
Latest
File
import { createNamespace } from "../library/namespace.ts";
/** * The RDF Concepts Vocabulary (RDF) * * `@rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>`, */export const rdf = createNamespace( { iri: "http://www.w3.org/1999/02/22-rdf-syntax-ns#", prefix: "rdf:", terms: [ "Alt", "Bag", "CompoundLiteral", "HTML", "JSON", "List", "PlainLiteral", "Property", "Seq", "Statement", "XMLLiteral", "direction", "first", "langString", "language", "nil", "object", "predicate", "rest", "subject", "type", "value", ], } as const,);