rdf2hk
Version:
This library converts RDF to Hyperknowledge Description
16 lines (15 loc) • 804 B
JavaScript
/*
* Copyright (c) 2016-present, IBM Research
* Licensed under The MIT License [see LICENSE for details]
*/
;
// RDFS
exports.TYPE_URI = "<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>";
exports.LABEL_URI = "<http://www.w3.org/2000/01/rdf-schema#label>";
exports.RANGE_URI = "<http://www.w3.org/2000/01/rdf-schema#range>";
exports.DOMAIN_URI = "<http://www.w3.org/2000/01/rdf-schema#domain>";
exports.SUBCLASSOF_URI = "<http://www.w3.org/2000/01/rdf-schema#subClassOf>";
exports.SUBPROPERTYOF_URI = "<http://www.w3.org/2000/01/rdf-schema#subPropertyOf>";
exports.LANG_STRING_URI = "<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>";
exports.DATATYPE_URI = "<http://www.w3.org/2000/01/rdf-schema#Datatype>";
exports.LITERAL_URI = "<http://www.w3.org/2000/01/rdf-schema#Literal>";