-
Notifications
You must be signed in to change notification settings - Fork 2
/
mappings.json
71 lines (71 loc) · 2.14 KB
/
mappings.json
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
69
70
71
{
"mappings": {
"properties": {
"id": { "type": "keyword" },
"study_id": { "type": "keyword" },
"registry": { "type": "keyword" },
"last_updated": { "type": "date" },
"date_registered": { "type": "date" },
"acronym": { "type": "text" },
"public_title": { "type": "text" },
"scientific_title": { "type": "text" },
"enrollment_date": { "type": "text" },
"recruitment_status": { "type": "keyword" },
"phase": { "type": "keyword" },
"study_type": { "type": "keyword" },
"study_design": { "type": "text" },
"source_of_support": { "type": "text" },
"target_size": { "type": "text" },
"eligibility_criteria": {
"properties": {
"text": { "type": "text" },
"agemin": { "type": "text" },
"agemax": { "type": "text" },
"sex": { "type": "text"}
}
},
"secondary_ids": { "type": "text" },
"countries": { "type": "keyword" },
"countries_non_standard": { "type": "keyword"},
"health_conditions": {
"properties": {
"code": { "type": "text" },
"description": { "type": "text" }
}
},
"interventions": {
"properties": {
"code": { "type": "text" },
"description": { "type": "text" },
"other_details": { "type": "text" }
}
},
"outcomes": {
"properties": {
"description": { "type": "text" },
"is_primary": { "type": "boolean" },
"timepoints": { "type": "text" },
"timeframe": { "type": "text" }
}
},
"contacts": {
"properties": {
"city": { "type": "text" },
"first_name": { "type": "text" },
"last_name": { "type": "text" },
"affiliation": { "type": "text" },
"country": { "type": "keyword" },
"phone": { "type": "text" },
"address": { "type": "text" },
"email": { "type": "text" }
}
},
"sponsors": {
"properties": {
"name": { "type": "text" },
"is_primary": { "type": "boolean" }
}
}
}
}
}