UNPKG

@faubulous/mentor-rdf

Version:

A library for working with RDF vocabularies with support for basic RDFS and OWL inference.

36 lines (35 loc) 2.11 kB
import { NamedNode } from '@rdfjs/types'; /** 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: NamedNode; export declare const skos_xl: { skos_xl: NamedNode; /** A special class of lexical entities. */ Label: NamedNode; /** The property skosxl:altLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:altLabel. */ altLabel: NamedNode; /** The property skosxl:hiddenLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:hiddenLabel. */ hiddenLabel: NamedNode; /** The property skosxl:labelRelation is used for representing binary ('direct') relations between instances of the class skosxl:Label. */ labelRelation: NamedNode; /** The property skosxl:literalForm is used to give the literal form of an skosxl:Label. */ literalForm: NamedNode; /** The property skosxl:prefLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:prefLabel. */ prefLabel: NamedNode; };