Source

gom/gom.js

//
// $Id$
//


/**
 *  Supported domains
 */
export const eDomain = Object.freeze({
    GEO: "geo",
    ACT: "act",
    BOQ: "boq",
    DOC: "doc",
    TYP: "typ",    
    RES: "res",
    CST: "cst",     // custom
    ALL: "all"
});

/**
 *  Supported data types.
 */
const eDataType = Object.freeze({
    STRING: 'xs:string',
    LONG: 'xs:long',
    INTEGER: 'xs:integer',
    DOUBLE: 'xs:double',
    FLOAT: 'xs:float',
    BOOLEAN: 'xs:boolean',
    DATE: 'xs:date',
    DATETIME: 'xs:dateTime',
    ID: 'xs:ID',
    IDREF: 'xs:IDREF',
    ANYURI: 'xs:anyURI',
    OBJECT: 'xs:object'
});