baobab-odashi commited on
Commit
f068b19
1 Parent(s): 7324cc4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -1
README.md CHANGED
@@ -74,10 +74,12 @@ Each entry has the following schema:
74
  "referrer": number, // The reference ID at which the worker clicked the hyperlink
75
  }
76
 
 
 
77
  // Extracted content
78
  "page": {
79
  "title": string, // Title of the Wikipedia article
80
- "url": string, // URL of either Wikipedia article or search results
81
 
82
  // Either "quote" or "summary" field exists.
83
  // Absense of both field means that the page doesn't contain appropriate data.
@@ -95,6 +97,11 @@ Each entry has the following schema:
95
  "method": string, // Description about how the worker wrote the summary.
96
  }
97
  }
 
 
 
 
 
98
  },
99
  ],
100
  }
 
74
  "referrer": number, // The reference ID at which the worker clicked the hyperlink
75
  }
76
 
77
+ // Either "page" or "not_found" field exists.
78
+
79
  // Extracted content
80
  "page": {
81
  "title": string, // Title of the Wikipedia article
82
+ "url": string, // URL of the Wikipedia article
83
 
84
  // Either "quote" or "summary" field exists.
85
  // Absense of both field means that the page doesn't contain appropriate data.
 
97
  "method": string, // Description about how the worker wrote the summary.
98
  }
99
  }
100
+
101
+ // Search result (not found)
102
+ "not_found": {
103
+ "url": string, // URL of the Wikipedia search results
104
+ }
105
  },
106
  ],
107
  }