@faubulous/mentor-rdf
Version:
A library for working with RDF vocabularies with support for basic RDFS and OWL inference.
36 lines (35 loc) • 2.48 kB
TypeScript
import * as n3 from "n3";
/** Namespace URI of the SKOS_XL vocabulary. */
export declare const _SKOS_XL = "http://www.w3.org/2008/05/skos-xl#";
export declare const SKOS_XL: {
skos_xl: string;
/** A special class of lexical entities. */
Label: string;
/** The property skosxl:altLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:altLabel. */
altLabel: string;
/** The property skosxl:hiddenLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:hiddenLabel. */
hiddenLabel: string;
/** The property skosxl:labelRelation is used for representing binary ('direct') relations between instances of the class skosxl:Label. */
labelRelation: string;
/** The property skosxl:literalForm is used to give the literal form of an skosxl:Label. */
literalForm: string;
/** The property skosxl:prefLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:prefLabel. */
prefLabel: string;
};
/** Namespace URI of the skos_xl vocabulary. */
export declare const _skos_xl: n3.NamedNode<"http://www.w3.org/2008/05/skos-xl#">;
export declare const skos_xl: {
skos_xl: n3.NamedNode<"http://www.w3.org/2008/05/skos-xl">;
/** A special class of lexical entities. */
Label: n3.NamedNode<"http://www.w3.org/2008/05/skos-xl#Label">;
/** The property skosxl:altLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:altLabel. */
altLabel: n3.NamedNode<"http://www.w3.org/2008/05/skos-xl#altLabel">;
/** The property skosxl:hiddenLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:hiddenLabel. */
hiddenLabel: n3.NamedNode<"http://www.w3.org/2008/05/skos-xl#hiddenLabel">;
/** The property skosxl:labelRelation is used for representing binary ('direct') relations between instances of the class skosxl:Label. */
labelRelation: n3.NamedNode<"http://www.w3.org/2008/05/skos-xl#labelRelation">;
/** The property skosxl:literalForm is used to give the literal form of an skosxl:Label. */
literalForm: n3.NamedNode<"http://www.w3.org/2008/05/skos-xl#literalForm">;
/** The property skosxl:prefLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:prefLabel. */
prefLabel: n3.NamedNode<"http://www.w3.org/2008/05/skos-xl#prefLabel">;
};