@@ -4,21 +4,60 @@ export const JSON_TYPE="object"
44export const NUMBER_TYPE = "number"
55export const BOOLEAN_TYPE = "boolean"
66export const DATE_TYPE = "string"
7+ export const RDF_DATA_TYPE_PREFIX = "rdf:"
78export const XSD_DATA_TYPE_PREFIX = "xsd:"
89export const XDD_DATA_TYPE_PREFIX = "xdd:"
910export const SYS_UNIT_TYPE_PREFIX = "sys:"
10- export const XSD_STRING = "xsd:string" ; ;
11+ export const XSD_STRING = "xsd:string"
1112export const XSD_ANY_URI = "xsd:anyURI"
13+ export const XSD_NMTOKEN = "xsd:NMTOKEN" // XML NMTOKENs
14+ export const XSD_NAME = "xsd:Name" // XML Names
15+ export const XSD_NCNAME = "xsd:NCName" // XML NCNames
16+ //Encoded binary data
17+ export const XSD_HEXBINARY = "xsd:hexBinary" //Hex-encoded binary data
18+ export const XSD_BASE64BINARY = "xsd:base64Binary" //Base64-encoded binary data
19+
20+ // Limited-range integer numbers
21+ export const XSD_BYTE = "xsd:byte" // -128…+127 (8 bit)
22+ export const XSD_SHORT = "xsd:short" // -32768…+32767 (16 bit)
23+ export const XSD_INT = "xsd:int" // -2147483648…+2147483647 (32 bit) |
24+ export const XSD_LONG = "xsd:long" // -9223372036854775808…+9223372036854775807 (64 bit) |
25+ export const XSD_UNSINGNEDBYTE = "xsd:unsignedByte" // 0…255 (8 bit) |
26+ export const XSD_UNSIGNEDSHORT = "xsd:unsignedShort" //| 0…65535 (16 bit) |
27+ export const XSD_UNSIGNEDINT = "xsd:unsignedInt" //| 0…4294967295 (32 bit) |
28+ export const XSD_UNSIGNEDLONG = "xsd:unsignedLong" // | 0…18446744073709551615 (64 bit) |
29+ export const XSD_POSITIVE_INTEGER = "xsd:positiveInteger" // | Integer numbers >0 |
30+ export const XSD_NONNEGATIVEINTEGER = "xsd:nonNegativeInteger" // | Integer numbers ≥0 |
31+ export const XSD_NEGATIVEINTEGER = "xsd:negativeInteger" // | Integer numbers <0 |
32+ export const XSD_NONPOSITIVEINTEGER = "xsd:nonPositiveInteger" //Integer numbers ≤0
33+
1234export const XDD_URL = "xdd:url"
13- export const XSD_FLOAT = "xsd:float"
35+ export const XSD_NORMALIZED_STRING = "xsd:normalizedString"
36+ export const XSD_TOKEN = "xsd:NMTOKEN"
1437export const XSD_DECIMAL = "xsd:decimal"
15- export const XSD_POSITIVE_INTEGER = "xsd:positiveInteger"
38+ export const XSD_DOUBLE = "xsd:double"
39+ export const XSD_FLOAT = "xsd:float "
40+
1641export const XSD_INTEGER = "xsd:integer"
1742export const XSD_DATE_TIME = "xsd:dateTime"
43+ export const XSD_DATE_TIMESTAMP = "xsd:dateTimeStamp"
1844export const XSD_G_YEAR = "xsd:gYear"
45+ export const XSD_TIME = "xsd:time"
46+ export const XSD_G_YEAR_MONTH = "xsd:gYearMonth"
47+ export const XSD_G_YEAR_MONTH_DURACTION = "xsd:yearMonthDuration"
48+ export const XSD_G_DAY_TIME_DURACTION = "xsd:dayTimeDuration"
49+
50+ export const XSD_G_MONTH = "xsd:gMonth"
51+ export const XSD_G_MONTH_DAY = "xsd:gMonthDay"
52+ export const XSD_G_DAY = "xsd:gDay"
53+ export const XSD_TIME_DURATION = "xsd:duration"
1954export const XSD_DATE = "xsd:date"
2055export const XSD_BOOLEAN = "xsd:boolean"
2156export const XSD_LANGUAGE = "xsd:language"
57+ export const RDF_LANGSTRING = "rdf:langString"
58+
59+
60+ //rdf:langString
2261
2362export const SYS_JSON_TYPE = "sys:JSON"
2463
0 commit comments