Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,33 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
# Explore data
|
6 |
+
|
7 |
+
## Articles and Pages Format.
|
8 |
+
|
9 |
+
- article_id: id of article.
|
10 |
+
- url: path to article https://reference.medscape.com/{view article path}
|
11 |
+
- article_data: Store all pages in article. Each page will store content of medical cases (paragraphs, figures) and some related questions.
|
12 |
+
|
13 |
+
- title: title of page.
|
14 |
+
- authors: authors' name.
|
15 |
+
- date: posted date.
|
16 |
+
- content: list of paragraph text corpora.
|
17 |
+
- figures: a list of captions and image_url links for figures.
|
18 |
+
- pagination: information about pagination.
|
19 |
+
- questionnaire: related questions asked in this page.
|
20 |
+
- *markdown*: A condensed markdown version created from content field and figure field.
|
21 |
+
|
22 |
+
- questions: a list of questions asked in article_data (the same "questionnaire" field in article_data).
|
23 |
+
|
24 |
+
## Questions Format
|
25 |
+
|
26 |
+
- questionId: id of question.
|
27 |
+
- questionText: Question text shown for user.
|
28 |
+
- ...
|
29 |
+
- choices: a list of choices
|
30 |
+
- choiceText: choice text shown for user.
|
31 |
+
- choiceId: id of choice.
|
32 |
+
- *correct*: true / false, true means this choice is the answer to question otherwise it is not.
|
33 |
+
- ...
|