Skip to content

Commit 74b9ed3

Browse files
committed
sample data model and class notes
0 parents  commit 74b9ed3

File tree

4 files changed

+488
-0
lines changed

4 files changed

+488
-0
lines changed

.gitattributes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
7+
# Standard to msysgit
8+
*.doc diff=astextplain
9+
*.DOC diff=astextplain
10+
*.docx diff=astextplain
11+
*.DOCX diff=astextplain
12+
*.dot diff=astextplain
13+
*.DOT diff=astextplain
14+
*.pdf diff=astextplain
15+
*.PDF diff=astextplain
16+
*.rtf diff=astextplain
17+
*.RTF diff=astextplain

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Windows image file caches
2+
Thumbs.db
3+
ehthumbs.db
4+
5+
# Folder config file
6+
Desktop.ini
7+
8+
# Recycle Bin used on file shares
9+
$RECYCLE.BIN/
10+
11+
# Windows Installer files
12+
*.cab
13+
*.msi
14+
*.msm
15+
*.msp
16+
17+
# Windows shortcuts
18+
*.lnk
19+
20+
# =========================
21+
# Operating System Files
22+
# =========================
23+
24+
# OSX
25+
# =========================
26+
27+
.DS_Store
28+
.AppleDouble
29+
.LSOverride
30+
31+
# Thumbnails
32+
._*
33+
34+
# Files that might appear on external disk
35+
.Spotlight-V100
36+
.Trashes
37+
38+
# Directories potentially created on remote AFP share
39+
.AppleDB
40+
.AppleDesktop
41+
Network Trash Folder
42+
Temporary Items
43+
.apdisk

datamodel/data_model1.txt

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
employee_id : "ORG001234",
3+
first_name : "",
4+
last_name : "",
5+
6+
phone_number : ["123-456-4323", "829-873-8716"],
7+
hire_date : Date(),
8+
salary : 123345,
9+
commission_pct : 12,
10+
jobs : [{
11+
job_id : 1234,
12+
job_title : "Architect",
13+
min_salary : 1234,
14+
max_salary : 234243244,
15+
start_date : Date(),
16+
end_date : Date(),
17+
department : [{
18+
department_id : 3455,
19+
manager_id : 123,
20+
location : {
21+
location_id : 456,
22+
street_address : "930 Casanova Avenue",
23+
postal_code : 93940,
24+
state_province : "CA",
25+
country : {
26+
country_id : 567,
27+
country_name : "US",
28+
region : {
29+
region_id : 4567,
30+
region_name : "West"
31+
}
32+
}
33+
}
34+
}]
35+
}]
36+
}
37+
38+
39+
country : {
40+
$ref : "country",
41+
$id : "country_id",
42+
$db : "master"
43+
}

0 commit comments

Comments
 (0)