src/sparql/prefix-index.js File
'use strict'; const PrefixIndex = { 'dct': 'http://purl.org/dc/terms/', 'foaf': 'http://xmlns.com/foaf/0.1/', 'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', 'rdfs': 'http://www.w3.org/2000/01/rdf-schema#', 'rel': 'http://www.perceive.net/schemas/relationship/', 'xsd': 'http://www.w3.org/2001/XMLSchema#' }; /** * Holds predefined prefix definitions for easy access * * @class PrefixIndex */ export default PrefixIndex;