-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase_schema.json
More file actions
executable file
·64 lines (64 loc) · 1.54 KB
/
Copy pathdatabase_schema.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"Countries" : {
"collection" : "countries",
"schema": {
"_id": "ObjectId",
"code": "String",
"name": "String"
}
},
"Exercices" : {
"collection": "exercices",
"schema": {
"_id": "ObjectId",
"libelle": "String"
}
},
"Users": {
"collection": "users",
"schema": {
"_id": "ObjectId",
"name": "String",
"firstName": "String",
"login": "String",
"mdp": "String",
"function": "String",
"office": "String",
"date_naiss": "String",
"adresse1": "String",
"adresse2": "String",
"cp": "String",
"city": "String",
"country": {
"type": "ObjectId",
"ref": "Countries"
},
"mobile_phone": "String",
"home_phone": "String"
}
},
"Formations": {
"collection": "formations",
"schema": {
"_id": "ObjectId",
"libelle": "String",
"duree": "String",
"plan_cours": "String",
"prix": "Number",
"formateur": {
"type": "ObjectId",
"ref": "Formateurs"
}
}
},
"Formateurs" : {
"collection": "formateurs",
"schema": {
"_id": "ObjectId",
"nom": "String",
"prenom": "String",
"specialite": "String",
"prix_jour": "Number"
}
}
}