-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDatabase Documents Format v2.txt
More file actions
68 lines (67 loc) · 1.8 KB
/
Database Documents Format v2.txt
File metadata and controls
68 lines (67 loc) · 1.8 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
65
66
67
68
//PAL document design
{
"_id": ObjectId(DEADBEEF0000),
"firstname": "name",
"surname": "lastname",
"dateofbirth": Date(),
"age": 70,
"gender": "M"/"F",
"projects": [
{
"project_name": "project_name",
"status": "project_status"
},
{
"project_name": "project_name",
"status": "project_status"
}
],
"emergency_contact": {
"firstname": "name",
"surname": "lastname",
"relationship": "relation",
"telephone": "number"
},
"gp": {
"firstname": "name",
"surname": "name",
"practice_name": "name",
"street": "text",
"postcode": "DH1 3EE",
"city": "Durham",
"telephone": "number"
},
"disability": True/False,
"conditions": [
"type": "physical"/"mental health"/"sensory"/"cognitive",
"details": "any further details provided",
"diagnosed": True/False
],
"extra_help": True/False,
"carer": "Y"/"N"/"Parttime"/"Fulltime"/"N/A",
"care_coordinator": True/False,
"street": "text",
"postcode": "DH1 3EE",
"city": "Durham",
"telephone": "0123456789",
"mobile": "0012325423",
"email": "example@email.com",
"relationship_status": "married",
"ethnic_origin": "white british",
"sexual_orientation": "",
"employment_status": "retired",
"consent": {
"photo": True/False,
"data": True/False,
"further_contact": True/False,
"promotion": True/False,
"artwork_sale": True/False,
"detail": "any further detail provided"
},
"referral": "name",
"date_registered": Date(),
"venue": "name",
"aap_area": "text",
"electoral_division": "text",
"ward": "text"
}