Skip to content

Commit 901db5a

Browse files
authored
Add files via upload
1 parent c1e3386 commit 901db5a

9 files changed

Lines changed: 5358 additions & 0 deletions

File tree

css/boot.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 807 additions & 0 deletions
Large diffs are not rendered by default.

js/bus_terms.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
var bus_terms = {
2+
"Person First Name": {
3+
"short":"Name",
4+
"name":"Name",
5+
"bus_desc":"Definition of the name",
6+
"datatype":"Name",
7+
"category":"Party",
8+
"mandatory":"Y",
9+
"default":"",
10+
"mask_desc":"First letter uppper followed by lower cases, max 50 characters",
11+
"mask": "",
12+
"subcategory":"Personal Identificaton",
13+
"tags":"#GDPR"
14+
},
15+
"Person Last Name": {
16+
"short":"Name",
17+
"name":"Name",
18+
"bus_desc":"Definition of the name",
19+
"datatype":"Name",
20+
"category":"Party",
21+
"mandatory":"Y",
22+
"default":"",
23+
"mask_desc":"First letter uppper followed by lower cases, max 50 characters",
24+
"mask": "",
25+
"subcategory":"Personal Identificaton",
26+
"tags":"#GDPR"
27+
}
28+
}

js/constypes.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
var constypes = {
2+
"Index": {
3+
"desc":"Standard numeric data type"
4+
},
5+
"Unique Index": {
6+
"desc":"Standard numeric data type"
7+
},
8+
"Unique Constraint": {
9+
"desc":"Standard numeric data type"
10+
},
11+
"Key": {
12+
"desc":"Standard numeric data type"
13+
}
14+
}

js/datatypes.js

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
var datatypes = {
2+
"Numeric": {
3+
"desc":"Standard numeric data type"
4+
},
5+
"Money": {
6+
"desc":"Numeric data type for money"
7+
},
8+
"ID": {
9+
"desc":"Data type used only for surrogate ID"
10+
},
11+
"Natural Key": {
12+
"desc":"Varchar data type used for natural keys."
13+
},
14+
"Short Text": {
15+
"desc":"Custom short text up to 50 chars."
16+
},
17+
"Long Text": {
18+
"desc":"Custom long text up to 4000 chars."
19+
},
20+
"E-Mail": {
21+
"desc":"Email data type"
22+
},
23+
"Phone": {
24+
"desc":"Varchar data type for phone"
25+
},
26+
"Percentage": {
27+
"desc":"Percentage data type 0-100"
28+
},
29+
"Boolean": {
30+
"desc":"true/false data type."
31+
},
32+
"Flag": {
33+
"desc":"One char data type with values Y/N"
34+
},
35+
"Name": {
36+
"desc":"Short text up to 100 chars used for names."
37+
},
38+
"Description": {
39+
"desc":"Shosrt text up to 200 chars used for descriptions"
40+
},
41+
"Date From": {
42+
"desc":"Data type for dates from"
43+
},
44+
"Date To": {
45+
"desc":"Data type for dates to"
46+
},
47+
"Date": {
48+
"desc":"Custom date data type"
49+
},
50+
"Datetime": {
51+
"desc":"Date time data type"
52+
}
53+
}

0 commit comments

Comments
 (0)