Skip to main content
Module

x/ldkit/namespaces/rdfs.ts

LDkit - Linked Data query toolkit for TypeScript developers
Latest
File
import { createNamespace } from "../library/namespace.ts";
/** * The RDF Schema vocabulary (RDFS) * * `@rdfs: <http://www.w3.org/2000/01/rdf-schema#>`, */export const rdfs = createNamespace( { iri: "http://www.w3.org/2000/01/rdf-schema#", prefix: "rdfs:", terms: [ "Class", "Container", "ContainerMembershipProperty", "Datatype", "Literal", "Resource", "comment", "domain", "isDefinedBy", "label", "member", "range", "seeAlso", "subClassOf", "subPropertyOf", ], } as const,);