Mediocreatmybest commited on
Commit
9128e99
1 Parent(s): 6b7e957

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -1
README.md CHANGED
@@ -3,4 +3,38 @@ license: cc
3
  language:
4
  - en
5
  pretty_name: Example dataset of quotes
6
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  language:
4
  - en
5
  pretty_name: Example dataset of quotes
6
+ ---
7
+ # Dataset: Example Quotes
8
+
9
+ Starting example structure for how to store quotes.
10
+
11
+ ## Structure
12
+
13
+ - **Quote**:
14
+ - *Type*: String
15
+ - *Description*: The primary content.
16
+
17
+ - **Antagonist**:
18
+ - *Type*: String
19
+ - *Description*: The individual responsible for said quote.
20
+
21
+ - **Antagonists_id**:
22
+ - *Type*: Integer
23
+ - *Description*: A unique identifier associated with the quoting antagonist. Used for generating URLs or internal referencing.
24
+
25
+ - **URL**:
26
+ - *Type*: List of Strings (separated by `|`)
27
+ - *Description*: A list of URLs offering context or sources for the quote. A single quote may have multiple URLs or a sinlge one.
28
+
29
+ - **Source_type**:
30
+ - *Type*: List of Strings (separated by `|`)
31
+ - *Description*: The medium the quote sourced from. "online news", "oneline", etc.
32
+
33
+ - **Year**:
34
+ - *Type*: Integer
35
+ - *Description*: simple integer representing the year the quote was made.
36
+
37
+ - **Tags**:
38
+ - *Type*: List of Strings (separated by `|`)
39
+ - *Description*: Miscellaneous tags linked to the quote, for categorization or filtering.
40
+