all files / sparql/ prefix-index.js

100% Statements 3/3
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17                               
'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;