RubyIntelligence commited on
Commit
c0447d4
·
verified ·
1 Parent(s): 79eed3c

Upload schema.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. schema.json +136 -0
schema.json ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.1.0",
3
+ "fields": [
4
+ {
5
+ "name": "nct_id",
6
+ "type": "str",
7
+ "description": "ClinicalTrials.gov unique identifier (NCT######)"
8
+ },
9
+ {
10
+ "name": "title",
11
+ "type": "str",
12
+ "description": "Brief title of the clinical study"
13
+ },
14
+ {
15
+ "name": "official_title",
16
+ "type": "str | None",
17
+ "description": "Full official title of the study"
18
+ },
19
+ {
20
+ "name": "status",
21
+ "type": "str",
22
+ "description": "Overall recruitment status (e.g. COMPLETED, RECRUITING)"
23
+ },
24
+ {
25
+ "name": "start_date",
26
+ "type": "str | None",
27
+ "description": "Study start date (YYYY-MM-DD)"
28
+ },
29
+ {
30
+ "name": "completion_date",
31
+ "type": "str | None",
32
+ "description": "Primary completion date (YYYY-MM-DD)"
33
+ },
34
+ {
35
+ "name": "sponsor_name",
36
+ "type": "str",
37
+ "description": "Lead sponsor organization name"
38
+ },
39
+ {
40
+ "name": "sponsor_class",
41
+ "type": "str | None",
42
+ "description": "Sponsor classification (INDUSTRY, NIH, OTHER_GOV, etc.)"
43
+ },
44
+ {
45
+ "name": "conditions",
46
+ "type": "list[str]",
47
+ "description": "Medical conditions or diseases studied"
48
+ },
49
+ {
50
+ "name": "study_type",
51
+ "type": "str | None",
52
+ "description": "Study type: INTERVENTIONAL or OBSERVATIONAL"
53
+ },
54
+ {
55
+ "name": "phases",
56
+ "type": "list[str]",
57
+ "description": "Clinical trial phases (e.g. PHASE3)"
58
+ },
59
+ {
60
+ "name": "enrollment",
61
+ "type": "int | None",
62
+ "description": "Target or actual enrollment count"
63
+ },
64
+ {
65
+ "name": "allocation",
66
+ "type": "str | None",
67
+ "description": "Allocation method: RANDOMIZED or NON_RANDOMIZED"
68
+ },
69
+ {
70
+ "name": "masking",
71
+ "type": "str | None",
72
+ "description": "Blinding type (e.g. DOUBLE, OPEN_LABEL)"
73
+ },
74
+ {
75
+ "name": "interventions",
76
+ "type": "list[dict]",
77
+ "description": "Interventions with type, name, and description"
78
+ },
79
+ {
80
+ "name": "primary_outcomes",
81
+ "type": "list[dict]",
82
+ "description": "Primary outcome measures with measure and time_frame"
83
+ },
84
+ {
85
+ "name": "secondary_outcomes",
86
+ "type": "list[dict]",
87
+ "description": "Secondary outcome measures with measure and time_frame"
88
+ },
89
+ {
90
+ "name": "minimum_age",
91
+ "type": "str | dict | None",
92
+ "description": "Minimum participant age (parsed value and unit)"
93
+ },
94
+ {
95
+ "name": "maximum_age",
96
+ "type": "str | dict | None",
97
+ "description": "Maximum participant age (parsed value and unit)"
98
+ },
99
+ {
100
+ "name": "sex",
101
+ "type": "str | None",
102
+ "description": "Eligible sex: ALL, FEMALE, or MALE"
103
+ },
104
+ {
105
+ "name": "results_available",
106
+ "type": "bool",
107
+ "description": "Whether results have been posted to ClinicalTrials.gov"
108
+ },
109
+ {
110
+ "name": "locations_count",
111
+ "type": "int | None",
112
+ "description": "Number of study sites / locations"
113
+ },
114
+ {
115
+ "name": "countries",
116
+ "type": "list[str]",
117
+ "description": "Countries where the study is conducted"
118
+ },
119
+ {
120
+ "name": "trial_duration_days",
121
+ "type": "int | None",
122
+ "description": "Days from start_date to completion_date. Null if either date missing."
123
+ },
124
+ {
125
+ "name": "therapeutic_area",
126
+ "type": "str",
127
+ "description": "Disease area classification: Oncology, Cardiovascular, Neurology / CNS, Infectious Disease, Metabolic / Endocrine, Immunology / Rheumatology, Respiratory, Gastroenterology, Dermatology, Ophthalmology, Rare Disease / Orphan, Other."
128
+ },
129
+ {
130
+ "name": "primary_endpoint_met",
131
+ "type": "str",
132
+ "description": "Whether the primary endpoint was achieved: 'true', 'false', or 'unknown'. Coverage: ~45% of records (those with posted results on ClinicalTrials.gov). Extracted by LLM from the results section."
133
+ }
134
+ ],
135
+ "schema_hash": "5db9cfdee697b897f9a28d792fa1813a00d321ca97d7fea6e4c0507b237ef923"
136
+ }