UNPKG

graphdb

Version:

Javascript client library supporting GraphDB and RDF4J REST API.

19 lines (18 loc) 268 B
"use strict"; /** * Data types from the XSD schema. * * @readonly * @enum {string} * * @author Mihail Radkov */ var XSD = { INTEGER: 'xsd:integer', DECIMAL: 'xsd:decimal', STRING: 'xsd:string', BOOLEAN: 'xsd:boolean' }; module.exports = { XSD: XSD };