diff --git a/etk/core.py b/etk/core.py index 56b8cc10..61461103 100644 --- a/etk/core.py +++ b/etk/core.py @@ -130,6 +130,7 @@ _CREATE_KG_NODE_EXTRACTOR = "create_kg_node_extractor" _ADD_CONSTANT_KG = "add_constant_kg" _GUARD = "guard" +_GUARDS = "guards" _STOP_VALUE = 'stop_value' _MATCH = "match" _CONTANTS = "constants" @@ -438,7 +439,8 @@ def process(self, doc, create_knowledge_graph=True, html_description=False): if not isinstance(input_paths, list): input_paths = [input_paths] - + # get user defined guards + guards = de_config[_GUARDS] if _GUARDS in de_config else None for input_path in input_paths: if _FIELDS in de_config: if input_path not in self.data_extraction_path: @@ -449,6 +451,8 @@ def process(self, doc, create_knowledge_graph=True, html_description=False): '\'{}\' is not a valid json path'.format(input_path)) matches = self.data_extraction_path[input_path].find(doc) for match in matches: + if guards and not self.assert_data_extraction_guard(guards, doc, match.value): + continue # First rule of DATA Extraction club: Get tokens # Get the crf tokens if _TEXT in match.value: @@ -823,7 +827,7 @@ def extract_as_is(self, d, config=None): result = self.pseudo_extraction_results(d) return result - if isinstance(d, dict) and _TEXT in d: + elif isinstance(d, dict) and _TEXT in d: if d[_TEXT].strip() != '': result = self.pseudo_extraction_results(d[_TEXT], key=d[_KEY] if _KEY in d else None, qualifiers=d[_QUALIFIERS] if _QUALIFIERS in d else None) @@ -835,7 +839,7 @@ def extract_as_is(self, d, config=None): return None # this is the case where we are going to put the input object to a field called 'data' - if isinstance(d, dict) or isinstance(d, list): + elif isinstance(d, dict) or isinstance(d, list): str_d = json.dumps(d, sort_keys=True) key = hashlib.sha256(str_d).hexdigest().upper() result = self.pseudo_extraction_results(str_d, key=key) @@ -1256,6 +1260,29 @@ def run_table_extractor(self, content_extraction, html, table_config): content_extraction[field_name] = tables return content_extraction + def assert_data_extraction_guard(self, guards, doc, json_path_result): + # print 'processing guards: {}'.format(guards) + for guard in guards: + try: + jpath_parser = parse(guard['path']) + regex = guard['regex'] + if guard['type'] == 'doc': + matches = jpath_parser.find(doc) + elif guard['type'] == 'path': + matches = jpath_parser.find(json_path_result) + else: + print 'guard type "{}" is not a valid type.'.format(guard['type']) + continue + if len(matches) == 0: + return False + for match in matches: + # print match.value, regex + if not re.match(regex, match.value): + return False + except Exception as e: + print 'could not apply guard: {}'.format(guard) + return True + def run_readability(self, content_extraction, html, re_extractor): recall_priority = False field_name = None @@ -2285,12 +2312,13 @@ def create_kg_node_extractor(ds, config, doc, parent_doc_id, doc_id=None, url=No result = dict() result['@timestamp_created'] = timestamp_created - # result[_PARENT_DOC_ID] = parent_doc_id + result[_PARENT_DOC_ID] = parent_doc_id result[_CREATED_BY] = 'etk' if url: result[_URL] = url result[_CONTENT_EXTRACTION] = dict() + result[_RAW_CONTENT] = str(d) if not doc_id: if isinstance(d, basestring) or isinstance(d, numbers.Number): @@ -2318,4 +2346,4 @@ def create_kg_node_extractor(ds, config, doc, parent_doc_id, doc_id=None, url=No doc['nested_docs'].append(result) extractions.append({'value': doc_id, 'metadata': {'timestamp_created': timestamp_created}}) - return extractions + return extractions \ No newline at end of file diff --git a/etk/data_extractors/table_extractor.py b/etk/data_extractors/table_extractor.py index 8bd9ec7f..9ba07b8a 100644 --- a/etk/data_extractors/table_extractor.py +++ b/etk/data_extractors/table_extractor.py @@ -64,7 +64,7 @@ def wrap_context(self, text): def extract(self, table, dic): # print dic if table['features']['max_cols_in_a_row'] != 2 and table['features']['no_of_rows'] < 2: - return None + return [] res = [] for row in table['rows']: if len(row['cells']) != 2: @@ -202,7 +202,7 @@ def extract(self, html_doc, min_data_rows = 1): for index_row, row in enumerate(rows): row_dict = dict() soup_row = BeautifulSoup(row, 'html.parser') - row_data = ''.join(soup_row.stripped_strings) + row_data = ' '.join(soup_row.stripped_strings) row_data = row_data.replace("\\t", "").replace("\\r", "").replace("\\n", "") if row_data != '': row_len_list.append(len(row_data)) @@ -224,7 +224,7 @@ def extract(self, html_doc, min_data_rows = 1): cell_dict = dict() cell_dict["cell"] = str(td) # cell_dict["text"] = [{"result": {"value": ''.join(td.stripped_strings)}}] - cell_dict["text"] = ''.join(td.stripped_strings) + cell_dict["text"] = ' '.join(td.stripped_strings) # cell_dict["id"] = 'row_{0}_col_{1}'.format(index_row, index_col) avg_cell_len += len(cell_dict["text"]) cell_list.append(cell_dict) @@ -232,7 +232,7 @@ def extract(self, html_doc, min_data_rows = 1): cell_dict = dict() cell_dict["cell"] = str(td) # cell_dict["text"] = [{"result": {"value": ''.join(td.stripped_strings)}}] - cell_dict["text"] = ''.join(td.stripped_strings) + cell_dict["text"] = ' '.join(td.stripped_strings) # cell_dict["id"] = 'row_{0}_col_{1}'.format(index_row, index_col) avg_cell_len += len(cell_dict["text"]) cell_list.append(cell_dict) @@ -272,7 +272,7 @@ def extract(self, html_doc, min_data_rows = 1): h_index = 0 h_bool = True for col in row.findAll('th'): - col_content = ''.join(col.stripped_strings) + col_content = ' '.join(col.stripped_strings) h_bool = False if col_content is None: continue @@ -283,7 +283,7 @@ def extract(self, html_doc, min_data_rows = 1): if(h_index == 1 and h_bool == False): d_index = 1 for col in row.findAll('td'): - col_content = ''.join(col.stripped_strings) + col_content = ' '.join(col.stripped_strings) if col_content is None: d_index += 1 continue @@ -292,7 +292,7 @@ def extract(self, html_doc, min_data_rows = 1): d_index += 1 for key, value in col_data.iteritems(): - whole_col = ''.join(value) + whole_col = ' '.join(value) # avg_cell_len += float("%.2f" % mean([len(x) for x in value])) avg_col_len += sum([len(x) for x in value]) avg_col_len_dev += TableExtraction.pstdev([len(x) for x in value]) @@ -328,6 +328,23 @@ def create_fingerprint(table): fingerprint = '-'.join(all_tokens) return fingerprint + @staticmethod + def row_to_text(cells): + res = '' + for c in cells: + res += c['text'] + ' | ' + return res + + @staticmethod + def table_to_text(rows): + res = '' + for row in rows: + for c in row['cells']: + res += c['text'] + ' | ' + res += '\n' + return res + + @staticmethod def gen_html(row_list): """ Return html table string from a list of data rows """ diff --git a/etk/resources/extraction_config_table_content.json b/etk/resources/extraction_config_table_content.json index 29633a83..d6df11d3 100644 --- a/etk/resources/extraction_config_table_content.json +++ b/etk/resources/extraction_config_table_content.json @@ -9,7 +9,21 @@ "landmark": [ ], "pickle": { - "my_dic": "/Users/majid/DIG/test_fields.txt" + "calibre_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/calibre_dict.txt", + "capacity_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/capacity_dict.txt", + "length_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/length_dict.txt", + "finish_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/finish_dict.txt", + "manufacturer_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/manufacturer_dict.txt", + "weight_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/weight_dict.txt", + "seller_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/seller_dict.txt", + "id_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/id_dict.txt", + "action_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/action_dict.txt", + "price_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/price_dict.txt", + "model_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/model_dict.txt", + "condition_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/condition_dict.txt", + "description_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/description_dict.txt", + "address_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/address_dict.txt", + "country_dict": "/Users/majid/DIG/DIG/test_table_atf/table_glossaries/country_dict.txt" } }, "content_extraction": { @@ -29,11 +43,137 @@ "*.table.tables[*]" ], "fields": { - "my_field": { + "calibre": { "extractors": { "entity_table_extractor": { "config": { - "dic": "my_dic" + "dic": "calibre_dict" + } + } + } + }, + "capacity": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "capacity_dict" + } + } + } + }, + "length": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "length_dict" + } + } + } + }, + "finish": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "finish_dict" + } + } + } + }, + "manufacturer": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "manufacturer_dict" + } + } + } + }, + "weight": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "weight_dict" + } + } + } + }, + "seller": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "seller_dict" + } + } + } + }, + "id": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "id_dict" + } + } + } + }, + "action": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "action_dict" + } + } + } + }, + "price": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "price_dict" + } + } + } + }, + "model": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "model_dict" + } + } + } + }, + "condition": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "condition_dict" + } + } + } + }, + "description": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "description_dict" + } + } + } + }, + "address": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "address_dict" + } + } + } + }, + "country": { + "extractors": { + "entity_table_extractor": { + "config": { + "dic": "country_dict" } } } diff --git a/etk/unit_tests/ground_truth/nested_doc.jl b/etk/unit_tests/ground_truth/nested_doc.jl new file mode 100644 index 00000000..a5fb409b --- /dev/null +++ b/etk/unit_tests/ground_truth/nested_doc.jl @@ -0,0 +1 @@ +{"url": "xx.com", "raw_content": "\n\n\n\n\n\nResolutions adopted by the United Nations Security Council in 2016\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n
\n \n
\n\n
\n
\n \n
\n\n
\n
\n
\n
\n Back to top\n
\n

United Nations Security Council

\n
\n
\n \n\n\n \n
\n
\n \n\n\n
\n

Subscriptions:

\n\"e-mail Email | \"RSS RSS\n
\n
\n
\n \n

Security Council Resolutions

\n \ufeff\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Resolutions adopted by the Security Council \n in 2016
S/RES/2336 \n (2016)31 December 2016The situation in the Middle East (Syria)
S/RES/2335 \n (2016)30 December 2016The situation concerning Iraq
S/RES/2334 \n (2016)23 December 2016The situation in the Middle East, including the Palestinian question
S/RES/2333 \n (2016)23 December 2016The situation in Liberia
S/RES/2332 \n (2016)21 December 2016The situation in the Middle East (Syria)
S/RES/2331 \n (2016)20 December 2016Maintenance of international peace and security
S/RES/2330 \n (2016)19 December 2016The situation in the Middle East (UNDOF)
S/RES/2329 \n (2016)19 December 2016International Tribunal for the Prosecution of Persons Responsible \n for Serious Violations of International Humanitarian Law Committed in the \n Territory of the Former Yugoslavia since 1991
S/RES/2328 \n (2016)19 December 2016The situation in the Middle East (Syria)
S/RES/2327 \n (2016)16 December 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2326 \n (2016)15 December 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2325 \n (2016)15 December 2016Non-proliferation of weapons of mass destruction
S/RES/2324 \n (2016)14 December 2016Tribute to the outgoing Secretary-General
S/RES/2323 \n (2016)13 December 2016The situation in Libya
S/RES/2322 \n (2016)12 December 2016Threats to international peace and security caused by terrorist \n acts
S/RES/2321 \n (2016)30 November 2016Non-proliferation/Democratic People\u2019s Republic of Korea
S/RES/2320 \n (2016)18 November 2016Cooperation between the United Nations and regional and subregional \n organizations in maintaining international peace and security
S/RES/2319 \n (2016)17 November 2016The situation in the Middle East (Syria)
S/RES/2318 \n (2016)15 November 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2317 \n (2016)10 November 2016The situation in Somalia
S/RES/2316 \n (2016)9 November 2016The situation in Somalia
S/RES/2315 \n (2016)8 November 2016The situation in Bosnia and Herzegovina
S/RES/2314 \n (2016)31 October 2016The situation in the Middle East (Syria)
S/RES/2313 \n (2016)13 October 2016The question concerning Haiti
S/RES/2312 \n (2016)6 October 2016Maintenance of international peace and security
S/RES/2311 \n (2016)6 October 2016Recommendation for the appointment of the Secretary-General of the \n United Nations
S/RES/2310 \n (2016)23 September 2016Maintenance of international peace and security
S/RES/2309 \n (2016)22 September 2016Threats to international peace and security caused by terrorist \n acts: Aviation security
S/RES/2308 \n (2016)14 September 2016The situation in Liberia
S/RES/2307 \n (2016)13 September 2016Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council (S/2016/53)
S/RES/2306 \n (2016)6 September 2016International Criminal Tribunal for the former Yugoslavia (ICTY)
S/RES/2305 \n (2016)30 August 2016The situation in the Middle East (UNIFIL)
S/RES/2304 \n (2016)12 August 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2303 \n (2016)29 July 2016The situation in Burundi
S/RES/2302 \n (2016)29 July 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2301 \n (2016)26 July 2016The situation in the Central African Republic
S/RES/2300 \n (2016)26 July 2016The situation in Cyprus
S/RES/2299 \n (2016)25 July 2016The situation concerning Iraq
S/RES/2298 \n (2016)22 July 2016The situation in Libya
S/RES/2297 \n (2016)7 July 2016The situation in Somalia
S/RES/2296 \n (2016)29 June 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2295 \n (2016)29 June 2016

The situation in Mali

S/RES/2294 \n (2016)29 June 2016The situation in the Middle East (UNDOF)
S/RES/2293 \n (2016)23 June 2016

The situation concerning the Democratic Republic \n of the Congo

S/RES/2292 \n (2016)14 June 2016The situation in Libya
S/RES/2291 \n (2016)13 June 2016The situation in Libya
S/RES/2290 \n (2016)31 May 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2289 \n (2016)27 May 2016The situation in Somalia
S/RES/2288 \n (2016)25 May 2016The situation in Liberia
S/RES/2287 \n (2016)12 May 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2286 \n (2016)3 May 2016Protection of civilians in armed conflict
S/RES/2285 \n (2016)29 April 2016The situation concering Western Sahara
S/RES/2284 \n (2016)27 April 2016The situation in C\u00f4te d\u2019Ivoire
S/RES/2283 \n (2016)27 April 2016The situation in C\u00f4te d\u2019Ivoire
S/RES/2282 \n (2016)27 April 2016Post-conflict peacebuilding
S/RES/2281 \n (2016)26 April 2016The situation in the Central African Republic
S/RES/2280 \n (2016)7 April 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2279 \n (2016)1 April 2016The situation in Burundi
S/RES/2278 \n (2016)31 March 2016The situation in Libya
S/RES/2277 \n (2016)30 March 2016Democratic Republic of the Congo
S/RES/2276 \n (2016)24 March 2016Non-proliferation/Democratic People's Republic of Korea
S/RES/2275 \n (2016)24 March 2016The situation in Somalia
S/RES/2274 \n (2016)15 March 2016The situation in Afghanistan
S/RES/2273 \n (2016)15 March 2016The situation in Libya
S/RES/2272 \n (2016)11 March 2016United Nations peacekeeping operations
S/RES/2271 \n (2016)2 March 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2270 \n (2016)2 March 2016Non-proliferation/Democratic People\u2019s Republic of Korea
S/RES/2269 \n (2016)29 February 2016International Criminal Tribunal for the former Yugoslavia (ICTY) \n
\n International Criminal Tribunal for Rwanda (ICTR)
S/RES/2268 \n (2016)26 February 2016The situation in the Middle East (Syria)
S/RES/2267 \n (2016)26 February 2016Guinea-Bissau
S/RES/2266 \n (2016)24 February 2016The situation in the Middle East (Yemen)
S/RES/2265 \n (2016)10 February 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2264 \n (2016)9 February 2016The situation in the Central African Republic
S/RES/2263 \n (2016)28 January 2016The situation in Cyprus
S/RES/2262 \n (2016)27 January 2016The situation in the Central African Republic
S/RES/2261 \n (2016)25 January 2016Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council
S/RES/2260 \n (2016)20 January 2016C\u00f4te d\u2019Ivoire
\n\n\n \n
\n
\n \n\n\t
\n

QUICK LINKS

\n \n
\n \n \n \n \n \n \n
\n
\n \n
\n \n
\n
\n \n
\n \n\n\n\n\n\n", "doc_id": "xx", "tld": "table.com"} diff --git a/etk/unit_tests/ground_truth/nested_doc.out.jl b/etk/unit_tests/ground_truth/nested_doc.out.jl new file mode 100644 index 00000000..3522e5bc --- /dev/null +++ b/etk/unit_tests/ground_truth/nested_doc.out.jl @@ -0,0 +1 @@ +{"url": "xx.com", "nested_docs": [{"@timestamp_created": "2018-01-19T13:46:48.002244", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'Resolutions adopted by the Security Council \\n in 2016', 'text': u'Resolutions adopted by the Security Council \\n in 2016'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "Resolutions adopted by the Security Council \n in 2016", "text": "Resolutions adopted by the Security Council \n in 2016"}]}}, "doc_id": "9323946BFF9F16966FBBBCAA856B1B439391B6A390C599DA0D969EC710C91834", "@type": "table_row_doc", "document_id": "9323946BFF9F16966FBBBCAA856B1B439391B6A390C599DA0D969EC710C91834"}, {"@timestamp_created": "2018-01-19T13:46:48.002527", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2336 \\n (2016)', 'text': u'S/RES/2336 \\n (2016)'}, {'cell': '31 December 2016', 'text': u'31 December 2016'}, {'cell': 'The situation in the Middle East (Syria)', 'text': u'The situation in the Middle East (Syria)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2336 \n (2016)", "text": "S/RES/2336 \n (2016)"}, {"cell": "31 December 2016", "text": "31 December 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}}, "doc_id": "367C8A6214E391546A1D82523AF8E6610DEED06C32AFF0904A421A7998756D9A", "@type": "table_row_doc", "document_id": "367C8A6214E391546A1D82523AF8E6610DEED06C32AFF0904A421A7998756D9A"}, {"@timestamp_created": "2018-01-19T13:46:48.002655", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2335 \\n (2016)', 'text': u'S/RES/2335 \\n (2016)'}, {'cell': '30 December 2016', 'text': u'30 December 2016'}, {'cell': 'The situation concerning Iraq ', 'text': u'The situation concerning Iraq'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2335 \n (2016)", "text": "S/RES/2335 \n (2016)"}, {"cell": "30 December 2016", "text": "30 December 2016"}, {"cell": "The situation concerning Iraq ", "text": "The situation concerning Iraq"}]}}, "doc_id": "8B48B56941ED1B47830E2E7616D8719961D857706B07C3D7E8BD53E21B5738FB", "@type": "table_row_doc", "document_id": "8B48B56941ED1B47830E2E7616D8719961D857706B07C3D7E8BD53E21B5738FB"}, {"@timestamp_created": "2018-01-19T13:46:48.002776", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2334 \\n (2016)', 'text': u'S/RES/2334 \\n (2016)'}, {'cell': '23 December 2016', 'text': u'23 December 2016'}, {'cell': 'The situation in the Middle East, including the Palestinian question', 'text': u'The situation in the Middle East, including the Palestinian question'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2334 \n (2016)", "text": "S/RES/2334 \n (2016)"}, {"cell": "23 December 2016", "text": "23 December 2016"}, {"cell": "The situation in the Middle East, including the Palestinian question", "text": "The situation in the Middle East, including the Palestinian question"}]}}, "doc_id": "06630082C51905FD4ACB504EF3F7495FDB0F4743D11B3A347607A549A7E39983", "@type": "table_row_doc", "document_id": "06630082C51905FD4ACB504EF3F7495FDB0F4743D11B3A347607A549A7E39983"}, {"@timestamp_created": "2018-01-19T13:46:48.002894", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2333 \\n (2016)', 'text': u'S/RES/2333 \\n (2016)'}, {'cell': '23 December 2016', 'text': u'23 December 2016'}, {'cell': 'The situation in Liberia', 'text': u'The situation in Liberia'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2333 \n (2016)", "text": "S/RES/2333 \n (2016)"}, {"cell": "23 December 2016", "text": "23 December 2016"}, {"cell": "The situation in Liberia", "text": "The situation in Liberia"}]}}, "doc_id": "E5E8D4B6255EBD8BEFDA6388BE4B671F5337A3B2CF47038867D5874E82E4D5B4", "@type": "table_row_doc", "document_id": "E5E8D4B6255EBD8BEFDA6388BE4B671F5337A3B2CF47038867D5874E82E4D5B4"}, {"@timestamp_created": "2018-01-19T13:46:48.003011", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2332 \\n (2016)', 'text': u'S/RES/2332 \\n (2016)'}, {'cell': '21 December 2016', 'text': u'21 December 2016'}, {'cell': 'The situation in the Middle East (Syria)', 'text': u'The situation in the Middle East (Syria)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2332 \n (2016)", "text": "S/RES/2332 \n (2016)"}, {"cell": "21 December 2016", "text": "21 December 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}}, "doc_id": "6218273081DE4CE5E05AB6EFD76B4C4B1AC6538E3E31785965C051AF9A9904BA", "@type": "table_row_doc", "document_id": "6218273081DE4CE5E05AB6EFD76B4C4B1AC6538E3E31785965C051AF9A9904BA"}, {"@timestamp_created": "2018-01-19T13:46:48.003127", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2331 \\n (2016)', 'text': u'S/RES/2331 \\n (2016)'}, {'cell': '20 December 2016', 'text': u'20 December 2016'}, {'cell': 'Maintenance of international peace and security', 'text': u'Maintenance of international peace and security'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2331 \n (2016)", "text": "S/RES/2331 \n (2016)"}, {"cell": "20 December 2016", "text": "20 December 2016"}, {"cell": "Maintenance of international peace and security", "text": "Maintenance of international peace and security"}]}}, "doc_id": "9948BACF5AB260BA7C83BFC138702096BF5B1F91A6A494BDA672723FDB3BD9BF", "@type": "table_row_doc", "document_id": "9948BACF5AB260BA7C83BFC138702096BF5B1F91A6A494BDA672723FDB3BD9BF"}, {"@timestamp_created": "2018-01-19T13:46:48.003243", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2330 \\n (2016)', 'text': u'S/RES/2330 \\n (2016)'}, {'cell': '19 December 2016', 'text': u'19 December 2016'}, {'cell': 'The situation in the Middle East (UNDOF)', 'text': u'The situation in the Middle East (UNDOF)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2330 \n (2016)", "text": "S/RES/2330 \n (2016)"}, {"cell": "19 December 2016", "text": "19 December 2016"}, {"cell": "The situation in the Middle East (UNDOF)", "text": "The situation in the Middle East (UNDOF)"}]}}, "doc_id": "0D5DD7B404A45BD57963FD373BF964D2C274D45BB5CE595FA5DE9CF33AB6DF51", "@type": "table_row_doc", "document_id": "0D5DD7B404A45BD57963FD373BF964D2C274D45BB5CE595FA5DE9CF33AB6DF51"}, {"@timestamp_created": "2018-01-19T13:46:48.003358", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2329 \\n (2016)', 'text': u'S/RES/2329 \\n (2016)'}, {'cell': '19 December 2016', 'text': u'19 December 2016'}, {'cell': 'International Tribunal for the Prosecution of Persons Responsible \\n for Serious Violations of International Humanitarian Law Committed in the \\n Territory of the Former Yugoslavia since 1991', 'text': u'International Tribunal for the Prosecution of Persons Responsible \\n for Serious Violations of International Humanitarian Law Committed in the \\n Territory of the Former Yugoslavia since 1991'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2329 \n (2016)", "text": "S/RES/2329 \n (2016)"}, {"cell": "19 December 2016", "text": "19 December 2016"}, {"cell": "International Tribunal for the Prosecution of Persons Responsible \n for Serious Violations of International Humanitarian Law Committed in the \n Territory of the Former Yugoslavia since 1991", "text": "International Tribunal for the Prosecution of Persons Responsible \n for Serious Violations of International Humanitarian Law Committed in the \n Territory of the Former Yugoslavia since 1991"}]}}, "doc_id": "2E72F4808874EF65BDC3B967A84B3EF785FAEBCEA0F8EE95D157BBFD04C163E0", "@type": "table_row_doc", "document_id": "2E72F4808874EF65BDC3B967A84B3EF785FAEBCEA0F8EE95D157BBFD04C163E0"}, {"@timestamp_created": "2018-01-19T13:46:48.003479", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2328 \\n (2016)', 'text': u'S/RES/2328 \\n (2016)'}, {'cell': '19 December 2016', 'text': u'19 December 2016'}, {'cell': 'The situation in the Middle East (Syria)', 'text': u'The situation in the Middle East (Syria)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2328 \n (2016)", "text": "S/RES/2328 \n (2016)"}, {"cell": "19 December 2016", "text": "19 December 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}}, "doc_id": "89D5FA746E9FBA6B76235C686DCBA188C6499D6DE1F28DACE9D1479DB7D2360E", "@type": "table_row_doc", "document_id": "89D5FA746E9FBA6B76235C686DCBA188C6499D6DE1F28DACE9D1479DB7D2360E"}, {"@timestamp_created": "2018-01-19T13:46:48.003595", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2327 \\n (2016)', 'text': u'S/RES/2327 \\n (2016)'}, {'cell': '16 December 2016', 'text': u'16 December 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2327 \n (2016)", "text": "S/RES/2327 \n (2016)"}, {"cell": "16 December 2016", "text": "16 December 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "87DFC4C84C51F55683830958D3171AC770BDB8733076521DD698054182D7E0BC", "@type": "table_row_doc", "document_id": "87DFC4C84C51F55683830958D3171AC770BDB8733076521DD698054182D7E0BC"}, {"@timestamp_created": "2018-01-19T13:46:48.003711", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2326 \\n (2016)', 'text': u'S/RES/2326 \\n (2016)'}, {'cell': '15 December 2016', 'text': u'15 December 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2326 \n (2016)", "text": "S/RES/2326 \n (2016)"}, {"cell": "15 December 2016", "text": "15 December 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "FD55069E0729C1A555DBF933B4F9DDFE3A8F2FC889CBD9DB90158E5651AB96AE", "@type": "table_row_doc", "document_id": "FD55069E0729C1A555DBF933B4F9DDFE3A8F2FC889CBD9DB90158E5651AB96AE"}, {"@timestamp_created": "2018-01-19T13:46:48.003826", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2325 \\n (2016)', 'text': u'S/RES/2325 \\n (2016)'}, {'cell': '15 December 2016', 'text': u'15 December 2016'}, {'cell': 'Non-proliferation of weapons of mass destruction ', 'text': u'Non-proliferation of weapons of mass destruction'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2325 \n (2016)", "text": "S/RES/2325 \n (2016)"}, {"cell": "15 December 2016", "text": "15 December 2016"}, {"cell": "Non-proliferation of weapons of mass destruction ", "text": "Non-proliferation of weapons of mass destruction"}]}}, "doc_id": "E1DD31265B02DC1B336CE946735121996F9F0C45963F2663E80868C68D749905", "@type": "table_row_doc", "document_id": "E1DD31265B02DC1B336CE946735121996F9F0C45963F2663E80868C68D749905"}, {"@timestamp_created": "2018-01-19T13:46:48.003945", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2324 \\n (2016)', 'text': u'S/RES/2324 \\n (2016)'}, {'cell': '14 December 2016', 'text': u'14 December 2016'}, {'cell': 'Tribute to the outgoing Secretary-General', 'text': u'Tribute to the outgoing Secretary-General'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2324 \n (2016)", "text": "S/RES/2324 \n (2016)"}, {"cell": "14 December 2016", "text": "14 December 2016"}, {"cell": "Tribute to the outgoing Secretary-General", "text": "Tribute to the outgoing Secretary-General"}]}}, "doc_id": "F301A7AFB11BDC8E79F3D9023F8AF0511BAF13E100E75828B3C21F3367DE4BA8", "@type": "table_row_doc", "document_id": "F301A7AFB11BDC8E79F3D9023F8AF0511BAF13E100E75828B3C21F3367DE4BA8"}, {"@timestamp_created": "2018-01-19T13:46:48.004061", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2323 \\n (2016)', 'text': u'S/RES/2323 \\n (2016)'}, {'cell': '13 December 2016', 'text': u'13 December 2016'}, {'cell': 'The situation in Libya', 'text': u'The situation in Libya'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2323 \n (2016)", "text": "S/RES/2323 \n (2016)"}, {"cell": "13 December 2016", "text": "13 December 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}}, "doc_id": "CAEA7E33051AAFE2B38DF56225C45D820CF08D1BE1B539AEFBEADE6385F01B65", "@type": "table_row_doc", "document_id": "CAEA7E33051AAFE2B38DF56225C45D820CF08D1BE1B539AEFBEADE6385F01B65"}, {"@timestamp_created": "2018-01-19T13:46:48.004175", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2322 \\n (2016)', 'text': u'S/RES/2322 \\n (2016)'}, {'cell': '12 December 2016', 'text': u'12 December 2016'}, {'cell': 'Threats to international peace and security caused by terrorist \\n acts', 'text': u'Threats to international peace and security caused by terrorist \\n acts'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2322 \n (2016)", "text": "S/RES/2322 \n (2016)"}, {"cell": "12 December 2016", "text": "12 December 2016"}, {"cell": "Threats to international peace and security caused by terrorist \n acts", "text": "Threats to international peace and security caused by terrorist \n acts"}]}}, "doc_id": "69C326A793987EA71AD1DC08E8EE259EA859D9C747D45D9D601B2E70CA2E1F1B", "@type": "table_row_doc", "document_id": "69C326A793987EA71AD1DC08E8EE259EA859D9C747D45D9D601B2E70CA2E1F1B"}, {"@timestamp_created": "2018-01-19T13:46:48.004291", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2321 \\n (2016)', 'text': u'S/RES/2321 \\n (2016)'}, {'cell': '30 November 2016', 'text': u'30 November 2016'}, {'cell': 'Non-proliferation/Democratic People\\xc3\\xa2\\xe2\\x82\\xac\\xe2\\x84\\xa2s Republic of Korea', 'text': u'Non-proliferation/Democratic People\\xe2\\u20ac\\u2122s Republic of Korea'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2321 \n (2016)", "text": "S/RES/2321 \n (2016)"}, {"cell": "30 November 2016", "text": "30 November 2016"}, {"cell": "Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea", "text": "Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea"}]}}, "doc_id": "E2CC40954A26272D50F780DDB1F5ED6CC08F5118CD326456C3CC024362000F26", "@type": "table_row_doc", "document_id": "E2CC40954A26272D50F780DDB1F5ED6CC08F5118CD326456C3CC024362000F26"}, {"@timestamp_created": "2018-01-19T13:46:48.004409", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2320 \\n (2016)', 'text': u'S/RES/2320 \\n (2016)'}, {'cell': '18 November 2016', 'text': u'18 November 2016'}, {'cell': 'Cooperation between the United Nations and regional and subregional \\n organizations in maintaining international peace and security', 'text': u'Cooperation between the United Nations and regional and subregional \\n organizations in maintaining international peace and security'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2320 \n (2016)", "text": "S/RES/2320 \n (2016)"}, {"cell": "18 November 2016", "text": "18 November 2016"}, {"cell": "Cooperation between the United Nations and regional and subregional \n organizations in maintaining international peace and security", "text": "Cooperation between the United Nations and regional and subregional \n organizations in maintaining international peace and security"}]}}, "doc_id": "A512ADAD54A47BBAE48FB7D8B352DB665578440E3A1579E9E69D230B5B1C67D4", "@type": "table_row_doc", "document_id": "A512ADAD54A47BBAE48FB7D8B352DB665578440E3A1579E9E69D230B5B1C67D4"}, {"@timestamp_created": "2018-01-19T13:46:48.004528", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2319 \\n (2016)', 'text': u'S/RES/2319 \\n (2016)'}, {'cell': '17 November 2016', 'text': u'17 November 2016'}, {'cell': 'The situation in the Middle East (Syria)', 'text': u'The situation in the Middle East (Syria)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2319 \n (2016)", "text": "S/RES/2319 \n (2016)"}, {"cell": "17 November 2016", "text": "17 November 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}}, "doc_id": "9B359C0C0BCB1D5227437104BE3ECDEC9695CD1436560313FDBF1E4576095A9C", "@type": "table_row_doc", "document_id": "9B359C0C0BCB1D5227437104BE3ECDEC9695CD1436560313FDBF1E4576095A9C"}, {"@timestamp_created": "2018-01-19T13:46:48.004642", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2318 \\n (2016)', 'text': u'S/RES/2318 \\n (2016)'}, {'cell': '15 November 2016', 'text': u'15 November 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2318 \n (2016)", "text": "S/RES/2318 \n (2016)"}, {"cell": "15 November 2016", "text": "15 November 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "CB7E837014AF35B9B3A933A4FBA9F831FFCBAC7723D4A813B6CE80250BFEFBF9", "@type": "table_row_doc", "document_id": "CB7E837014AF35B9B3A933A4FBA9F831FFCBAC7723D4A813B6CE80250BFEFBF9"}, {"@timestamp_created": "2018-01-19T13:46:48.004802", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2317 \\n (2016)', 'text': u'S/RES/2317 \\n (2016)'}, {'cell': '10 November 2016', 'text': u'10 November 2016'}, {'cell': 'The situation in Somalia', 'text': u'The situation in Somalia'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2317 \n (2016)", "text": "S/RES/2317 \n (2016)"}, {"cell": "10 November 2016", "text": "10 November 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}}, "doc_id": "6373A0C24854D3FA2A797ED9404CC3D8E24AB6AEACC3AC29F8156D8007847FDB", "@type": "table_row_doc", "document_id": "6373A0C24854D3FA2A797ED9404CC3D8E24AB6AEACC3AC29F8156D8007847FDB"}, {"@timestamp_created": "2018-01-19T13:46:48.004933", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2316 \\n (2016)', 'text': u'S/RES/2316 \\n (2016)'}, {'cell': '9 November 2016', 'text': u'9 November 2016'}, {'cell': 'The situation in Somalia', 'text': u'The situation in Somalia'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2316 \n (2016)", "text": "S/RES/2316 \n (2016)"}, {"cell": "9 November 2016", "text": "9 November 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}}, "doc_id": "DCC206EB1A9AC2913D999230E863A1D78573AEA2BB6D45E241C953F5B2CCF524", "@type": "table_row_doc", "document_id": "DCC206EB1A9AC2913D999230E863A1D78573AEA2BB6D45E241C953F5B2CCF524"}, {"@timestamp_created": "2018-01-19T13:46:48.005186", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2315 \\n (2016)', 'text': u'S/RES/2315 \\n (2016)'}, {'cell': '8 November 2016', 'text': u'8 November 2016'}, {'cell': 'The situation in Bosnia and Herzegovina', 'text': u'The situation in Bosnia and Herzegovina'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2315 \n (2016)", "text": "S/RES/2315 \n (2016)"}, {"cell": "8 November 2016", "text": "8 November 2016"}, {"cell": "The situation in Bosnia and Herzegovina", "text": "The situation in Bosnia and Herzegovina"}]}}, "doc_id": "72A911E3C15BD0C0A4C9C25D6A8F6E446AFBD71A5E8C2FC4F284F80B54E6D570", "@type": "table_row_doc", "document_id": "72A911E3C15BD0C0A4C9C25D6A8F6E446AFBD71A5E8C2FC4F284F80B54E6D570"}, {"@timestamp_created": "2018-01-19T13:46:48.005466", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2314 \\n (2016)', 'text': u'S/RES/2314 \\n (2016)'}, {'cell': '31 October 2016', 'text': u'31 October 2016'}, {'cell': 'The situation in the Middle East (Syria)', 'text': u'The situation in the Middle East (Syria)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2314 \n (2016)", "text": "S/RES/2314 \n (2016)"}, {"cell": "31 October 2016", "text": "31 October 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}}, "doc_id": "52B6C70727998066F15DDF21CBE1ED42D8DC140A3965B8FCA4A846AA021C12AD", "@type": "table_row_doc", "document_id": "52B6C70727998066F15DDF21CBE1ED42D8DC140A3965B8FCA4A846AA021C12AD"}, {"@timestamp_created": "2018-01-19T13:46:48.005601", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2313 \\n (2016)', 'text': u'S/RES/2313 \\n (2016)'}, {'cell': '13 October 2016', 'text': u'13 October 2016'}, {'cell': 'The question concerning Haiti', 'text': u'The question concerning Haiti'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2313 \n (2016)", "text": "S/RES/2313 \n (2016)"}, {"cell": "13 October 2016", "text": "13 October 2016"}, {"cell": "The question concerning Haiti", "text": "The question concerning Haiti"}]}}, "doc_id": "BE47156BF34A7CACC103597CD8B2FF3BC31D1550C35D532CA31DD74B15E8A1EE", "@type": "table_row_doc", "document_id": "BE47156BF34A7CACC103597CD8B2FF3BC31D1550C35D532CA31DD74B15E8A1EE"}, {"@timestamp_created": "2018-01-19T13:46:48.005725", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2312 \\n (2016)', 'text': u'S/RES/2312 \\n (2016)'}, {'cell': '6 October 2016', 'text': u'6 October 2016'}, {'cell': 'Maintenance of international peace and security', 'text': u'Maintenance of international peace and security'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2312 \n (2016)", "text": "S/RES/2312 \n (2016)"}, {"cell": "6 October 2016", "text": "6 October 2016"}, {"cell": "Maintenance of international peace and security", "text": "Maintenance of international peace and security"}]}}, "doc_id": "CB141A21A810C8B417245A1837A7BC30908FB957E8FA9253BE30F972E226F51C", "@type": "table_row_doc", "document_id": "CB141A21A810C8B417245A1837A7BC30908FB957E8FA9253BE30F972E226F51C"}, {"@timestamp_created": "2018-01-19T13:46:48.005956", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2311 \\n (2016)', 'text': u'S/RES/2311 \\n (2016)'}, {'cell': '6 October 2016', 'text': u'6 October 2016'}, {'cell': 'Recommendation for the appointment of the Secretary-General of the \\n United Nations', 'text': u'Recommendation for the appointment of the Secretary-General of the \\n United Nations'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2311 \n (2016)", "text": "S/RES/2311 \n (2016)"}, {"cell": "6 October 2016", "text": "6 October 2016"}, {"cell": "Recommendation for the appointment of the Secretary-General of the \n United Nations", "text": "Recommendation for the appointment of the Secretary-General of the \n United Nations"}]}}, "doc_id": "E7C3EBAD16F6B5B889027881D2D9386D2218714C60228DC0C609197BD6509403", "@type": "table_row_doc", "document_id": "E7C3EBAD16F6B5B889027881D2D9386D2218714C60228DC0C609197BD6509403"}, {"@timestamp_created": "2018-01-19T13:46:48.006195", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2310 \\n (2016)', 'text': u'S/RES/2310 \\n (2016)'}, {'cell': '23 September 2016', 'text': u'23 September 2016'}, {'cell': 'Maintenance of international peace and security', 'text': u'Maintenance of international peace and security'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2310 \n (2016)", "text": "S/RES/2310 \n (2016)"}, {"cell": "23 September 2016", "text": "23 September 2016"}, {"cell": "Maintenance of international peace and security", "text": "Maintenance of international peace and security"}]}}, "doc_id": "B6CCCD2BB9159FC68B631CD7B036A17A98BF9B1DCFCD7F65C1797F3D2C6B6515", "@type": "table_row_doc", "document_id": "B6CCCD2BB9159FC68B631CD7B036A17A98BF9B1DCFCD7F65C1797F3D2C6B6515"}, {"@timestamp_created": "2018-01-19T13:46:48.006428", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2309 \\n (2016)', 'text': u'S/RES/2309 \\n (2016)'}, {'cell': '22 September 2016', 'text': u'22 September 2016'}, {'cell': 'Threats to international peace and security caused by terrorist \\n acts: Aviation security', 'text': u'Threats to international peace and security caused by terrorist \\n acts: Aviation security'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2309 \n (2016)", "text": "S/RES/2309 \n (2016)"}, {"cell": "22 September 2016", "text": "22 September 2016"}, {"cell": "Threats to international peace and security caused by terrorist \n acts: Aviation security", "text": "Threats to international peace and security caused by terrorist \n acts: Aviation security"}]}}, "doc_id": "97802AB97BBF3B3AE4F757E587496B85515E0CB71EDCA3350DC16B3F08B91915", "@type": "table_row_doc", "document_id": "97802AB97BBF3B3AE4F757E587496B85515E0CB71EDCA3350DC16B3F08B91915"}, {"@timestamp_created": "2018-01-19T13:46:48.006665", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2308 \\n (2016)', 'text': u'S/RES/2308 \\n (2016)'}, {'cell': '14 September 2016', 'text': u'14 September 2016'}, {'cell': 'The situation in Liberia', 'text': u'The situation in Liberia'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2308 \n (2016)", "text": "S/RES/2308 \n (2016)"}, {"cell": "14 September 2016", "text": "14 September 2016"}, {"cell": "The situation in Liberia", "text": "The situation in Liberia"}]}}, "doc_id": "161AB43E798D7AD946184EEB641DD0C8D6A31B8F4084C0D0DC1C5CFA42D9484E", "@type": "table_row_doc", "document_id": "161AB43E798D7AD946184EEB641DD0C8D6A31B8F4084C0D0DC1C5CFA42D9484E"}, {"@timestamp_created": "2018-01-19T13:46:48.006896", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2307 \\n (2016)', 'text': u'S/RES/2307 \\n (2016)'}, {'cell': '13 September 2016', 'text': u'13 September 2016'}, {'cell': 'Identical letters dated 19 January 2016 from the Permanent Representative \\n of Colombia to the United Nations addressed to the Secretary-General and \\n the President of the Security Council (S/2016/53)', 'text': u'Identical letters dated 19 January 2016 from the Permanent Representative \\n of Colombia to the United Nations addressed to the Secretary-General and \\n the President of the Security Council (S/2016/53)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2307 \n (2016)", "text": "S/RES/2307 \n (2016)"}, {"cell": "13 September 2016", "text": "13 September 2016"}, {"cell": "Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council (S/2016/53)", "text": "Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council (S/2016/53)"}]}}, "doc_id": "ED08230DCC44BF6E02B04DB40500090B912C9D5CC4152CF7CD46B6E5F5596883", "@type": "table_row_doc", "document_id": "ED08230DCC44BF6E02B04DB40500090B912C9D5CC4152CF7CD46B6E5F5596883"}, {"@timestamp_created": "2018-01-19T13:46:48.007135", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2306 \\n (2016)', 'text': u'S/RES/2306 \\n (2016)'}, {'cell': '6 September 2016', 'text': u'6 September 2016'}, {'cell': 'International Criminal Tribunal for the former Yugoslavia (ICTY)', 'text': u'International Criminal Tribunal for the former Yugoslavia (ICTY)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2306 \n (2016)", "text": "S/RES/2306 \n (2016)"}, {"cell": "6 September 2016", "text": "6 September 2016"}, {"cell": "International Criminal Tribunal for the former Yugoslavia (ICTY)", "text": "International Criminal Tribunal for the former Yugoslavia (ICTY)"}]}}, "doc_id": "AE3475F2A2DD51F2846F16F695F431B22464E8366E7080A356DB62CEE151B63B", "@type": "table_row_doc", "document_id": "AE3475F2A2DD51F2846F16F695F431B22464E8366E7080A356DB62CEE151B63B"}, {"@timestamp_created": "2018-01-19T13:46:48.007365", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2305 \\n (2016)', 'text': u'S/RES/2305 \\n (2016)'}, {'cell': '30 August 2016', 'text': u'30 August 2016'}, {'cell': 'The situation in the Middle East (UNIFIL)', 'text': u'The situation in the Middle East (UNIFIL)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2305 \n (2016)", "text": "S/RES/2305 \n (2016)"}, {"cell": "30 August 2016", "text": "30 August 2016"}, {"cell": "The situation in the Middle East (UNIFIL)", "text": "The situation in the Middle East (UNIFIL)"}]}}, "doc_id": "A58ADB200BCA2A3A611E4AC6AD8E3772E4AD01523DD0649739D492D98AA071C2", "@type": "table_row_doc", "document_id": "A58ADB200BCA2A3A611E4AC6AD8E3772E4AD01523DD0649739D492D98AA071C2"}, {"@timestamp_created": "2018-01-19T13:46:48.007594", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2304 \\n (2016)', 'text': u'S/RES/2304 \\n (2016)'}, {'cell': '12 August 2016', 'text': u'12 August 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2304 \n (2016)", "text": "S/RES/2304 \n (2016)"}, {"cell": "12 August 2016", "text": "12 August 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "3D468C0EA613F1F5D1168D0A07856A4D7DD6A2E1684DB51411B6E2F5B286B8CE", "@type": "table_row_doc", "document_id": "3D468C0EA613F1F5D1168D0A07856A4D7DD6A2E1684DB51411B6E2F5B286B8CE"}, {"@timestamp_created": "2018-01-19T13:46:48.007823", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2303 \\n (2016)', 'text': u'S/RES/2303 \\n (2016)'}, {'cell': '29 July 2016', 'text': u'29 July 2016'}, {'cell': 'The situation in Burundi', 'text': u'The situation in Burundi'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2303 \n (2016)", "text": "S/RES/2303 \n (2016)"}, {"cell": "29 July 2016", "text": "29 July 2016"}, {"cell": "The situation in Burundi", "text": "The situation in Burundi"}]}}, "doc_id": "2B5D259F3BC4EDDF20E275F7268BC4099F2F73CC42FB6A31DC329F9D59383588", "@type": "table_row_doc", "document_id": "2B5D259F3BC4EDDF20E275F7268BC4099F2F73CC42FB6A31DC329F9D59383588"}, {"@timestamp_created": "2018-01-19T13:46:48.008055", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2302 \\n (2016)', 'text': u'S/RES/2302 \\n (2016)'}, {'cell': '29 July 2016', 'text': u'29 July 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2302 \n (2016)", "text": "S/RES/2302 \n (2016)"}, {"cell": "29 July 2016", "text": "29 July 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "AB164BE62AABA93E5DD7D075D2C1BDCDFA9B0C40CED069B1C55E25D007F5488B", "@type": "table_row_doc", "document_id": "AB164BE62AABA93E5DD7D075D2C1BDCDFA9B0C40CED069B1C55E25D007F5488B"}, {"@timestamp_created": "2018-01-19T13:46:48.008253", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2301 \\n (2016)', 'text': u'S/RES/2301 \\n (2016)'}, {'cell': '26 July 2016', 'text': u'26 July 2016'}, {'cell': 'The situation in the Central African Republic', 'text': u'The situation in the Central African Republic'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2301 \n (2016)", "text": "S/RES/2301 \n (2016)"}, {"cell": "26 July 2016", "text": "26 July 2016"}, {"cell": "The situation in the Central African Republic", "text": "The situation in the Central African Republic"}]}}, "doc_id": "3A0BCB0C6F28CF38AD2DD9D4103801417F56DA81CE99B60F11B203A0959D5586", "@type": "table_row_doc", "document_id": "3A0BCB0C6F28CF38AD2DD9D4103801417F56DA81CE99B60F11B203A0959D5586"}, {"@timestamp_created": "2018-01-19T13:46:48.008432", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2300 \\n (2016)', 'text': u'S/RES/2300 \\n (2016)'}, {'cell': '26 July 2016', 'text': u'26 July 2016'}, {'cell': 'The situation in Cyprus', 'text': u'The situation in Cyprus'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2300 \n (2016)", "text": "S/RES/2300 \n (2016)"}, {"cell": "26 July 2016", "text": "26 July 2016"}, {"cell": "The situation in Cyprus", "text": "The situation in Cyprus"}]}}, "doc_id": "65831CDDEA56A3404C24075B7823AA1DC4B49FCBE2803A03431C6FE0042C5EE0", "@type": "table_row_doc", "document_id": "65831CDDEA56A3404C24075B7823AA1DC4B49FCBE2803A03431C6FE0042C5EE0"}, {"@timestamp_created": "2018-01-19T13:46:48.008610", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2299 \\n (2016)', 'text': u'S/RES/2299 \\n (2016)'}, {'cell': '25 July 2016', 'text': u'25 July 2016'}, {'cell': 'The situation concerning Iraq', 'text': u'The situation concerning Iraq'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2299 \n (2016)", "text": "S/RES/2299 \n (2016)"}, {"cell": "25 July 2016", "text": "25 July 2016"}, {"cell": "The situation concerning Iraq", "text": "The situation concerning Iraq"}]}}, "doc_id": "74CEE6C61F15297BF60E718D8D7630343A2732879E51EA19CFD8CBBB22E47B6B", "@type": "table_row_doc", "document_id": "74CEE6C61F15297BF60E718D8D7630343A2732879E51EA19CFD8CBBB22E47B6B"}, {"@timestamp_created": "2018-01-19T13:46:48.008931", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2298 \\n (2016)', 'text': u'S/RES/2298 \\n (2016)'}, {'cell': '22 July 2016', 'text': u'22 July 2016'}, {'cell': 'The situation in Libya', 'text': u'The situation in Libya'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2298 \n (2016)", "text": "S/RES/2298 \n (2016)"}, {"cell": "22 July 2016", "text": "22 July 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}}, "doc_id": "4FA2EDB0F5E40940989A5C6162132557A1AAAD39F9BD58AE793A074C388D396E", "@type": "table_row_doc", "document_id": "4FA2EDB0F5E40940989A5C6162132557A1AAAD39F9BD58AE793A074C388D396E"}, {"@timestamp_created": "2018-01-19T13:46:48.009115", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2297 \\n (2016)', 'text': u'S/RES/2297 \\n (2016)'}, {'cell': '7 July 2016', 'text': u'7 July 2016'}, {'cell': 'The situation in Somalia', 'text': u'The situation in Somalia'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2297 \n (2016)", "text": "S/RES/2297 \n (2016)"}, {"cell": "7 July 2016", "text": "7 July 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}}, "doc_id": "EFE6801FC957318A79031E2702801B0C1B6EDD6B29FD0FC6809A6FC1A000AB73", "@type": "table_row_doc", "document_id": "EFE6801FC957318A79031E2702801B0C1B6EDD6B29FD0FC6809A6FC1A000AB73"}, {"@timestamp_created": "2018-01-19T13:46:48.009298", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2296 \\n (2016)', 'text': u'S/RES/2296 \\n (2016)'}, {'cell': '29 June 2016', 'text': u'29 June 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2296 \n (2016)", "text": "S/RES/2296 \n (2016)"}, {"cell": "29 June 2016", "text": "29 June 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "A482C2F38440640023AB551C2DFB771CB7C5F94303D97C8A3A04CF00D373349C", "@type": "table_row_doc", "document_id": "A482C2F38440640023AB551C2DFB771CB7C5F94303D97C8A3A04CF00D373349C"}, {"@timestamp_created": "2018-01-19T13:46:48.009479", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2295 \\n (2016)', 'text': u'S/RES/2295 \\n (2016)'}, {'cell': '29 June 2016', 'text': u'29 June 2016'}, {'cell': '

The situation in Mali

', 'text': u'The situation in Mali'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2295 \n (2016)", "text": "S/RES/2295 \n (2016)"}, {"cell": "29 June 2016", "text": "29 June 2016"}, {"cell": "

The situation in Mali

", "text": "The situation in Mali"}]}}, "doc_id": "E5E95910FAB97734F54492DB710C3FCAAEF194F8B4F7DBE6A78935BA45554C34", "@type": "table_row_doc", "document_id": "E5E95910FAB97734F54492DB710C3FCAAEF194F8B4F7DBE6A78935BA45554C34"}, {"@timestamp_created": "2018-01-19T13:46:48.009660", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2294 \\n (2016)', 'text': u'S/RES/2294 \\n (2016)'}, {'cell': '29 June 2016', 'text': u'29 June 2016'}, {'cell': 'The situation in the Middle East (UNDOF)', 'text': u'The situation in the Middle East (UNDOF)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2294 \n (2016)", "text": "S/RES/2294 \n (2016)"}, {"cell": "29 June 2016", "text": "29 June 2016"}, {"cell": "The situation in the Middle East (UNDOF)", "text": "The situation in the Middle East (UNDOF)"}]}}, "doc_id": "5836D00E7B8C60DAC9416A9A9680602DB6382D8205E3E7F4C52F0F38D418673F", "@type": "table_row_doc", "document_id": "5836D00E7B8C60DAC9416A9A9680602DB6382D8205E3E7F4C52F0F38D418673F"}, {"@timestamp_created": "2018-01-19T13:46:48.009842", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2293 \\n (2016)', 'text': u'S/RES/2293 \\n (2016)'}, {'cell': '23 June 2016', 'text': u'23 June 2016'}, {'cell': '

The situation concerning the Democratic Republic \\n of the Congo

', 'text': u'The situation concerning the Democratic Republic \\n of the Congo'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2293 \n (2016)", "text": "S/RES/2293 \n (2016)"}, {"cell": "23 June 2016", "text": "23 June 2016"}, {"cell": "

The situation concerning the Democratic Republic \n of the Congo

", "text": "The situation concerning the Democratic Republic \n of the Congo"}]}}, "doc_id": "713B988A212D7266C38268C0A4F94C9D63B12902ACCD4263AB0780FA31FDC505", "@type": "table_row_doc", "document_id": "713B988A212D7266C38268C0A4F94C9D63B12902ACCD4263AB0780FA31FDC505"}, {"@timestamp_created": "2018-01-19T13:46:48.010024", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2292 \\n (2016)', 'text': u'S/RES/2292 \\n (2016)'}, {'cell': '14 June 2016', 'text': u'14 June 2016'}, {'cell': 'The situation in Libya', 'text': u'The situation in Libya'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2292 \n (2016)", "text": "S/RES/2292 \n (2016)"}, {"cell": "14 June 2016", "text": "14 June 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}}, "doc_id": "5BB97CA2DD8F26E5F948D68DB57CDE92AF780ED4566B15C10821D5CD0DD30422", "@type": "table_row_doc", "document_id": "5BB97CA2DD8F26E5F948D68DB57CDE92AF780ED4566B15C10821D5CD0DD30422"}, {"@timestamp_created": "2018-01-19T13:46:48.010205", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2291 \\n (2016)', 'text': u'S/RES/2291 \\n (2016)'}, {'cell': '13 June 2016', 'text': u'13 June 2016'}, {'cell': 'The situation in Libya', 'text': u'The situation in Libya'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2291 \n (2016)", "text": "S/RES/2291 \n (2016)"}, {"cell": "13 June 2016", "text": "13 June 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}}, "doc_id": "00D40CCDD2E6F7E57657490C6F31523E0656EC556D97470FD08A537CE2DD0829", "@type": "table_row_doc", "document_id": "00D40CCDD2E6F7E57657490C6F31523E0656EC556D97470FD08A537CE2DD0829"}, {"@timestamp_created": "2018-01-19T13:46:48.010386", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2290 \\n (2016)', 'text': u'S/RES/2290 \\n (2016)'}, {'cell': '31 May 2016', 'text': u'31 May 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2290 \n (2016)", "text": "S/RES/2290 \n (2016)"}, {"cell": "31 May 2016", "text": "31 May 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "4857514BD1F85B5710F2F5D6CABEA0E492E65B25D00759335F4710BD9951F887", "@type": "table_row_doc", "document_id": "4857514BD1F85B5710F2F5D6CABEA0E492E65B25D00759335F4710BD9951F887"}, {"@timestamp_created": "2018-01-19T13:46:48.010568", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2289 \\n (2016)', 'text': u'S/RES/2289 \\n (2016)'}, {'cell': '27 May 2016', 'text': u'27 May 2016'}, {'cell': 'The situation in Somalia', 'text': u'The situation in Somalia'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2289 \n (2016)", "text": "S/RES/2289 \n (2016)"}, {"cell": "27 May 2016", "text": "27 May 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}}, "doc_id": "789278AD6DD3C3AC820F1643B707245A08363B61BA649890FE1A3AC7549C218D", "@type": "table_row_doc", "document_id": "789278AD6DD3C3AC820F1643B707245A08363B61BA649890FE1A3AC7549C218D"}, {"@timestamp_created": "2018-01-19T13:46:48.010749", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2288 \\n (2016)', 'text': u'S/RES/2288 \\n (2016)'}, {'cell': '25 May 2016', 'text': u'25 May 2016'}, {'cell': 'The situation in Liberia', 'text': u'The situation in Liberia'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2288 \n (2016)", "text": "S/RES/2288 \n (2016)"}, {"cell": "25 May 2016", "text": "25 May 2016"}, {"cell": "The situation in Liberia", "text": "The situation in Liberia"}]}}, "doc_id": "0FF2AF60181EF7ED57F75A237F342D4A7CE4BAA0E145C1AAF69AB80C00B8144C", "@type": "table_row_doc", "document_id": "0FF2AF60181EF7ED57F75A237F342D4A7CE4BAA0E145C1AAF69AB80C00B8144C"}, {"@timestamp_created": "2018-01-19T13:46:48.010930", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2287 \\n (2016)', 'text': u'S/RES/2287 \\n (2016)'}, {'cell': '12 May 2016', 'text': u'12 May 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2287 \n (2016)", "text": "S/RES/2287 \n (2016)"}, {"cell": "12 May 2016", "text": "12 May 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "2A47B132D34E0C6315C941677239A3A49B71B92AF59DF83E739D17AF0004C8F4", "@type": "table_row_doc", "document_id": "2A47B132D34E0C6315C941677239A3A49B71B92AF59DF83E739D17AF0004C8F4"}, {"@timestamp_created": "2018-01-19T13:46:48.011111", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2286 \\n (2016)', 'text': u'S/RES/2286 \\n (2016)'}, {'cell': '3 May 2016', 'text': u'3 May 2016'}, {'cell': 'Protection of civilians in armed conflict', 'text': u'Protection of civilians in armed conflict'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2286 \n (2016)", "text": "S/RES/2286 \n (2016)"}, {"cell": "3 May 2016", "text": "3 May 2016"}, {"cell": "Protection of civilians in armed conflict", "text": "Protection of civilians in armed conflict"}]}}, "doc_id": "C52CED558420C45CA5ECF59CC1F74B14A2695BEF4C01C87CFC5ED0CA7E22F7A9", "@type": "table_row_doc", "document_id": "C52CED558420C45CA5ECF59CC1F74B14A2695BEF4C01C87CFC5ED0CA7E22F7A9"}, {"@timestamp_created": "2018-01-19T13:46:48.011354", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2285 \\n (2016)', 'text': u'S/RES/2285 \\n (2016)'}, {'cell': '29 April 2016', 'text': u'29 April 2016'}, {'cell': 'The situation concering Western Sahara', 'text': u'The situation concering Western Sahara'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2285 \n (2016)", "text": "S/RES/2285 \n (2016)"}, {"cell": "29 April 2016", "text": "29 April 2016"}, {"cell": "The situation concering Western Sahara", "text": "The situation concering Western Sahara"}]}}, "doc_id": "E89ACD011BF79C482D2C4A0AB6C53FDAC9A2B0D396DDAD45044C031B226AD86C", "@type": "table_row_doc", "document_id": "E89ACD011BF79C482D2C4A0AB6C53FDAC9A2B0D396DDAD45044C031B226AD86C"}, {"@timestamp_created": "2018-01-19T13:46:48.011614", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2284 \\n (2016)', 'text': u'S/RES/2284 \\n (2016)'}, {'cell': '27 April 2016', 'text': u'27 April 2016'}, {'cell': 'The situation in C\\xc3\\xb4te d\\xe2\\x80\\x99Ivoire', 'text': u'The situation in C\\xf4te d\\u2019Ivoire'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2284 \n (2016)", "text": "S/RES/2284 \n (2016)"}, {"cell": "27 April 2016", "text": "27 April 2016"}, {"cell": "The situation in C\u00f4te d\u2019Ivoire", "text": "The situation in C\u00f4te d\u2019Ivoire"}]}}, "doc_id": "B4535A5C610EFA19C5728A0C0911D61B22C3C207099993B33C8BA94EB588C8B2", "@type": "table_row_doc", "document_id": "B4535A5C610EFA19C5728A0C0911D61B22C3C207099993B33C8BA94EB588C8B2"}, {"@timestamp_created": "2018-01-19T13:46:48.011783", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2283 \\n (2016)', 'text': u'S/RES/2283 \\n (2016)'}, {'cell': '27 April 2016', 'text': u'27 April 2016'}, {'cell': 'The situation in C\\xc3\\xb4te d\\xe2\\x80\\x99Ivoire', 'text': u'The situation in C\\xf4te d\\u2019Ivoire'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2283 \n (2016)", "text": "S/RES/2283 \n (2016)"}, {"cell": "27 April 2016", "text": "27 April 2016"}, {"cell": "The situation in C\u00f4te d\u2019Ivoire", "text": "The situation in C\u00f4te d\u2019Ivoire"}]}}, "doc_id": "7C9914B1F95F7237025184ECB1AF3C98A4D68F910B724BEFFF387EC33E35C7F7", "@type": "table_row_doc", "document_id": "7C9914B1F95F7237025184ECB1AF3C98A4D68F910B724BEFFF387EC33E35C7F7"}, {"@timestamp_created": "2018-01-19T13:46:48.011946", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2282 \\n (2016)', 'text': u'S/RES/2282 \\n (2016)'}, {'cell': '27 April 2016', 'text': u'27 April 2016'}, {'cell': 'Post-conflict peacebuilding', 'text': u'Post-conflict peacebuilding'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2282 \n (2016)", "text": "S/RES/2282 \n (2016)"}, {"cell": "27 April 2016", "text": "27 April 2016"}, {"cell": "Post-conflict peacebuilding", "text": "Post-conflict peacebuilding"}]}}, "doc_id": "30F0F99CE44CCE79144D11152914F83F2963FEB269E1F5ECD160518F377627A6", "@type": "table_row_doc", "document_id": "30F0F99CE44CCE79144D11152914F83F2963FEB269E1F5ECD160518F377627A6"}, {"@timestamp_created": "2018-01-19T13:46:48.012103", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2281 \\n (2016)', 'text': u'S/RES/2281 \\n (2016)'}, {'cell': '26 April 2016', 'text': u'26 April 2016'}, {'cell': 'The situation in the Central African Republic', 'text': u'The situation in the Central African Republic'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2281 \n (2016)", "text": "S/RES/2281 \n (2016)"}, {"cell": "26 April 2016", "text": "26 April 2016"}, {"cell": "The situation in the Central African Republic", "text": "The situation in the Central African Republic"}]}}, "doc_id": "8C0A7CF6EA1653B88373E441EF51F6A654878F6B9719B48C1F554101A49E060B", "@type": "table_row_doc", "document_id": "8C0A7CF6EA1653B88373E441EF51F6A654878F6B9719B48C1F554101A49E060B"}, {"@timestamp_created": "2018-01-19T13:46:48.012259", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2280 \\n (2016)', 'text': u'S/RES/2280 \\n (2016)'}, {'cell': '7 April 2016', 'text': u'7 April 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2280 \n (2016)", "text": "S/RES/2280 \n (2016)"}, {"cell": "7 April 2016", "text": "7 April 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "FDAC6A9E2BF1CD7EE4BCDDC919A7A5F1B3EEF2D21C0FF19DDA5C49EBE5A1A889", "@type": "table_row_doc", "document_id": "FDAC6A9E2BF1CD7EE4BCDDC919A7A5F1B3EEF2D21C0FF19DDA5C49EBE5A1A889"}, {"@timestamp_created": "2018-01-19T13:46:48.012415", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2279 \\n (2016)', 'text': u'S/RES/2279 \\n (2016)'}, {'cell': '1 April 2016', 'text': u'1 April 2016'}, {'cell': 'The situation in Burundi', 'text': u'The situation in Burundi'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2279 \n (2016)", "text": "S/RES/2279 \n (2016)"}, {"cell": "1 April 2016", "text": "1 April 2016"}, {"cell": "The situation in Burundi", "text": "The situation in Burundi"}]}}, "doc_id": "131E09C7E5C85CE0EE6C3E7FFD5BD058173C76386246937D34B205AF3FD09B56", "@type": "table_row_doc", "document_id": "131E09C7E5C85CE0EE6C3E7FFD5BD058173C76386246937D34B205AF3FD09B56"}, {"@timestamp_created": "2018-01-19T13:46:48.012571", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2278 \\n (2016)', 'text': u'S/RES/2278 \\n (2016)'}, {'cell': '31 March 2016', 'text': u'31 March 2016'}, {'cell': 'The situation in Libya', 'text': u'The situation in Libya'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2278 \n (2016)", "text": "S/RES/2278 \n (2016)"}, {"cell": "31 March 2016", "text": "31 March 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}}, "doc_id": "A9BA0D4EA4DB3ADF5620A422977F07CF6F0671CF18F770AD6874A5E0A4AA2990", "@type": "table_row_doc", "document_id": "A9BA0D4EA4DB3ADF5620A422977F07CF6F0671CF18F770AD6874A5E0A4AA2990"}, {"@timestamp_created": "2018-01-19T13:46:48.012724", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2277 \\n (2016)', 'text': u'S/RES/2277 \\n (2016)'}, {'cell': '30 March 2016', 'text': u'30 March 2016'}, {'cell': 'Democratic Republic of the Congo', 'text': u'Democratic Republic of the Congo'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2277 \n (2016)", "text": "S/RES/2277 \n (2016)"}, {"cell": "30 March 2016", "text": "30 March 2016"}, {"cell": "Democratic Republic of the Congo", "text": "Democratic Republic of the Congo"}]}}, "doc_id": "61D38542B92D409AEA28D675DCDD6FCA184B9BBDB2E86E989D0772F35E5FBFA5", "@type": "table_row_doc", "document_id": "61D38542B92D409AEA28D675DCDD6FCA184B9BBDB2E86E989D0772F35E5FBFA5"}, {"@timestamp_created": "2018-01-19T13:46:48.012877", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2276 \\n (2016)', 'text': u'S/RES/2276 \\n (2016)'}, {'cell': '24 March 2016', 'text': u'24 March 2016'}, {'cell': 'Non-proliferation/Democratic People\\'s Republic of Korea', 'text': u\"Non-proliferation/Democratic People's Republic of Korea\"}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2276 \n (2016)", "text": "S/RES/2276 \n (2016)"}, {"cell": "24 March 2016", "text": "24 March 2016"}, {"cell": "Non-proliferation/Democratic People's Republic of Korea", "text": "Non-proliferation/Democratic People's Republic of Korea"}]}}, "doc_id": "3EA1CA73B47FB64786B1BDD3B749ED80CEA0C6AE26FC1D3FAD70520D12ECE3BE", "@type": "table_row_doc", "document_id": "3EA1CA73B47FB64786B1BDD3B749ED80CEA0C6AE26FC1D3FAD70520D12ECE3BE"}, {"@timestamp_created": "2018-01-19T13:46:48.013033", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2275 \\n (2016)', 'text': u'S/RES/2275 \\n (2016)'}, {'cell': '24 March 2016', 'text': u'24 March 2016'}, {'cell': 'The situation in Somalia', 'text': u'The situation in Somalia'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2275 \n (2016)", "text": "S/RES/2275 \n (2016)"}, {"cell": "24 March 2016", "text": "24 March 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}}, "doc_id": "DF1453EF9B8C844E845A8D469475F6DBD0D4811BBA571C113DEF56A728A9D79B", "@type": "table_row_doc", "document_id": "DF1453EF9B8C844E845A8D469475F6DBD0D4811BBA571C113DEF56A728A9D79B"}, {"@timestamp_created": "2018-01-19T13:46:48.013186", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2274 \\n (2016)', 'text': u'S/RES/2274 \\n (2016)'}, {'cell': '15 March 2016', 'text': u'15 March 2016'}, {'cell': 'The situation in Afghanistan', 'text': u'The situation in Afghanistan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2274 \n (2016)", "text": "S/RES/2274 \n (2016)"}, {"cell": "15 March 2016", "text": "15 March 2016"}, {"cell": "The situation in Afghanistan", "text": "The situation in Afghanistan"}]}}, "doc_id": "A8AFD04D49D329F941B102655AF58399E9BDEBA7EE95DFBF59D86C4BF61FAECF", "@type": "table_row_doc", "document_id": "A8AFD04D49D329F941B102655AF58399E9BDEBA7EE95DFBF59D86C4BF61FAECF"}, {"@timestamp_created": "2018-01-19T13:46:48.013338", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2273 \\n (2016)', 'text': u'S/RES/2273 \\n (2016)'}, {'cell': '15 March 2016', 'text': u'15 March 2016'}, {'cell': 'The situation in Libya', 'text': u'The situation in Libya'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2273 \n (2016)", "text": "S/RES/2273 \n (2016)"}, {"cell": "15 March 2016", "text": "15 March 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}}, "doc_id": "2752A0BEC3EFF30BB702B4938ACA507170AEEAEBE8C1AD64D20F1857E8133A60", "@type": "table_row_doc", "document_id": "2752A0BEC3EFF30BB702B4938ACA507170AEEAEBE8C1AD64D20F1857E8133A60"}, {"@timestamp_created": "2018-01-19T13:46:48.013490", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2272 \\n (2016)', 'text': u'S/RES/2272 \\n (2016)'}, {'cell': '11 March 2016', 'text': u'11 March 2016'}, {'cell': 'United Nations peacekeeping operations', 'text': u'United Nations peacekeeping operations'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2272 \n (2016)", "text": "S/RES/2272 \n (2016)"}, {"cell": "11 March 2016", "text": "11 March 2016"}, {"cell": "United Nations peacekeeping operations", "text": "United Nations peacekeeping operations"}]}}, "doc_id": "376601B225DC0C72B2448AA1253A92A4A965BA7A3AAB1DE6736B78406C85A5FF", "@type": "table_row_doc", "document_id": "376601B225DC0C72B2448AA1253A92A4A965BA7A3AAB1DE6736B78406C85A5FF"}, {"@timestamp_created": "2018-01-19T13:46:48.013642", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2271 \\n (2016)', 'text': u'S/RES/2271 \\n (2016)'}, {'cell': '2 March 2016', 'text': u'2 March 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2271 \n (2016)", "text": "S/RES/2271 \n (2016)"}, {"cell": "2 March 2016", "text": "2 March 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "F4774F7EBFAB22558E61F71B08B2739131EC36D72336D799270662F391A5B76C", "@type": "table_row_doc", "document_id": "F4774F7EBFAB22558E61F71B08B2739131EC36D72336D799270662F391A5B76C"}, {"@timestamp_created": "2018-01-19T13:46:48.013796", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2270 \\n (2016)', 'text': u'S/RES/2270 \\n (2016)'}, {'cell': '2 March 2016', 'text': u'2 March 2016'}, {'cell': 'Non-proliferation/Democratic People\\xc3\\xa2\\xe2\\x82\\xac\\xe2\\x84\\xa2s Republic of Korea', 'text': u'Non-proliferation/Democratic People\\xe2\\u20ac\\u2122s Republic of Korea'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2270 \n (2016)", "text": "S/RES/2270 \n (2016)"}, {"cell": "2 March 2016", "text": "2 March 2016"}, {"cell": "Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea", "text": "Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea"}]}}, "doc_id": "3404F16F7C312BE135B49BC5D5E99FD4D919CB28E5DEB5FB138782755E6D2B83", "@type": "table_row_doc", "document_id": "3404F16F7C312BE135B49BC5D5E99FD4D919CB28E5DEB5FB138782755E6D2B83"}, {"@timestamp_created": "2018-01-19T13:46:48.013953", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2269 \\n (2016)', 'text': u'S/RES/2269 \\n (2016)'}, {'cell': '29 February 2016', 'text': u'29 February 2016'}, {'cell': 'International Criminal Tribunal for the former Yugoslavia (ICTY) \\n
\\n International Criminal Tribunal for Rwanda (ICTR)', 'text': u'International Criminal Tribunal for the former Yugoslavia (ICTY) International Criminal Tribunal for Rwanda (ICTR)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2269 \n (2016)", "text": "S/RES/2269 \n (2016)"}, {"cell": "29 February 2016", "text": "29 February 2016"}, {"cell": "International Criminal Tribunal for the former Yugoslavia (ICTY) \n
\n International Criminal Tribunal for Rwanda (ICTR)", "text": "International Criminal Tribunal for the former Yugoslavia (ICTY) International Criminal Tribunal for Rwanda (ICTR)"}]}}, "doc_id": "C70CD2CEB897D9293880073EE4DFCC3F7E3B794FDF6E49E24C4D3302BC69C8BB", "@type": "table_row_doc", "document_id": "C70CD2CEB897D9293880073EE4DFCC3F7E3B794FDF6E49E24C4D3302BC69C8BB"}, {"@timestamp_created": "2018-01-19T13:46:48.014112", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2268 \\n (2016)', 'text': u'S/RES/2268 \\n (2016)'}, {'cell': '26 February 2016', 'text': u'26 February 2016'}, {'cell': 'The situation in the Middle East (Syria)', 'text': u'The situation in the Middle East (Syria)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2268 \n (2016)", "text": "S/RES/2268 \n (2016)"}, {"cell": "26 February 2016", "text": "26 February 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}}, "doc_id": "F1F792E85C3E8D067CDE804DA5B9EE94A0E57A2EB0117B0B3C1ECF7D845437C9", "@type": "table_row_doc", "document_id": "F1F792E85C3E8D067CDE804DA5B9EE94A0E57A2EB0117B0B3C1ECF7D845437C9"}, {"@timestamp_created": "2018-01-19T13:46:48.014265", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2267 \\n (2016)', 'text': u'S/RES/2267 \\n (2016)'}, {'cell': '26 February 2016', 'text': u'26 February 2016'}, {'cell': 'Guinea-Bissau', 'text': u'Guinea-Bissau'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2267 \n (2016)", "text": "S/RES/2267 \n (2016)"}, {"cell": "26 February 2016", "text": "26 February 2016"}, {"cell": "Guinea-Bissau", "text": "Guinea-Bissau"}]}}, "doc_id": "315C5C760EBF1479F13D5FCAD41F8F82E970EC805E3B8213833871154B137C34", "@type": "table_row_doc", "document_id": "315C5C760EBF1479F13D5FCAD41F8F82E970EC805E3B8213833871154B137C34"}, {"@timestamp_created": "2018-01-19T13:46:48.014418", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2266 \\n (2016)', 'text': u'S/RES/2266 \\n (2016)'}, {'cell': '24 February 2016', 'text': u'24 February 2016'}, {'cell': 'The situation in the Middle East (Yemen)', 'text': u'The situation in the Middle East (Yemen)'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2266 \n (2016)", "text": "S/RES/2266 \n (2016)"}, {"cell": "24 February 2016", "text": "24 February 2016"}, {"cell": "The situation in the Middle East (Yemen)", "text": "The situation in the Middle East (Yemen)"}]}}, "doc_id": "040745C90771868FCCB9A3339C763A07789C4C01A61EABA04F6680901702AAC7", "@type": "table_row_doc", "document_id": "040745C90771868FCCB9A3339C763A07789C4C01A61EABA04F6680901702AAC7"}, {"@timestamp_created": "2018-01-19T13:46:48.014572", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2265 \\n (2016)', 'text': u'S/RES/2265 \\n (2016)'}, {'cell': '10 February 2016', 'text': u'10 February 2016'}, {'cell': 'Reports of the Secretary-General on the Sudan and South Sudan', 'text': u'Reports of the Secretary-General on the Sudan and South Sudan'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2265 \n (2016)", "text": "S/RES/2265 \n (2016)"}, {"cell": "10 February 2016", "text": "10 February 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}}, "doc_id": "661DB9224DB254DA006D2BC13BF50702B66CA41170EF78C8B644D4F97FB942B1", "@type": "table_row_doc", "document_id": "661DB9224DB254DA006D2BC13BF50702B66CA41170EF78C8B644D4F97FB942B1"}, {"@timestamp_created": "2018-01-19T13:46:48.014727", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2264 \\n (2016)', 'text': u'S/RES/2264 \\n (2016)'}, {'cell': '9 February 2016', 'text': u'9 February 2016'}, {'cell': 'The situation in the Central African Republic', 'text': u'The situation in the Central African Republic'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2264 \n (2016)", "text": "S/RES/2264 \n (2016)"}, {"cell": "9 February 2016", "text": "9 February 2016"}, {"cell": "The situation in the Central African Republic", "text": "The situation in the Central African Republic"}]}}, "doc_id": "77A155F35E071CAD546F3870CCFD8213D9814DA9BDB0E50C38D708E0828A901C", "@type": "table_row_doc", "document_id": "77A155F35E071CAD546F3870CCFD8213D9814DA9BDB0E50C38D708E0828A901C"}, {"@timestamp_created": "2018-01-19T13:46:48.014884", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2263 \\n (2016)', 'text': u'S/RES/2263 \\n (2016)'}, {'cell': '28 January 2016', 'text': u'28 January 2016'}, {'cell': 'The situation in Cyprus', 'text': u'The situation in Cyprus'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2263 \n (2016)", "text": "S/RES/2263 \n (2016)"}, {"cell": "28 January 2016", "text": "28 January 2016"}, {"cell": "The situation in Cyprus", "text": "The situation in Cyprus"}]}}, "doc_id": "336E3725E4CE36EC186B73EC8DB7FEBC515664C5D960C349CA2CEA40C49B7F92", "@type": "table_row_doc", "document_id": "336E3725E4CE36EC186B73EC8DB7FEBC515664C5D960C349CA2CEA40C49B7F92"}, {"@timestamp_created": "2018-01-19T13:46:48.015039", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2262 \\n (2016)', 'text': u'S/RES/2262 \\n (2016)'}, {'cell': '27 January 2016', 'text': u'27 January 2016'}, {'cell': 'The situation in the Central African Republic', 'text': u'The situation in the Central African Republic'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2262 \n (2016)", "text": "S/RES/2262 \n (2016)"}, {"cell": "27 January 2016", "text": "27 January 2016"}, {"cell": "The situation in the Central African Republic", "text": "The situation in the Central African Republic"}]}}, "doc_id": "4B5A7C38D27FB0295F49E13E1AD6AFE9432489F57F1193D53F10BEB96EEAAF9F", "@type": "table_row_doc", "document_id": "4B5A7C38D27FB0295F49E13E1AD6AFE9432489F57F1193D53F10BEB96EEAAF9F"}, {"@timestamp_created": "2018-01-19T13:46:48.015197", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2261 \\n (2016)', 'text': u'S/RES/2261 \\n (2016)'}, {'cell': '25 January 2016', 'text': u'25 January 2016'}, {'cell': 'Identical letters dated 19 January 2016 from the Permanent Representative \\n of Colombia to the United Nations addressed to the Secretary-General and \\n the President of the Security Council', 'text': u'Identical letters dated 19 January 2016 from the Permanent Representative \\n of Colombia to the United Nations addressed to the Secretary-General and \\n the President of the Security Council'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2261 \n (2016)", "text": "S/RES/2261 \n (2016)"}, {"cell": "25 January 2016", "text": "25 January 2016"}, {"cell": "Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council", "text": "Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council"}]}}, "doc_id": "4083F7FA3507AB2CFAC440D3E3C1603A2A793BA662C7BA7A798066DBCAF44AED", "@type": "table_row_doc", "document_id": "4083F7FA3507AB2CFAC440D3E3C1603A2A793BA662C7BA7A798066DBCAF44AED"}, {"@timestamp_created": "2018-01-19T13:46:48.015359", "url": "xx.com", "created_by": "etk", "raw_content": "{'cells': [{'cell': 'S/RES/2260 \\n (2016)', 'text': u'S/RES/2260 \\n (2016)'}, {'cell': '20 January 2016', 'text': u'20 January 2016'}, {'cell': 'C\\xc3\\xb4te d\\xe2\\x80\\x99Ivoire', 'text': u'C\\xf4te d\\u2019Ivoire'}]}", "parent_doc_id": "xx", "content_extraction": {"table_row": {"cells": [{"cell": "S/RES/2260 \n (2016)", "text": "S/RES/2260 \n (2016)"}, {"cell": "20 January 2016", "text": "20 January 2016"}, {"cell": "C\u00f4te d\u2019Ivoire", "text": "C\u00f4te d\u2019Ivoire"}]}}, "doc_id": "0CEAC8883837B85D1619A56379945E72156D0D2B1D5B20B16AA1AC1593241D2B", "@type": "table_row_doc", "document_id": "0CEAC8883837B85D1619A56379945E72156D0D2B1D5B20B16AA1AC1593241D2B"}], "knowledge_graph": {"nested_test": [{"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.002244"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[0]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "9323946BFF9F16966FBBBCAA856B1B439391B6A390C599DA0D969EC710C91834"}], "key": "9323946bff9f16966fbbbcaa856b1b439391b6a390c599da0d969ec710c91834-timestamp_created:2018-01-19T13:46:48.002244", "value": "9323946BFF9F16966FBBBCAA856B1B439391B6A390C599DA0D969EC710C91834"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.002527"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[1]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "367C8A6214E391546A1D82523AF8E6610DEED06C32AFF0904A421A7998756D9A"}], "key": "367c8a6214e391546a1d82523af8e6610deed06c32aff0904a421a7998756d9a-timestamp_created:2018-01-19T13:46:48.002527", "value": "367C8A6214E391546A1D82523AF8E6610DEED06C32AFF0904A421A7998756D9A"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.002655"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[2]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "8B48B56941ED1B47830E2E7616D8719961D857706B07C3D7E8BD53E21B5738FB"}], "key": "8b48b56941ed1b47830e2e7616d8719961d857706b07c3d7e8bd53e21b5738fb-timestamp_created:2018-01-19T13:46:48.002655", "value": "8B48B56941ED1B47830E2E7616D8719961D857706B07C3D7E8BD53E21B5738FB"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.002776"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[3]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "06630082C51905FD4ACB504EF3F7495FDB0F4743D11B3A347607A549A7E39983"}], "key": "06630082c51905fd4acb504ef3f7495fdb0f4743d11b3a347607a549a7e39983-timestamp_created:2018-01-19T13:46:48.002776", "value": "06630082C51905FD4ACB504EF3F7495FDB0F4743D11B3A347607A549A7E39983"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.002894"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[4]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "E5E8D4B6255EBD8BEFDA6388BE4B671F5337A3B2CF47038867D5874E82E4D5B4"}], "key": "e5e8d4b6255ebd8befda6388be4b671f5337a3b2cf47038867d5874e82e4d5b4-timestamp_created:2018-01-19T13:46:48.002894", "value": "E5E8D4B6255EBD8BEFDA6388BE4B671F5337A3B2CF47038867D5874E82E4D5B4"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.003011"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[5]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "6218273081DE4CE5E05AB6EFD76B4C4B1AC6538E3E31785965C051AF9A9904BA"}], "key": "6218273081de4ce5e05ab6efd76b4c4b1ac6538e3e31785965c051af9a9904ba-timestamp_created:2018-01-19T13:46:48.003011", "value": "6218273081DE4CE5E05AB6EFD76B4C4B1AC6538E3E31785965C051AF9A9904BA"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.003127"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[6]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "9948BACF5AB260BA7C83BFC138702096BF5B1F91A6A494BDA672723FDB3BD9BF"}], "key": "9948bacf5ab260ba7c83bfc138702096bf5b1f91a6a494bda672723fdb3bd9bf-timestamp_created:2018-01-19T13:46:48.003127", "value": "9948BACF5AB260BA7C83BFC138702096BF5B1F91A6A494BDA672723FDB3BD9BF"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.003243"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[7]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "0D5DD7B404A45BD57963FD373BF964D2C274D45BB5CE595FA5DE9CF33AB6DF51"}], "key": "0d5dd7b404a45bd57963fd373bf964d2c274d45bb5ce595fa5de9cf33ab6df51-timestamp_created:2018-01-19T13:46:48.003243", "value": "0D5DD7B404A45BD57963FD373BF964D2C274D45BB5CE595FA5DE9CF33AB6DF51"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.003358"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[8]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "2E72F4808874EF65BDC3B967A84B3EF785FAEBCEA0F8EE95D157BBFD04C163E0"}], "key": "2e72f4808874ef65bdc3b967a84b3ef785faebcea0f8ee95d157bbfd04c163e0-timestamp_created:2018-01-19T13:46:48.003358", "value": "2E72F4808874EF65BDC3B967A84B3EF785FAEBCEA0F8EE95D157BBFD04C163E0"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.003479"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[9]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "89D5FA746E9FBA6B76235C686DCBA188C6499D6DE1F28DACE9D1479DB7D2360E"}], "key": "89d5fa746e9fba6b76235c686dcba188c6499d6de1f28dace9d1479db7d2360e-timestamp_created:2018-01-19T13:46:48.003479", "value": "89D5FA746E9FBA6B76235C686DCBA188C6499D6DE1F28DACE9D1479DB7D2360E"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.003595"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[10]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "87DFC4C84C51F55683830958D3171AC770BDB8733076521DD698054182D7E0BC"}], "key": "87dfc4c84c51f55683830958d3171ac770bdb8733076521dd698054182d7e0bc-timestamp_created:2018-01-19T13:46:48.003595", "value": "87DFC4C84C51F55683830958D3171AC770BDB8733076521DD698054182D7E0BC"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.003711"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[11]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "FD55069E0729C1A555DBF933B4F9DDFE3A8F2FC889CBD9DB90158E5651AB96AE"}], "key": "fd55069e0729c1a555dbf933b4f9ddfe3a8f2fc889cbd9db90158e5651ab96ae-timestamp_created:2018-01-19T13:46:48.003711", "value": "FD55069E0729C1A555DBF933B4F9DDFE3A8F2FC889CBD9DB90158E5651AB96AE"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.003826"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[12]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "E1DD31265B02DC1B336CE946735121996F9F0C45963F2663E80868C68D749905"}], "key": "e1dd31265b02dc1b336ce946735121996f9f0c45963f2663e80868c68d749905-timestamp_created:2018-01-19T13:46:48.003826", "value": "E1DD31265B02DC1B336CE946735121996F9F0C45963F2663E80868C68D749905"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.003945"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[13]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "F301A7AFB11BDC8E79F3D9023F8AF0511BAF13E100E75828B3C21F3367DE4BA8"}], "key": "f301a7afb11bdc8e79f3d9023f8af0511baf13e100e75828b3c21f3367de4ba8-timestamp_created:2018-01-19T13:46:48.003945", "value": "F301A7AFB11BDC8E79F3D9023F8AF0511BAF13E100E75828B3C21F3367DE4BA8"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.004061"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[14]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "CAEA7E33051AAFE2B38DF56225C45D820CF08D1BE1B539AEFBEADE6385F01B65"}], "key": "caea7e33051aafe2b38df56225c45d820cf08d1be1b539aefbeade6385f01b65-timestamp_created:2018-01-19T13:46:48.004061", "value": "CAEA7E33051AAFE2B38DF56225C45D820CF08D1BE1B539AEFBEADE6385F01B65"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.004175"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[15]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "69C326A793987EA71AD1DC08E8EE259EA859D9C747D45D9D601B2E70CA2E1F1B"}], "key": "69c326a793987ea71ad1dc08e8ee259ea859d9c747d45d9d601b2e70ca2e1f1b-timestamp_created:2018-01-19T13:46:48.004175", "value": "69C326A793987EA71AD1DC08E8EE259EA859D9C747D45D9D601B2E70CA2E1F1B"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.004291"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[16]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "E2CC40954A26272D50F780DDB1F5ED6CC08F5118CD326456C3CC024362000F26"}], "key": "e2cc40954a26272d50f780ddb1f5ed6cc08f5118cd326456c3cc024362000f26-timestamp_created:2018-01-19T13:46:48.004291", "value": "E2CC40954A26272D50F780DDB1F5ED6CC08F5118CD326456C3CC024362000F26"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.004409"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[17]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "A512ADAD54A47BBAE48FB7D8B352DB665578440E3A1579E9E69D230B5B1C67D4"}], "key": "a512adad54a47bbae48fb7d8b352db665578440e3a1579e9e69d230b5b1c67d4-timestamp_created:2018-01-19T13:46:48.004409", "value": "A512ADAD54A47BBAE48FB7D8B352DB665578440E3A1579E9E69D230B5B1C67D4"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.004528"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[18]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "9B359C0C0BCB1D5227437104BE3ECDEC9695CD1436560313FDBF1E4576095A9C"}], "key": "9b359c0c0bcb1d5227437104be3ecdec9695cd1436560313fdbf1e4576095a9c-timestamp_created:2018-01-19T13:46:48.004528", "value": "9B359C0C0BCB1D5227437104BE3ECDEC9695CD1436560313FDBF1E4576095A9C"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.004642"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[19]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "CB7E837014AF35B9B3A933A4FBA9F831FFCBAC7723D4A813B6CE80250BFEFBF9"}], "key": "cb7e837014af35b9b3a933a4fba9f831ffcbac7723d4a813b6ce80250bfefbf9-timestamp_created:2018-01-19T13:46:48.004642", "value": "CB7E837014AF35B9B3A933A4FBA9F831FFCBAC7723D4A813B6CE80250BFEFBF9"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.004802"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[20]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "6373A0C24854D3FA2A797ED9404CC3D8E24AB6AEACC3AC29F8156D8007847FDB"}], "key": "6373a0c24854d3fa2a797ed9404cc3d8e24ab6aeacc3ac29f8156d8007847fdb-timestamp_created:2018-01-19T13:46:48.004802", "value": "6373A0C24854D3FA2A797ED9404CC3D8E24AB6AEACC3AC29F8156D8007847FDB"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.004933"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[21]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "DCC206EB1A9AC2913D999230E863A1D78573AEA2BB6D45E241C953F5B2CCF524"}], "key": "dcc206eb1a9ac2913d999230e863a1d78573aea2bb6d45e241c953f5b2ccf524-timestamp_created:2018-01-19T13:46:48.004933", "value": "DCC206EB1A9AC2913D999230E863A1D78573AEA2BB6D45E241C953F5B2CCF524"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.005186"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[22]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "72A911E3C15BD0C0A4C9C25D6A8F6E446AFBD71A5E8C2FC4F284F80B54E6D570"}], "key": "72a911e3c15bd0c0a4c9c25d6a8f6e446afbd71a5e8c2fc4f284f80b54e6d570-timestamp_created:2018-01-19T13:46:48.005186", "value": "72A911E3C15BD0C0A4C9C25D6A8F6E446AFBD71A5E8C2FC4F284F80B54E6D570"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.005466"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[23]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "52B6C70727998066F15DDF21CBE1ED42D8DC140A3965B8FCA4A846AA021C12AD"}], "key": "52b6c70727998066f15ddf21cbe1ed42d8dc140a3965b8fca4a846aa021c12ad-timestamp_created:2018-01-19T13:46:48.005466", "value": "52B6C70727998066F15DDF21CBE1ED42D8DC140A3965B8FCA4A846AA021C12AD"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.005601"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[24]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "BE47156BF34A7CACC103597CD8B2FF3BC31D1550C35D532CA31DD74B15E8A1EE"}], "key": "be47156bf34a7cacc103597cd8b2ff3bc31d1550c35d532ca31dd74b15e8a1ee-timestamp_created:2018-01-19T13:46:48.005601", "value": "BE47156BF34A7CACC103597CD8B2FF3BC31D1550C35D532CA31DD74B15E8A1EE"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.005725"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[25]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "CB141A21A810C8B417245A1837A7BC30908FB957E8FA9253BE30F972E226F51C"}], "key": "cb141a21a810c8b417245a1837a7bc30908fb957e8fa9253be30f972e226f51c-timestamp_created:2018-01-19T13:46:48.005725", "value": "CB141A21A810C8B417245A1837A7BC30908FB957E8FA9253BE30F972E226F51C"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.005956"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[26]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "E7C3EBAD16F6B5B889027881D2D9386D2218714C60228DC0C609197BD6509403"}], "key": "e7c3ebad16f6b5b889027881d2d9386d2218714c60228dc0c609197bd6509403-timestamp_created:2018-01-19T13:46:48.005956", "value": "E7C3EBAD16F6B5B889027881D2D9386D2218714C60228DC0C609197BD6509403"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.006195"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[27]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "B6CCCD2BB9159FC68B631CD7B036A17A98BF9B1DCFCD7F65C1797F3D2C6B6515"}], "key": "b6cccd2bb9159fc68b631cd7b036a17a98bf9b1dcfcd7f65c1797f3d2c6b6515-timestamp_created:2018-01-19T13:46:48.006195", "value": "B6CCCD2BB9159FC68B631CD7B036A17A98BF9B1DCFCD7F65C1797F3D2C6B6515"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.006428"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[28]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "97802AB97BBF3B3AE4F757E587496B85515E0CB71EDCA3350DC16B3F08B91915"}], "key": "97802ab97bbf3b3ae4f757e587496b85515e0cb71edca3350dc16b3f08b91915-timestamp_created:2018-01-19T13:46:48.006428", "value": "97802AB97BBF3B3AE4F757E587496B85515E0CB71EDCA3350DC16B3F08B91915"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.006665"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[29]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "161AB43E798D7AD946184EEB641DD0C8D6A31B8F4084C0D0DC1C5CFA42D9484E"}], "key": "161ab43e798d7ad946184eeb641dd0c8d6a31b8f4084c0d0dc1c5cfa42d9484e-timestamp_created:2018-01-19T13:46:48.006665", "value": "161AB43E798D7AD946184EEB641DD0C8D6A31B8F4084C0D0DC1C5CFA42D9484E"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.006896"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[30]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "ED08230DCC44BF6E02B04DB40500090B912C9D5CC4152CF7CD46B6E5F5596883"}], "key": "ed08230dcc44bf6e02b04db40500090b912c9d5cc4152cf7cd46b6e5f5596883-timestamp_created:2018-01-19T13:46:48.006896", "value": "ED08230DCC44BF6E02B04DB40500090B912C9D5CC4152CF7CD46B6E5F5596883"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.007135"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[31]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "AE3475F2A2DD51F2846F16F695F431B22464E8366E7080A356DB62CEE151B63B"}], "key": "ae3475f2a2dd51f2846f16f695f431b22464e8366e7080a356db62cee151b63b-timestamp_created:2018-01-19T13:46:48.007135", "value": "AE3475F2A2DD51F2846F16F695F431B22464E8366E7080A356DB62CEE151B63B"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.007365"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[32]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "A58ADB200BCA2A3A611E4AC6AD8E3772E4AD01523DD0649739D492D98AA071C2"}], "key": "a58adb200bca2a3a611e4ac6ad8e3772e4ad01523dd0649739d492d98aa071c2-timestamp_created:2018-01-19T13:46:48.007365", "value": "A58ADB200BCA2A3A611E4AC6AD8E3772E4AD01523DD0649739D492D98AA071C2"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.007594"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[33]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "3D468C0EA613F1F5D1168D0A07856A4D7DD6A2E1684DB51411B6E2F5B286B8CE"}], "key": "3d468c0ea613f1f5d1168d0a07856a4d7dd6a2e1684db51411b6e2f5b286b8ce-timestamp_created:2018-01-19T13:46:48.007594", "value": "3D468C0EA613F1F5D1168D0A07856A4D7DD6A2E1684DB51411B6E2F5B286B8CE"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.007823"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[34]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "2B5D259F3BC4EDDF20E275F7268BC4099F2F73CC42FB6A31DC329F9D59383588"}], "key": "2b5d259f3bc4eddf20e275f7268bc4099f2f73cc42fb6a31dc329f9d59383588-timestamp_created:2018-01-19T13:46:48.007823", "value": "2B5D259F3BC4EDDF20E275F7268BC4099F2F73CC42FB6A31DC329F9D59383588"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.008055"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[35]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "AB164BE62AABA93E5DD7D075D2C1BDCDFA9B0C40CED069B1C55E25D007F5488B"}], "key": "ab164be62aaba93e5dd7d075d2c1bdcdfa9b0c40ced069b1c55e25d007f5488b-timestamp_created:2018-01-19T13:46:48.008055", "value": "AB164BE62AABA93E5DD7D075D2C1BDCDFA9B0C40CED069B1C55E25D007F5488B"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.008253"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[36]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "3A0BCB0C6F28CF38AD2DD9D4103801417F56DA81CE99B60F11B203A0959D5586"}], "key": "3a0bcb0c6f28cf38ad2dd9d4103801417f56da81ce99b60f11b203a0959d5586-timestamp_created:2018-01-19T13:46:48.008253", "value": "3A0BCB0C6F28CF38AD2DD9D4103801417F56DA81CE99B60F11B203A0959D5586"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.008432"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[37]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "65831CDDEA56A3404C24075B7823AA1DC4B49FCBE2803A03431C6FE0042C5EE0"}], "key": "65831cddea56a3404c24075b7823aa1dc4b49fcbe2803a03431c6fe0042c5ee0-timestamp_created:2018-01-19T13:46:48.008432", "value": "65831CDDEA56A3404C24075B7823AA1DC4B49FCBE2803A03431C6FE0042C5EE0"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.008610"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[38]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "74CEE6C61F15297BF60E718D8D7630343A2732879E51EA19CFD8CBBB22E47B6B"}], "key": "74cee6c61f15297bf60e718d8d7630343a2732879e51ea19cfd8cbbb22e47b6b-timestamp_created:2018-01-19T13:46:48.008610", "value": "74CEE6C61F15297BF60E718D8D7630343A2732879E51EA19CFD8CBBB22E47B6B"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.008931"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[39]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "4FA2EDB0F5E40940989A5C6162132557A1AAAD39F9BD58AE793A074C388D396E"}], "key": "4fa2edb0f5e40940989a5c6162132557a1aaad39f9bd58ae793a074c388d396e-timestamp_created:2018-01-19T13:46:48.008931", "value": "4FA2EDB0F5E40940989A5C6162132557A1AAAD39F9BD58AE793A074C388D396E"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.009115"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[40]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "EFE6801FC957318A79031E2702801B0C1B6EDD6B29FD0FC6809A6FC1A000AB73"}], "key": "efe6801fc957318a79031e2702801b0c1b6edd6b29fd0fc6809a6fc1a000ab73-timestamp_created:2018-01-19T13:46:48.009115", "value": "EFE6801FC957318A79031E2702801B0C1B6EDD6B29FD0FC6809A6FC1A000AB73"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.009298"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[41]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "A482C2F38440640023AB551C2DFB771CB7C5F94303D97C8A3A04CF00D373349C"}], "key": "a482c2f38440640023ab551c2dfb771cb7c5f94303d97c8a3a04cf00d373349c-timestamp_created:2018-01-19T13:46:48.009298", "value": "A482C2F38440640023AB551C2DFB771CB7C5F94303D97C8A3A04CF00D373349C"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.009479"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[42]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "E5E95910FAB97734F54492DB710C3FCAAEF194F8B4F7DBE6A78935BA45554C34"}], "key": "e5e95910fab97734f54492db710c3fcaaef194f8b4f7dbe6a78935ba45554c34-timestamp_created:2018-01-19T13:46:48.009479", "value": "E5E95910FAB97734F54492DB710C3FCAAEF194F8B4F7DBE6A78935BA45554C34"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.009660"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[43]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "5836D00E7B8C60DAC9416A9A9680602DB6382D8205E3E7F4C52F0F38D418673F"}], "key": "5836d00e7b8c60dac9416a9a9680602db6382d8205e3e7f4c52f0f38d418673f-timestamp_created:2018-01-19T13:46:48.009660", "value": "5836D00E7B8C60DAC9416A9A9680602DB6382D8205E3E7F4C52F0F38D418673F"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.009842"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[44]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "713B988A212D7266C38268C0A4F94C9D63B12902ACCD4263AB0780FA31FDC505"}], "key": "713b988a212d7266c38268c0a4f94c9d63b12902accd4263ab0780fa31fdc505-timestamp_created:2018-01-19T13:46:48.009842", "value": "713B988A212D7266C38268C0A4F94C9D63B12902ACCD4263AB0780FA31FDC505"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.010024"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[45]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "5BB97CA2DD8F26E5F948D68DB57CDE92AF780ED4566B15C10821D5CD0DD30422"}], "key": "5bb97ca2dd8f26e5f948d68db57cde92af780ed4566b15c10821d5cd0dd30422-timestamp_created:2018-01-19T13:46:48.010024", "value": "5BB97CA2DD8F26E5F948D68DB57CDE92AF780ED4566B15C10821D5CD0DD30422"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.010205"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[46]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "00D40CCDD2E6F7E57657490C6F31523E0656EC556D97470FD08A537CE2DD0829"}], "key": "00d40ccdd2e6f7e57657490c6f31523e0656ec556d97470fd08a537ce2dd0829-timestamp_created:2018-01-19T13:46:48.010205", "value": "00D40CCDD2E6F7E57657490C6F31523E0656EC556D97470FD08A537CE2DD0829"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.010386"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[47]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "4857514BD1F85B5710F2F5D6CABEA0E492E65B25D00759335F4710BD9951F887"}], "key": "4857514bd1f85b5710f2f5d6cabea0e492e65b25d00759335f4710bd9951f887-timestamp_created:2018-01-19T13:46:48.010386", "value": "4857514BD1F85B5710F2F5D6CABEA0E492E65B25D00759335F4710BD9951F887"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.010568"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[48]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "789278AD6DD3C3AC820F1643B707245A08363B61BA649890FE1A3AC7549C218D"}], "key": "789278ad6dd3c3ac820f1643b707245a08363b61ba649890fe1a3ac7549c218d-timestamp_created:2018-01-19T13:46:48.010568", "value": "789278AD6DD3C3AC820F1643B707245A08363B61BA649890FE1A3AC7549C218D"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.010749"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[49]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "0FF2AF60181EF7ED57F75A237F342D4A7CE4BAA0E145C1AAF69AB80C00B8144C"}], "key": "0ff2af60181ef7ed57f75a237f342d4a7ce4baa0e145c1aaf69ab80c00b8144c-timestamp_created:2018-01-19T13:46:48.010749", "value": "0FF2AF60181EF7ED57F75A237F342D4A7CE4BAA0E145C1AAF69AB80C00B8144C"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.010930"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[50]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "2A47B132D34E0C6315C941677239A3A49B71B92AF59DF83E739D17AF0004C8F4"}], "key": "2a47b132d34e0c6315c941677239a3a49b71b92af59df83e739d17af0004c8f4-timestamp_created:2018-01-19T13:46:48.010930", "value": "2A47B132D34E0C6315C941677239A3A49B71B92AF59DF83E739D17AF0004C8F4"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.011111"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[51]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "C52CED558420C45CA5ECF59CC1F74B14A2695BEF4C01C87CFC5ED0CA7E22F7A9"}], "key": "c52ced558420c45ca5ecf59cc1f74b14a2695bef4c01c87cfc5ed0ca7e22f7a9-timestamp_created:2018-01-19T13:46:48.011111", "value": "C52CED558420C45CA5ECF59CC1F74B14A2695BEF4C01C87CFC5ED0CA7E22F7A9"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.011354"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[52]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "E89ACD011BF79C482D2C4A0AB6C53FDAC9A2B0D396DDAD45044C031B226AD86C"}], "key": "e89acd011bf79c482d2c4a0ab6c53fdac9a2b0d396ddad45044c031b226ad86c-timestamp_created:2018-01-19T13:46:48.011354", "value": "E89ACD011BF79C482D2C4A0AB6C53FDAC9A2B0D396DDAD45044C031B226AD86C"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.011614"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[53]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "B4535A5C610EFA19C5728A0C0911D61B22C3C207099993B33C8BA94EB588C8B2"}], "key": "b4535a5c610efa19c5728a0c0911d61b22c3c207099993b33c8ba94eb588c8b2-timestamp_created:2018-01-19T13:46:48.011614", "value": "B4535A5C610EFA19C5728A0C0911D61B22C3C207099993B33C8BA94EB588C8B2"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.011783"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[54]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "7C9914B1F95F7237025184ECB1AF3C98A4D68F910B724BEFFF387EC33E35C7F7"}], "key": "7c9914b1f95f7237025184ecb1af3c98a4d68f910b724befff387ec33e35c7f7-timestamp_created:2018-01-19T13:46:48.011783", "value": "7C9914B1F95F7237025184ECB1AF3C98A4D68F910B724BEFFF387EC33E35C7F7"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.011946"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[55]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "30F0F99CE44CCE79144D11152914F83F2963FEB269E1F5ECD160518F377627A6"}], "key": "30f0f99ce44cce79144d11152914f83f2963feb269e1f5ecd160518f377627a6-timestamp_created:2018-01-19T13:46:48.011946", "value": "30F0F99CE44CCE79144D11152914F83F2963FEB269E1F5ECD160518F377627A6"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.012103"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[56]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "8C0A7CF6EA1653B88373E441EF51F6A654878F6B9719B48C1F554101A49E060B"}], "key": "8c0a7cf6ea1653b88373e441ef51f6a654878f6b9719b48c1f554101a49e060b-timestamp_created:2018-01-19T13:46:48.012103", "value": "8C0A7CF6EA1653B88373E441EF51F6A654878F6B9719B48C1F554101A49E060B"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.012259"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[57]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "FDAC6A9E2BF1CD7EE4BCDDC919A7A5F1B3EEF2D21C0FF19DDA5C49EBE5A1A889"}], "key": "fdac6a9e2bf1cd7ee4bcddc919a7a5f1b3eef2d21c0ff19dda5c49ebe5a1a889-timestamp_created:2018-01-19T13:46:48.012259", "value": "FDAC6A9E2BF1CD7EE4BCDDC919A7A5F1B3EEF2D21C0FF19DDA5C49EBE5A1A889"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.012415"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[58]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "131E09C7E5C85CE0EE6C3E7FFD5BD058173C76386246937D34B205AF3FD09B56"}], "key": "131e09c7e5c85ce0ee6c3e7ffd5bd058173c76386246937d34b205af3fd09b56-timestamp_created:2018-01-19T13:46:48.012415", "value": "131E09C7E5C85CE0EE6C3E7FFD5BD058173C76386246937D34B205AF3FD09B56"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.012571"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[59]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "A9BA0D4EA4DB3ADF5620A422977F07CF6F0671CF18F770AD6874A5E0A4AA2990"}], "key": "a9ba0d4ea4db3adf5620a422977f07cf6f0671cf18f770ad6874a5e0a4aa2990-timestamp_created:2018-01-19T13:46:48.012571", "value": "A9BA0D4EA4DB3ADF5620A422977F07CF6F0671CF18F770AD6874A5E0A4AA2990"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.012724"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[60]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "61D38542B92D409AEA28D675DCDD6FCA184B9BBDB2E86E989D0772F35E5FBFA5"}], "key": "61d38542b92d409aea28d675dcdd6fca184b9bbdb2e86e989d0772f35e5fbfa5-timestamp_created:2018-01-19T13:46:48.012724", "value": "61D38542B92D409AEA28D675DCDD6FCA184B9BBDB2E86E989D0772F35E5FBFA5"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.012877"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[61]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "3EA1CA73B47FB64786B1BDD3B749ED80CEA0C6AE26FC1D3FAD70520D12ECE3BE"}], "key": "3ea1ca73b47fb64786b1bdd3b749ed80cea0c6ae26fc1d3fad70520d12ece3be-timestamp_created:2018-01-19T13:46:48.012877", "value": "3EA1CA73B47FB64786B1BDD3B749ED80CEA0C6AE26FC1D3FAD70520D12ECE3BE"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.013033"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[62]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "DF1453EF9B8C844E845A8D469475F6DBD0D4811BBA571C113DEF56A728A9D79B"}], "key": "df1453ef9b8c844e845a8d469475f6dbd0d4811bba571c113def56a728a9d79b-timestamp_created:2018-01-19T13:46:48.013033", "value": "DF1453EF9B8C844E845A8D469475F6DBD0D4811BBA571C113DEF56A728A9D79B"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.013186"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[63]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "A8AFD04D49D329F941B102655AF58399E9BDEBA7EE95DFBF59D86C4BF61FAECF"}], "key": "a8afd04d49d329f941b102655af58399e9bdeba7ee95dfbf59d86c4bf61faecf-timestamp_created:2018-01-19T13:46:48.013186", "value": "A8AFD04D49D329F941B102655AF58399E9BDEBA7EE95DFBF59D86C4BF61FAECF"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.013338"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[64]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "2752A0BEC3EFF30BB702B4938ACA507170AEEAEBE8C1AD64D20F1857E8133A60"}], "key": "2752a0bec3eff30bb702b4938aca507170aeeaebe8c1ad64d20f1857e8133a60-timestamp_created:2018-01-19T13:46:48.013338", "value": "2752A0BEC3EFF30BB702B4938ACA507170AEEAEBE8C1AD64D20F1857E8133A60"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.013490"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[65]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "376601B225DC0C72B2448AA1253A92A4A965BA7A3AAB1DE6736B78406C85A5FF"}], "key": "376601b225dc0c72b2448aa1253a92a4a965ba7a3aab1de6736b78406c85a5ff-timestamp_created:2018-01-19T13:46:48.013490", "value": "376601B225DC0C72B2448AA1253A92A4A965BA7A3AAB1DE6736B78406C85A5FF"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.013642"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[66]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "F4774F7EBFAB22558E61F71B08B2739131EC36D72336D799270662F391A5B76C"}], "key": "f4774f7ebfab22558e61f71b08b2739131ec36d72336d799270662f391a5b76c-timestamp_created:2018-01-19T13:46:48.013642", "value": "F4774F7EBFAB22558E61F71B08B2739131EC36D72336D799270662F391A5B76C"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.013796"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[67]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "3404F16F7C312BE135B49BC5D5E99FD4D919CB28E5DEB5FB138782755E6D2B83"}], "key": "3404f16f7c312be135b49bc5d5e99fd4d919cb28e5deb5fb138782755e6d2b83-timestamp_created:2018-01-19T13:46:48.013796", "value": "3404F16F7C312BE135B49BC5D5E99FD4D919CB28E5DEB5FB138782755E6D2B83"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.013953"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[68]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "C70CD2CEB897D9293880073EE4DFCC3F7E3B794FDF6E49E24C4D3302BC69C8BB"}], "key": "c70cd2ceb897d9293880073ee4dfcc3f7e3b794fdf6e49e24c4d3302bc69c8bb-timestamp_created:2018-01-19T13:46:48.013953", "value": "C70CD2CEB897D9293880073EE4DFCC3F7E3B794FDF6E49E24C4D3302BC69C8BB"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.014112"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[69]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "F1F792E85C3E8D067CDE804DA5B9EE94A0E57A2EB0117B0B3C1ECF7D845437C9"}], "key": "f1f792e85c3e8d067cde804da5b9ee94a0e57a2eb0117b0b3c1ecf7d845437c9-timestamp_created:2018-01-19T13:46:48.014112", "value": "F1F792E85C3E8D067CDE804DA5B9EE94A0E57A2EB0117B0B3C1ECF7D845437C9"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.014265"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[70]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "315C5C760EBF1479F13D5FCAD41F8F82E970EC805E3B8213833871154B137C34"}], "key": "315c5c760ebf1479f13d5fcad41f8f82e970ec805e3b8213833871154b137c34-timestamp_created:2018-01-19T13:46:48.014265", "value": "315C5C760EBF1479F13D5FCAD41F8F82E970EC805E3B8213833871154B137C34"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.014418"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[71]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "040745C90771868FCCB9A3339C763A07789C4C01A61EABA04F6680901702AAC7"}], "key": "040745c90771868fccb9a3339c763a07789c4c01a61eaba04f6680901702aac7-timestamp_created:2018-01-19T13:46:48.014418", "value": "040745C90771868FCCB9A3339C763A07789C4C01A61EABA04F6680901702AAC7"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.014572"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[72]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "661DB9224DB254DA006D2BC13BF50702B66CA41170EF78C8B644D4F97FB942B1"}], "key": "661db9224db254da006d2bc13bf50702b66ca41170ef78c8b644d4f97fb942b1-timestamp_created:2018-01-19T13:46:48.014572", "value": "661DB9224DB254DA006D2BC13BF50702B66CA41170EF78C8B644D4F97FB942B1"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.014727"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[73]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "77A155F35E071CAD546F3870CCFD8213D9814DA9BDB0E50C38D708E0828A901C"}], "key": "77a155f35e071cad546f3870ccfd8213d9814da9bdb0e50c38d708e0828a901c-timestamp_created:2018-01-19T13:46:48.014727", "value": "77A155F35E071CAD546F3870CCFD8213D9814DA9BDB0E50C38D708E0828A901C"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.014884"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[74]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "336E3725E4CE36EC186B73EC8DB7FEBC515664C5D960C349CA2CEA40C49B7F92"}], "key": "336e3725e4ce36ec186b73ec8db7febc515664c5d960c349ca2cea40c49b7f92-timestamp_created:2018-01-19T13:46:48.014884", "value": "336E3725E4CE36EC186B73EC8DB7FEBC515664C5D960C349CA2CEA40C49B7F92"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.015039"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[75]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "4B5A7C38D27FB0295F49E13E1AD6AFE9432489F57F1193D53F10BEB96EEAAF9F"}], "key": "4b5a7c38d27fb0295f49e13e1ad6afe9432489f57f1193d53f10beb96eeaaf9f-timestamp_created:2018-01-19T13:46:48.015039", "value": "4B5A7C38D27FB0295F49E13E1AD6AFE9432489F57F1193D53F10BEB96EEAAF9F"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.015197"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[76]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "4083F7FA3507AB2CFAC440D3E3C1603A2A793BA662C7BA7A798066DBCAF44AED"}], "key": "4083f7fa3507ab2cfac440d3e3c1603a2a793ba662c7ba7a798066dbcaf44aed-timestamp_created:2018-01-19T13:46:48.015197", "value": "4083F7FA3507AB2CFAC440D3E3C1603A2A793BA662C7BA7A798066DBCAF44AED"}, {"confidence": 1.0, "provenance": [{"qualifiers": {"timestamp_created": "2018-01-19T13:46:48.015359"}, "source": {"segment": "content_extraction.table.tables.[0].rows.[77]", "document_id": "xx"}, "confidence": {"extraction": 1.0}, "method": "create_kg_node_extractor", "extracted_value": "0CEAC8883837B85D1619A56379945E72156D0D2B1D5B20B16AA1AC1593241D2B"}], "key": "0ceac8883837b85d1619a56379945e72156d0d2b1d5b20b16aa1ac1593241d2b-timestamp_created:2018-01-19T13:46:48.015359", "value": "0CEAC8883837B85D1619A56379945E72156D0D2B1D5B20B16AA1AC1593241D2B"}]}, "raw_content": "\n\n\n\n\n\nResolutions adopted by the United Nations Security Council in 2016\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n
\n \n
\n\n
\n
\n \n
\n\n
\n
\n
\n
\n Back to top\n
\n

United Nations Security Council

\n
\n
\n \n\n\n \n
\n
\n \n\n\n
\n

Subscriptions:

\n\"e-mail Email | \"RSS RSS\n
\n
\n
\n \n

Security Council Resolutions

\n \ufeff\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Resolutions adopted by the Security Council \n in 2016
S/RES/2336 \n (2016)31 December 2016The situation in the Middle East (Syria)
S/RES/2335 \n (2016)30 December 2016The situation concerning Iraq
S/RES/2334 \n (2016)23 December 2016The situation in the Middle East, including the Palestinian question
S/RES/2333 \n (2016)23 December 2016The situation in Liberia
S/RES/2332 \n (2016)21 December 2016The situation in the Middle East (Syria)
S/RES/2331 \n (2016)20 December 2016Maintenance of international peace and security
S/RES/2330 \n (2016)19 December 2016The situation in the Middle East (UNDOF)
S/RES/2329 \n (2016)19 December 2016International Tribunal for the Prosecution of Persons Responsible \n for Serious Violations of International Humanitarian Law Committed in the \n Territory of the Former Yugoslavia since 1991
S/RES/2328 \n (2016)19 December 2016The situation in the Middle East (Syria)
S/RES/2327 \n (2016)16 December 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2326 \n (2016)15 December 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2325 \n (2016)15 December 2016Non-proliferation of weapons of mass destruction
S/RES/2324 \n (2016)14 December 2016Tribute to the outgoing Secretary-General
S/RES/2323 \n (2016)13 December 2016The situation in Libya
S/RES/2322 \n (2016)12 December 2016Threats to international peace and security caused by terrorist \n acts
S/RES/2321 \n (2016)30 November 2016Non-proliferation/Democratic People\u2019s Republic of Korea
S/RES/2320 \n (2016)18 November 2016Cooperation between the United Nations and regional and subregional \n organizations in maintaining international peace and security
S/RES/2319 \n (2016)17 November 2016The situation in the Middle East (Syria)
S/RES/2318 \n (2016)15 November 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2317 \n (2016)10 November 2016The situation in Somalia
S/RES/2316 \n (2016)9 November 2016The situation in Somalia
S/RES/2315 \n (2016)8 November 2016The situation in Bosnia and Herzegovina
S/RES/2314 \n (2016)31 October 2016The situation in the Middle East (Syria)
S/RES/2313 \n (2016)13 October 2016The question concerning Haiti
S/RES/2312 \n (2016)6 October 2016Maintenance of international peace and security
S/RES/2311 \n (2016)6 October 2016Recommendation for the appointment of the Secretary-General of the \n United Nations
S/RES/2310 \n (2016)23 September 2016Maintenance of international peace and security
S/RES/2309 \n (2016)22 September 2016Threats to international peace and security caused by terrorist \n acts: Aviation security
S/RES/2308 \n (2016)14 September 2016The situation in Liberia
S/RES/2307 \n (2016)13 September 2016Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council (S/2016/53)
S/RES/2306 \n (2016)6 September 2016International Criminal Tribunal for the former Yugoslavia (ICTY)
S/RES/2305 \n (2016)30 August 2016The situation in the Middle East (UNIFIL)
S/RES/2304 \n (2016)12 August 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2303 \n (2016)29 July 2016The situation in Burundi
S/RES/2302 \n (2016)29 July 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2301 \n (2016)26 July 2016The situation in the Central African Republic
S/RES/2300 \n (2016)26 July 2016The situation in Cyprus
S/RES/2299 \n (2016)25 July 2016The situation concerning Iraq
S/RES/2298 \n (2016)22 July 2016The situation in Libya
S/RES/2297 \n (2016)7 July 2016The situation in Somalia
S/RES/2296 \n (2016)29 June 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2295 \n (2016)29 June 2016

The situation in Mali

S/RES/2294 \n (2016)29 June 2016The situation in the Middle East (UNDOF)
S/RES/2293 \n (2016)23 June 2016

The situation concerning the Democratic Republic \n of the Congo

S/RES/2292 \n (2016)14 June 2016The situation in Libya
S/RES/2291 \n (2016)13 June 2016The situation in Libya
S/RES/2290 \n (2016)31 May 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2289 \n (2016)27 May 2016The situation in Somalia
S/RES/2288 \n (2016)25 May 2016The situation in Liberia
S/RES/2287 \n (2016)12 May 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2286 \n (2016)3 May 2016Protection of civilians in armed conflict
S/RES/2285 \n (2016)29 April 2016The situation concering Western Sahara
S/RES/2284 \n (2016)27 April 2016The situation in C\u00f4te d\u2019Ivoire
S/RES/2283 \n (2016)27 April 2016The situation in C\u00f4te d\u2019Ivoire
S/RES/2282 \n (2016)27 April 2016Post-conflict peacebuilding
S/RES/2281 \n (2016)26 April 2016The situation in the Central African Republic
S/RES/2280 \n (2016)7 April 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2279 \n (2016)1 April 2016The situation in Burundi
S/RES/2278 \n (2016)31 March 2016The situation in Libya
S/RES/2277 \n (2016)30 March 2016Democratic Republic of the Congo
S/RES/2276 \n (2016)24 March 2016Non-proliferation/Democratic People's Republic of Korea
S/RES/2275 \n (2016)24 March 2016The situation in Somalia
S/RES/2274 \n (2016)15 March 2016The situation in Afghanistan
S/RES/2273 \n (2016)15 March 2016The situation in Libya
S/RES/2272 \n (2016)11 March 2016United Nations peacekeeping operations
S/RES/2271 \n (2016)2 March 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2270 \n (2016)2 March 2016Non-proliferation/Democratic People\u2019s Republic of Korea
S/RES/2269 \n (2016)29 February 2016International Criminal Tribunal for the former Yugoslavia (ICTY) \n
\n International Criminal Tribunal for Rwanda (ICTR)
S/RES/2268 \n (2016)26 February 2016The situation in the Middle East (Syria)
S/RES/2267 \n (2016)26 February 2016Guinea-Bissau
S/RES/2266 \n (2016)24 February 2016The situation in the Middle East (Yemen)
S/RES/2265 \n (2016)10 February 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2264 \n (2016)9 February 2016The situation in the Central African Republic
S/RES/2263 \n (2016)28 January 2016The situation in Cyprus
S/RES/2262 \n (2016)27 January 2016The situation in the Central African Republic
S/RES/2261 \n (2016)25 January 2016Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council
S/RES/2260 \n (2016)20 January 2016C\u00f4te d\u2019Ivoire
\n\n\n \n
\n
\n \n\n\t
\n

QUICK LINKS

\n \n
\n \n \n \n \n \n \n
\n
\n \n
\n \n
\n
\n \n
\n \n\n\n\n\n\n", "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-01-19T21:46:48.015467", "@etk_process_time": 0.24406981468200684, "@etk_start_time": "2018-01-19T21:46:47.771397"}, "tld": "table.com", "content_extraction": {"url": {"text": "xx.com"}, "table": {"tables": [{"rows": [{"cells": [{"cell": "Resolutions adopted by the Security Council \n in 2016", "text": "Resolutions adopted by the Security Council \n in 2016"}]}, {"cells": [{"cell": "S/RES/2336 \n (2016)", "text": "S/RES/2336 \n (2016)"}, {"cell": "31 December 2016", "text": "31 December 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}, {"cells": [{"cell": "S/RES/2335 \n (2016)", "text": "S/RES/2335 \n (2016)"}, {"cell": "30 December 2016", "text": "30 December 2016"}, {"cell": "The situation concerning Iraq ", "text": "The situation concerning Iraq"}]}, {"cells": [{"cell": "S/RES/2334 \n (2016)", "text": "S/RES/2334 \n (2016)"}, {"cell": "23 December 2016", "text": "23 December 2016"}, {"cell": "The situation in the Middle East, including the Palestinian question", "text": "The situation in the Middle East, including the Palestinian question"}]}, {"cells": [{"cell": "S/RES/2333 \n (2016)", "text": "S/RES/2333 \n (2016)"}, {"cell": "23 December 2016", "text": "23 December 2016"}, {"cell": "The situation in Liberia", "text": "The situation in Liberia"}]}, {"cells": [{"cell": "S/RES/2332 \n (2016)", "text": "S/RES/2332 \n (2016)"}, {"cell": "21 December 2016", "text": "21 December 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}, {"cells": [{"cell": "S/RES/2331 \n (2016)", "text": "S/RES/2331 \n (2016)"}, {"cell": "20 December 2016", "text": "20 December 2016"}, {"cell": "Maintenance of international peace and security", "text": "Maintenance of international peace and security"}]}, {"cells": [{"cell": "S/RES/2330 \n (2016)", "text": "S/RES/2330 \n (2016)"}, {"cell": "19 December 2016", "text": "19 December 2016"}, {"cell": "The situation in the Middle East (UNDOF)", "text": "The situation in the Middle East (UNDOF)"}]}, {"cells": [{"cell": "S/RES/2329 \n (2016)", "text": "S/RES/2329 \n (2016)"}, {"cell": "19 December 2016", "text": "19 December 2016"}, {"cell": "International Tribunal for the Prosecution of Persons Responsible \n for Serious Violations of International Humanitarian Law Committed in the \n Territory of the Former Yugoslavia since 1991", "text": "International Tribunal for the Prosecution of Persons Responsible \n for Serious Violations of International Humanitarian Law Committed in the \n Territory of the Former Yugoslavia since 1991"}]}, {"cells": [{"cell": "S/RES/2328 \n (2016)", "text": "S/RES/2328 \n (2016)"}, {"cell": "19 December 2016", "text": "19 December 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}, {"cells": [{"cell": "S/RES/2327 \n (2016)", "text": "S/RES/2327 \n (2016)"}, {"cell": "16 December 2016", "text": "16 December 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2326 \n (2016)", "text": "S/RES/2326 \n (2016)"}, {"cell": "15 December 2016", "text": "15 December 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2325 \n (2016)", "text": "S/RES/2325 \n (2016)"}, {"cell": "15 December 2016", "text": "15 December 2016"}, {"cell": "Non-proliferation of weapons of mass destruction ", "text": "Non-proliferation of weapons of mass destruction"}]}, {"cells": [{"cell": "S/RES/2324 \n (2016)", "text": "S/RES/2324 \n (2016)"}, {"cell": "14 December 2016", "text": "14 December 2016"}, {"cell": "Tribute to the outgoing Secretary-General", "text": "Tribute to the outgoing Secretary-General"}]}, {"cells": [{"cell": "S/RES/2323 \n (2016)", "text": "S/RES/2323 \n (2016)"}, {"cell": "13 December 2016", "text": "13 December 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}, {"cells": [{"cell": "S/RES/2322 \n (2016)", "text": "S/RES/2322 \n (2016)"}, {"cell": "12 December 2016", "text": "12 December 2016"}, {"cell": "Threats to international peace and security caused by terrorist \n acts", "text": "Threats to international peace and security caused by terrorist \n acts"}]}, {"cells": [{"cell": "S/RES/2321 \n (2016)", "text": "S/RES/2321 \n (2016)"}, {"cell": "30 November 2016", "text": "30 November 2016"}, {"cell": "Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea", "text": "Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea"}]}, {"cells": [{"cell": "S/RES/2320 \n (2016)", "text": "S/RES/2320 \n (2016)"}, {"cell": "18 November 2016", "text": "18 November 2016"}, {"cell": "Cooperation between the United Nations and regional and subregional \n organizations in maintaining international peace and security", "text": "Cooperation between the United Nations and regional and subregional \n organizations in maintaining international peace and security"}]}, {"cells": [{"cell": "S/RES/2319 \n (2016)", "text": "S/RES/2319 \n (2016)"}, {"cell": "17 November 2016", "text": "17 November 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}, {"cells": [{"cell": "S/RES/2318 \n (2016)", "text": "S/RES/2318 \n (2016)"}, {"cell": "15 November 2016", "text": "15 November 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2317 \n (2016)", "text": "S/RES/2317 \n (2016)"}, {"cell": "10 November 2016", "text": "10 November 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}, {"cells": [{"cell": "S/RES/2316 \n (2016)", "text": "S/RES/2316 \n (2016)"}, {"cell": "9 November 2016", "text": "9 November 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}, {"cells": [{"cell": "S/RES/2315 \n (2016)", "text": "S/RES/2315 \n (2016)"}, {"cell": "8 November 2016", "text": "8 November 2016"}, {"cell": "The situation in Bosnia and Herzegovina", "text": "The situation in Bosnia and Herzegovina"}]}, {"cells": [{"cell": "S/RES/2314 \n (2016)", "text": "S/RES/2314 \n (2016)"}, {"cell": "31 October 2016", "text": "31 October 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}, {"cells": [{"cell": "S/RES/2313 \n (2016)", "text": "S/RES/2313 \n (2016)"}, {"cell": "13 October 2016", "text": "13 October 2016"}, {"cell": "The question concerning Haiti", "text": "The question concerning Haiti"}]}, {"cells": [{"cell": "S/RES/2312 \n (2016)", "text": "S/RES/2312 \n (2016)"}, {"cell": "6 October 2016", "text": "6 October 2016"}, {"cell": "Maintenance of international peace and security", "text": "Maintenance of international peace and security"}]}, {"cells": [{"cell": "S/RES/2311 \n (2016)", "text": "S/RES/2311 \n (2016)"}, {"cell": "6 October 2016", "text": "6 October 2016"}, {"cell": "Recommendation for the appointment of the Secretary-General of the \n United Nations", "text": "Recommendation for the appointment of the Secretary-General of the \n United Nations"}]}, {"cells": [{"cell": "S/RES/2310 \n (2016)", "text": "S/RES/2310 \n (2016)"}, {"cell": "23 September 2016", "text": "23 September 2016"}, {"cell": "Maintenance of international peace and security", "text": "Maintenance of international peace and security"}]}, {"cells": [{"cell": "S/RES/2309 \n (2016)", "text": "S/RES/2309 \n (2016)"}, {"cell": "22 September 2016", "text": "22 September 2016"}, {"cell": "Threats to international peace and security caused by terrorist \n acts: Aviation security", "text": "Threats to international peace and security caused by terrorist \n acts: Aviation security"}]}, {"cells": [{"cell": "S/RES/2308 \n (2016)", "text": "S/RES/2308 \n (2016)"}, {"cell": "14 September 2016", "text": "14 September 2016"}, {"cell": "The situation in Liberia", "text": "The situation in Liberia"}]}, {"cells": [{"cell": "S/RES/2307 \n (2016)", "text": "S/RES/2307 \n (2016)"}, {"cell": "13 September 2016", "text": "13 September 2016"}, {"cell": "Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council (S/2016/53)", "text": "Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council (S/2016/53)"}]}, {"cells": [{"cell": "S/RES/2306 \n (2016)", "text": "S/RES/2306 \n (2016)"}, {"cell": "6 September 2016", "text": "6 September 2016"}, {"cell": "International Criminal Tribunal for the former Yugoslavia (ICTY)", "text": "International Criminal Tribunal for the former Yugoslavia (ICTY)"}]}, {"cells": [{"cell": "S/RES/2305 \n (2016)", "text": "S/RES/2305 \n (2016)"}, {"cell": "30 August 2016", "text": "30 August 2016"}, {"cell": "The situation in the Middle East (UNIFIL)", "text": "The situation in the Middle East (UNIFIL)"}]}, {"cells": [{"cell": "S/RES/2304 \n (2016)", "text": "S/RES/2304 \n (2016)"}, {"cell": "12 August 2016", "text": "12 August 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2303 \n (2016)", "text": "S/RES/2303 \n (2016)"}, {"cell": "29 July 2016", "text": "29 July 2016"}, {"cell": "The situation in Burundi", "text": "The situation in Burundi"}]}, {"cells": [{"cell": "S/RES/2302 \n (2016)", "text": "S/RES/2302 \n (2016)"}, {"cell": "29 July 2016", "text": "29 July 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2301 \n (2016)", "text": "S/RES/2301 \n (2016)"}, {"cell": "26 July 2016", "text": "26 July 2016"}, {"cell": "The situation in the Central African Republic", "text": "The situation in the Central African Republic"}]}, {"cells": [{"cell": "S/RES/2300 \n (2016)", "text": "S/RES/2300 \n (2016)"}, {"cell": "26 July 2016", "text": "26 July 2016"}, {"cell": "The situation in Cyprus", "text": "The situation in Cyprus"}]}, {"cells": [{"cell": "S/RES/2299 \n (2016)", "text": "S/RES/2299 \n (2016)"}, {"cell": "25 July 2016", "text": "25 July 2016"}, {"cell": "The situation concerning Iraq", "text": "The situation concerning Iraq"}]}, {"cells": [{"cell": "S/RES/2298 \n (2016)", "text": "S/RES/2298 \n (2016)"}, {"cell": "22 July 2016", "text": "22 July 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}, {"cells": [{"cell": "S/RES/2297 \n (2016)", "text": "S/RES/2297 \n (2016)"}, {"cell": "7 July 2016", "text": "7 July 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}, {"cells": [{"cell": "S/RES/2296 \n (2016)", "text": "S/RES/2296 \n (2016)"}, {"cell": "29 June 2016", "text": "29 June 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2295 \n (2016)", "text": "S/RES/2295 \n (2016)"}, {"cell": "29 June 2016", "text": "29 June 2016"}, {"cell": "

The situation in Mali

", "text": "The situation in Mali"}]}, {"cells": [{"cell": "S/RES/2294 \n (2016)", "text": "S/RES/2294 \n (2016)"}, {"cell": "29 June 2016", "text": "29 June 2016"}, {"cell": "The situation in the Middle East (UNDOF)", "text": "The situation in the Middle East (UNDOF)"}]}, {"cells": [{"cell": "S/RES/2293 \n (2016)", "text": "S/RES/2293 \n (2016)"}, {"cell": "23 June 2016", "text": "23 June 2016"}, {"cell": "

The situation concerning the Democratic Republic \n of the Congo

", "text": "The situation concerning the Democratic Republic \n of the Congo"}]}, {"cells": [{"cell": "S/RES/2292 \n (2016)", "text": "S/RES/2292 \n (2016)"}, {"cell": "14 June 2016", "text": "14 June 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}, {"cells": [{"cell": "S/RES/2291 \n (2016)", "text": "S/RES/2291 \n (2016)"}, {"cell": "13 June 2016", "text": "13 June 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}, {"cells": [{"cell": "S/RES/2290 \n (2016)", "text": "S/RES/2290 \n (2016)"}, {"cell": "31 May 2016", "text": "31 May 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2289 \n (2016)", "text": "S/RES/2289 \n (2016)"}, {"cell": "27 May 2016", "text": "27 May 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}, {"cells": [{"cell": "S/RES/2288 \n (2016)", "text": "S/RES/2288 \n (2016)"}, {"cell": "25 May 2016", "text": "25 May 2016"}, {"cell": "The situation in Liberia", "text": "The situation in Liberia"}]}, {"cells": [{"cell": "S/RES/2287 \n (2016)", "text": "S/RES/2287 \n (2016)"}, {"cell": "12 May 2016", "text": "12 May 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2286 \n (2016)", "text": "S/RES/2286 \n (2016)"}, {"cell": "3 May 2016", "text": "3 May 2016"}, {"cell": "Protection of civilians in armed conflict", "text": "Protection of civilians in armed conflict"}]}, {"cells": [{"cell": "S/RES/2285 \n (2016)", "text": "S/RES/2285 \n (2016)"}, {"cell": "29 April 2016", "text": "29 April 2016"}, {"cell": "The situation concering Western Sahara", "text": "The situation concering Western Sahara"}]}, {"cells": [{"cell": "S/RES/2284 \n (2016)", "text": "S/RES/2284 \n (2016)"}, {"cell": "27 April 2016", "text": "27 April 2016"}, {"cell": "The situation in C\u00f4te d\u2019Ivoire", "text": "The situation in C\u00f4te d\u2019Ivoire"}]}, {"cells": [{"cell": "S/RES/2283 \n (2016)", "text": "S/RES/2283 \n (2016)"}, {"cell": "27 April 2016", "text": "27 April 2016"}, {"cell": "The situation in C\u00f4te d\u2019Ivoire", "text": "The situation in C\u00f4te d\u2019Ivoire"}]}, {"cells": [{"cell": "S/RES/2282 \n (2016)", "text": "S/RES/2282 \n (2016)"}, {"cell": "27 April 2016", "text": "27 April 2016"}, {"cell": "Post-conflict peacebuilding", "text": "Post-conflict peacebuilding"}]}, {"cells": [{"cell": "S/RES/2281 \n (2016)", "text": "S/RES/2281 \n (2016)"}, {"cell": "26 April 2016", "text": "26 April 2016"}, {"cell": "The situation in the Central African Republic", "text": "The situation in the Central African Republic"}]}, {"cells": [{"cell": "S/RES/2280 \n (2016)", "text": "S/RES/2280 \n (2016)"}, {"cell": "7 April 2016", "text": "7 April 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2279 \n (2016)", "text": "S/RES/2279 \n (2016)"}, {"cell": "1 April 2016", "text": "1 April 2016"}, {"cell": "The situation in Burundi", "text": "The situation in Burundi"}]}, {"cells": [{"cell": "S/RES/2278 \n (2016)", "text": "S/RES/2278 \n (2016)"}, {"cell": "31 March 2016", "text": "31 March 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}, {"cells": [{"cell": "S/RES/2277 \n (2016)", "text": "S/RES/2277 \n (2016)"}, {"cell": "30 March 2016", "text": "30 March 2016"}, {"cell": "Democratic Republic of the Congo", "text": "Democratic Republic of the Congo"}]}, {"cells": [{"cell": "S/RES/2276 \n (2016)", "text": "S/RES/2276 \n (2016)"}, {"cell": "24 March 2016", "text": "24 March 2016"}, {"cell": "Non-proliferation/Democratic People's Republic of Korea", "text": "Non-proliferation/Democratic People's Republic of Korea"}]}, {"cells": [{"cell": "S/RES/2275 \n (2016)", "text": "S/RES/2275 \n (2016)"}, {"cell": "24 March 2016", "text": "24 March 2016"}, {"cell": "The situation in Somalia", "text": "The situation in Somalia"}]}, {"cells": [{"cell": "S/RES/2274 \n (2016)", "text": "S/RES/2274 \n (2016)"}, {"cell": "15 March 2016", "text": "15 March 2016"}, {"cell": "The situation in Afghanistan", "text": "The situation in Afghanistan"}]}, {"cells": [{"cell": "S/RES/2273 \n (2016)", "text": "S/RES/2273 \n (2016)"}, {"cell": "15 March 2016", "text": "15 March 2016"}, {"cell": "The situation in Libya", "text": "The situation in Libya"}]}, {"cells": [{"cell": "S/RES/2272 \n (2016)", "text": "S/RES/2272 \n (2016)"}, {"cell": "11 March 2016", "text": "11 March 2016"}, {"cell": "United Nations peacekeeping operations", "text": "United Nations peacekeeping operations"}]}, {"cells": [{"cell": "S/RES/2271 \n (2016)", "text": "S/RES/2271 \n (2016)"}, {"cell": "2 March 2016", "text": "2 March 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2270 \n (2016)", "text": "S/RES/2270 \n (2016)"}, {"cell": "2 March 2016", "text": "2 March 2016"}, {"cell": "Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea", "text": "Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea"}]}, {"cells": [{"cell": "S/RES/2269 \n (2016)", "text": "S/RES/2269 \n (2016)"}, {"cell": "29 February 2016", "text": "29 February 2016"}, {"cell": "International Criminal Tribunal for the former Yugoslavia (ICTY) \n
\n International Criminal Tribunal for Rwanda (ICTR)", "text": "International Criminal Tribunal for the former Yugoslavia (ICTY) International Criminal Tribunal for Rwanda (ICTR)"}]}, {"cells": [{"cell": "S/RES/2268 \n (2016)", "text": "S/RES/2268 \n (2016)"}, {"cell": "26 February 2016", "text": "26 February 2016"}, {"cell": "The situation in the Middle East (Syria)", "text": "The situation in the Middle East (Syria)"}]}, {"cells": [{"cell": "S/RES/2267 \n (2016)", "text": "S/RES/2267 \n (2016)"}, {"cell": "26 February 2016", "text": "26 February 2016"}, {"cell": "Guinea-Bissau", "text": "Guinea-Bissau"}]}, {"cells": [{"cell": "S/RES/2266 \n (2016)", "text": "S/RES/2266 \n (2016)"}, {"cell": "24 February 2016", "text": "24 February 2016"}, {"cell": "The situation in the Middle East (Yemen)", "text": "The situation in the Middle East (Yemen)"}]}, {"cells": [{"cell": "S/RES/2265 \n (2016)", "text": "S/RES/2265 \n (2016)"}, {"cell": "10 February 2016", "text": "10 February 2016"}, {"cell": "Reports of the Secretary-General on the Sudan and South Sudan", "text": "Reports of the Secretary-General on the Sudan and South Sudan"}]}, {"cells": [{"cell": "S/RES/2264 \n (2016)", "text": "S/RES/2264 \n (2016)"}, {"cell": "9 February 2016", "text": "9 February 2016"}, {"cell": "The situation in the Central African Republic", "text": "The situation in the Central African Republic"}]}, {"cells": [{"cell": "S/RES/2263 \n (2016)", "text": "S/RES/2263 \n (2016)"}, {"cell": "28 January 2016", "text": "28 January 2016"}, {"cell": "The situation in Cyprus", "text": "The situation in Cyprus"}]}, {"cells": [{"cell": "S/RES/2262 \n (2016)", "text": "S/RES/2262 \n (2016)"}, {"cell": "27 January 2016", "text": "27 January 2016"}, {"cell": "The situation in the Central African Republic", "text": "The situation in the Central African Republic"}]}, {"cells": [{"cell": "S/RES/2261 \n (2016)", "text": "S/RES/2261 \n (2016)"}, {"cell": "25 January 2016", "text": "25 January 2016"}, {"cell": "Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council", "text": "Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council"}]}, {"cells": [{"cell": "S/RES/2260 \n (2016)", "text": "S/RES/2260 \n (2016)"}, {"cell": "20 January 2016", "text": "20 January 2016"}, {"cell": "C\u00f4te d\u2019Ivoire", "text": "C\u00f4te d\u2019Ivoire"}]}], "features": {"ratio_of_href_tags_to_cells": 0.33189655172413796, "avg_col_len": 0.0, "avg_cell_len": 29.379310344827587, "avg_col_len_dev": 0, "avg_row_len_dev": 15.584831386845318, "ratio_of_colspan_tags_to_cells": 0.0, "avg_row_len": 89.35897435897436, "ratio_of_img_tags_to_cells": 0.0, "max_cols_in_a_row": 3, "ratio_of_colons_to_cells": 0.004310344827586207, "ratio_of_select_tags_to_cells": 0.0, "no_of_cells": 232, "no_of_cols_containing_num": 0, "ratio_of_input_tags_to_cells": 0.0, "no_of_cols_empty": 0, "no_of_rows": 78}, "context_after": "Resolutions adopted by the Security Council in 2016 S/RES/2336 (2016) 31 December 2016 The situation in the Middle East (Syria)", "context_before": "\ufeff Security Council Resolutions InstanceBeginEditable name=\"Content\" ", "html": "
Resolutions adopted by the Security Council \n in 2016
S/RES/2336 \n (2016)31 December 2016The situation in the Middle East (Syria)
S/RES/2335 \n (2016)30 December 2016The situation concerning Iraq
S/RES/2334 \n (2016)23 December 2016The situation in the Middle East, including the Palestinian question
S/RES/2333 \n (2016)23 December 2016The situation in Liberia
S/RES/2332 \n (2016)21 December 2016The situation in the Middle East (Syria)
S/RES/2331 \n (2016)20 December 2016Maintenance of international peace and security
S/RES/2330 \n (2016)19 December 2016The situation in the Middle East (UNDOF)
S/RES/2329 \n (2016)19 December 2016International Tribunal for the Prosecution of Persons Responsible \n for Serious Violations of International Humanitarian Law Committed in the \n Territory of the Former Yugoslavia since 1991
S/RES/2328 \n (2016)19 December 2016The situation in the Middle East (Syria)
S/RES/2327 \n (2016)16 December 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2326 \n (2016)15 December 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2325 \n (2016)15 December 2016Non-proliferation of weapons of mass destruction
S/RES/2324 \n (2016)14 December 2016Tribute to the outgoing Secretary-General
S/RES/2323 \n (2016)13 December 2016The situation in Libya
S/RES/2322 \n (2016)12 December 2016Threats to international peace and security caused by terrorist \n acts
S/RES/2321 \n (2016)30 November 2016Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea
S/RES/2320 \n (2016)18 November 2016Cooperation between the United Nations and regional and subregional \n organizations in maintaining international peace and security
S/RES/2319 \n (2016)17 November 2016The situation in the Middle East (Syria)
S/RES/2318 \n (2016)15 November 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2317 \n (2016)10 November 2016The situation in Somalia
S/RES/2316 \n (2016)9 November 2016The situation in Somalia
S/RES/2315 \n (2016)8 November 2016The situation in Bosnia and Herzegovina
S/RES/2314 \n (2016)31 October 2016The situation in the Middle East (Syria)
S/RES/2313 \n (2016)13 October 2016The question concerning Haiti
S/RES/2312 \n (2016)6 October 2016Maintenance of international peace and security
S/RES/2311 \n (2016)6 October 2016Recommendation for the appointment of the Secretary-General of the \n United Nations
S/RES/2310 \n (2016)23 September 2016Maintenance of international peace and security
S/RES/2309 \n (2016)22 September 2016Threats to international peace and security caused by terrorist \n acts: Aviation security
S/RES/2308 \n (2016)14 September 2016The situation in Liberia
S/RES/2307 \n (2016)13 September 2016Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council (S/2016/53)
S/RES/2306 \n (2016)6 September 2016International Criminal Tribunal for the former Yugoslavia (ICTY)
S/RES/2305 \n (2016)30 August 2016The situation in the Middle East (UNIFIL)
S/RES/2304 \n (2016)12 August 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2303 \n (2016)29 July 2016The situation in Burundi
S/RES/2302 \n (2016)29 July 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2301 \n (2016)26 July 2016The situation in the Central African Republic
S/RES/2300 \n (2016)26 July 2016The situation in Cyprus
S/RES/2299 \n (2016)25 July 2016The situation concerning Iraq
S/RES/2298 \n (2016)22 July 2016The situation in Libya
S/RES/2297 \n (2016)7 July 2016The situation in Somalia
S/RES/2296 \n (2016)29 June 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2295 \n (2016)29 June 2016

The situation in Mali

S/RES/2294 \n (2016)29 June 2016The situation in the Middle East (UNDOF)
S/RES/2293 \n (2016)23 June 2016

The situation concerning the Democratic Republic \n of the Congo

S/RES/2292 \n (2016)14 June 2016The situation in Libya
S/RES/2291 \n (2016)13 June 2016The situation in Libya
S/RES/2290 \n (2016)31 May 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2289 \n (2016)27 May 2016The situation in Somalia
S/RES/2288 \n (2016)25 May 2016The situation in Liberia
S/RES/2287 \n (2016)12 May 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2286 \n (2016)3 May 2016Protection of civilians in armed conflict
S/RES/2285 \n (2016)29 April 2016The situation concering Western Sahara
S/RES/2284 \n (2016)27 April 2016The situation in C\u00f4te d\u2019Ivoire
S/RES/2283 \n (2016)27 April 2016The situation in C\u00f4te d\u2019Ivoire
S/RES/2282 \n (2016)27 April 2016Post-conflict peacebuilding
S/RES/2281 \n (2016)26 April 2016The situation in the Central African Republic
S/RES/2280 \n (2016)7 April 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2279 \n (2016)1 April 2016The situation in Burundi
S/RES/2278 \n (2016)31 March 2016The situation in Libya
S/RES/2277 \n (2016)30 March 2016Democratic Republic of the Congo
S/RES/2276 \n (2016)24 March 2016Non-proliferation/Democratic People's Republic of Korea
S/RES/2275 \n (2016)24 March 2016The situation in Somalia
S/RES/2274 \n (2016)15 March 2016The situation in Afghanistan
S/RES/2273 \n (2016)15 March 2016The situation in Libya
S/RES/2272 \n (2016)11 March 2016United Nations peacekeeping operations
S/RES/2271 \n (2016)2 March 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2270 \n (2016)2 March 2016Non-proliferation/Democratic People\u00e2\u20ac\u2122s Republic of Korea
S/RES/2269 \n (2016)29 February 2016International Criminal Tribunal for the former Yugoslavia (ICTY) \n
\n International Criminal Tribunal for Rwanda (ICTR)
S/RES/2268 \n (2016)26 February 2016The situation in the Middle East (Syria)
S/RES/2267 \n (2016)26 February 2016Guinea-Bissau
S/RES/2266 \n (2016)24 February 2016The situation in the Middle East (Yemen)
S/RES/2265 \n (2016)10 February 2016Reports of the Secretary-General on the Sudan and South Sudan
S/RES/2264 \n (2016)9 February 2016The situation in the Central African Republic
S/RES/2263 \n (2016)28 January 2016The situation in Cyprus
S/RES/2262 \n (2016)27 January 2016The situation in the Central African Republic
S/RES/2261 \n (2016)25 January 2016Identical letters dated 19 January 2016 from the Permanent Representative \n of Colombia to the United Nations addressed to the Secretary-General and \n the President of the Security Council
S/RES/2260 \n (2016)20 January 2016C\u00f4te d\u2019Ivoire
", "fingerprint": "-1-10-11-12-13-14-15-16-17-18-19-1991-2-20-2016-21-22-2260-2261-2262-2263-2264-2265-2266-2267-2268-2269-2270-2271-2272-2273-2274-2275-2276-2277-2278-2279-2280-2281-2282-2283-2284-2285-2286-2287-2288-2289-2290-2291-2292-2293-2294-2295-2296-2297-2298-2299-23-2300-2301-2302-2303-2304-2305-2306-2307-2308-2309-2310-2311-2312-2313-2314-2315-2316-2317-2318-2319-2320-2321-2322-2323-2324-2325-2326-2327-2328-2329-2330-2331-2332-2333-2334-2335-2336-24-25-26-27-28-29-3-30-31-53-6-7-8-9-Afghanistan-African-April-August-Aviation-Bissau-Bosnia-Burundi-C-Central-Colombia-Committed-Congo-Cooperation-Council-Criminal-Cyprus-December-Democratic-East-February-Former-General-Guinea-Haiti-Herzegovina-Humanitarian-ICTR-ICTY-Identical-International-Iraq-Ivoire-January-July-June-Korea-Law-Liberia-Libya-Maintenance-Mali-March-May-Middle-Nations-Non-November-October-Palestinian-People-Permanent-Persons-Post-President-Prosecution-Protection-RES-Recommendation-Reports-Representative-Republic-Resolutions-Responsible-Rwanda-S-Sahara-Secretary-Security-September-Serious-Somalia-South-Sudan-Syria-Territory-The-Threats-Tribunal-Tribute-UNDOF-UNIFIL-United-Violations-Western-Yemen-Yugoslavia-a-acts-addressed-adopted-align-and-appointment-armed-asp-between-br-by-caused-civilians-class-colspan-concering-concerning-conflict-d-dated-destruction-en-for-former-from-ga-href-http-in-including-international-left-letters-maintaining-mass-of-on-operations-org-organizations-outgoing-p-peace-peacebuilding-peacekeeping-proliferation-question-regional-s-search-security-since-situation-subregional-symbol-table-tbltitle-td-te-terrorist-th-the-to-tr-un-view_doc-weapons-www"}], "html_text": " Skip to main navigation Skip to content Welcome to the United Nations. It's your world. \u0639\u0631\u0628\u064a \u4e2d\u6587 English Fran\u00e7ais \u0420\u0443\u0441\u0441\u043a\u0438\u0439 Espa\u00f1ol Back to top United Nations Security Council HOME ABOUT PRESIDENCY MEMBERS PROGRAMME OF WORK DOCUMENTS MEETINGS SUBSIDIARY ORGANS 2231 (2015) REPERTOIRE About SC Documents Resolutions Presidential Statements Press Statements Notes by the President Exchange of Letters Reports submitted by / transmitted by the Secretary-General Reports of the Security Council Missions Annual Reports Volumes of Resolutions Round-ups Highlights of Security Council Practice Annual Highlights Monthly Highlights Documents Search UN Documents Subscriptions: Email | RSS Security Council Resolutions \ufeff QUICK LINKS Resolutions Voting Structure Functions and Powers Newsroom KEY DOCUMENTS United Nations Charter Repertoire of the Practice of the Security Council Provisional Rules of Procedure Working Methods Handbook RELATED SITES Secretary-General UN Peacekeeping Department of Political Affairs Security Council Affairs Division General Assembly RESOURCES Site Map Glossary Documents Search FAQ - Security Council FAQ - Documentation Copyright | Terms of Use | Privacy Notice | Site Index | Fraud Alert | Contact Us "}}, "doc_id": "xx", "document_id": "xx"} diff --git a/etk/unit_tests/ground_truth/table_out.jl b/etk/unit_tests/ground_truth/table_out.jl index ac593d2a..2762f973 100644 --- a/etk/unit_tests/ground_truth/table_out.jl +++ b/etk/unit_tests/ground_truth/table_out.jl @@ -1 +1 @@ -[{"rows": [{"cells": [{"cell": "Princess\u00c2\u00a0Penelope", "text": "Princess\u00c2\u00a0Penelope"}]}, {"cells": [{"cell": "DATE-CHECK Portland Oregon featured escort of the moment is Princess\u00a0Penelope \r\n\t\t\t\twho is listed in Portland Oregon escort services since 2016.\u00a0 This 22 Yrs yr \r\n\t\t\t\told with Brown hair beauty has a 34B\u00a0Petite figure is in Portland Oregon.", "text": "DATE-CHECK Portland Oregon featured escort of the moment is Princess\u00a0Penelope \r\n\t\t\t\twho is listed inPortland Oregon escort servicessince 2016.\u00a0 This 22 Yrs yr \r\n\t\t\t\told with Brown hair beauty has a 34B\u00a0Petite figure is in Portland Oregon."}]}], "features": {"ratio_of_href_tags_to_cells": 0.5, "avg_col_len": 255.0, "avg_cell_len": 128.0, "avg_col_len_dev": 110.5, "avg_row_len_dev": 0.0, "ratio_of_colspan_tags_to_cells": 0.0, "avg_row_len": 128.0, "ratio_of_img_tags_to_cells": 0.0, "max_cols_in_a_row": 1, "ratio_of_colons_to_cells": 0.0, "ratio_of_select_tags_to_cells": 0.0, "no_of_cells": 2, "no_of_cols_containing_num": 1, "ratio_of_input_tags_to_cells": 0.0, "no_of_cols_empty": 0, "no_of_rows": 2}, "context_after": "Princess\u00a0Penelope DATE-CHECK Portland Oregon featured escort of the moment is Princess\u00a0Penelope who is listed in Portland Oregon escort services since 2016.\u00a0 This 22 Yrs yr old with Brown hair beauty has a 34B\u00a0Petite figure is in Portland Oregon.", "context_before": "Portland Oregon Escorts and Adult Entertainers Portland Oregon Escorts and Adult Entertainers in Portland Oregon by DATE-CHECK HTML PUBLIC \"-//IETF//DTD HTML//EN\"", "html": "
Princess\u00c2\u00a0Penelope
DATE-CHECK Portland Oregon featured escort of the moment is Princess\u00a0Penelope \r\n\t\t\t\twho is listed in Portland Oregon escort services since 2016.\u00a0 This 22 Yrs yr \r\n\t\t\t\told with Brown hair beauty has a 34B\u00a0Petite figure is in Portland Oregon.
", "fingerprint": "-2016-22-3-34B-Brown-CHECK-DATE-Oregon-Penelope-Petite-Portland-Princess-This-Yrs-_self-a-align-asp-b-basetext-basetextwhite-beauty-center-class-colspan-escort-escorts-featured-figure-hair-has-href-in-is-listed-moment-of-old-services-since-strong-table-target-td-the-tr-who-with-yr"}, {"rows": [{"cells": [{"cell": "\n

By entering in to this website or clicking ANY link within in this domain you hereby agree to all of this site's Terms & Conditions

", "text": "By entering in to this website or clicking ANY link within in this domain you hereby agree to all of this site'sTerms & Conditions"}]}, {"cells": [{"cell": "

\nI AGREE

", "text": "I AGREE"}]}], "features": {"ratio_of_href_tags_to_cells": 1.0, "avg_col_len": 137.0, "avg_cell_len": 68.5, "avg_col_len_dev": 61.5, "avg_row_len_dev": 0.0, "ratio_of_colspan_tags_to_cells": 0.0, "avg_row_len": 68.5, "ratio_of_img_tags_to_cells": 0.0, "max_cols_in_a_row": 1, "ratio_of_colons_to_cells": 0.0, "ratio_of_select_tags_to_cells": 0.0, "no_of_cells": 2, "no_of_cols_containing_num": 0, "ratio_of_input_tags_to_cells": 0.0, "no_of_cols_empty": 0, "no_of_rows": 2}, "context_after": "By entering in to this website or clicking ANY link within in this domain you hereby agree to all of this site's Terms & Conditions I AGREE A quality escort directory and Portland Oregon screening verification for escorts and clients in Portland Oregon area since 2002.", "context_before": " Portland Oregon Escorts and Adult Entertainers Portland Oregon Escorts and Adult Entertainers in Portland Oregon by DATE-CHECK", "html": "
\n

By entering in to this website or clicking ANY link within in this domain you hereby agree to all of this site's Terms & Conditions

\nI AGREE

", "fingerprint": "-4-49-AGREE-ANY-By-Conditions-I-Red12Bold-Terms-White10BoldItalic-_self-a-agree-align-all-amp-asp-center-check-class-clicking-com-date-domain-entering-escorts-font-height-hereby-href-htm-http-in-legal-link-of-or-p-s-site-size-table-target-td-this-to-tr-user_terms__conditions-website-within-www-you"}] \ No newline at end of file +[{"rows": [{"cells": [{"cell": "Princess\u00c2\u00a0Penelope", "text": "Princess\u00c2\u00a0Penelope"}]}, {"cells": [{"cell": "DATE-CHECK Portland Oregon featured escort of the moment is Princess\u00a0Penelope \r\n\t\t\t\twho is listed in Portland Oregon escort services since 2016.\u00a0 This 22 Yrs yr \r\n\t\t\t\told with Brown hair beauty has a 34B\u00a0Petite figure is in Portland Oregon.", "text": "DATE-CHECK Portland Oregon featured escort of the moment is Princess\u00a0Penelope \r\n\t\t\t\twho is listed in Portland Oregon escort services since 2016.\u00a0 This 22 Yrs yr \r\n\t\t\t\told with Brown hair beauty has a 34B\u00a0Petite figure is in Portland Oregon."}]}], "features": {"ratio_of_href_tags_to_cells": 0.5, "avg_col_len": 257.0, "avg_cell_len": 129.0, "avg_col_len_dev": 111.5, "avg_row_len_dev": 0.0, "ratio_of_colspan_tags_to_cells": 0.0, "avg_row_len": 129.0, "ratio_of_img_tags_to_cells": 0.0, "max_cols_in_a_row": 1, "ratio_of_colons_to_cells": 0.0, "ratio_of_select_tags_to_cells": 0.0, "no_of_cells": 2, "no_of_cols_containing_num": 1, "ratio_of_input_tags_to_cells": 0.0, "no_of_cols_empty": 0, "no_of_rows": 2}, "context_after": "Princess\u00a0Penelope DATE-CHECK Portland Oregon featured escort of the moment is Princess\u00a0Penelope who is listed in Portland Oregon escort services since 2016.\u00a0 This 22 Yrs yr old with Brown hair beauty has a 34B\u00a0Petite figure is in Portland Oregon.", "context_before": "Portland Oregon Escorts and Adult Entertainers Portland Oregon Escorts and Adult Entertainers in Portland Oregon by DATE-CHECK HTML PUBLIC \"-//IETF//DTD HTML//EN\"", "html": "
Princess\u00c2\u00a0Penelope
DATE-CHECK Portland Oregon featured escort of the moment is Princess\u00a0Penelope \r\n\t\t\t\twho is listed in Portland Oregon escort services since 2016.\u00a0 This 22 Yrs yr \r\n\t\t\t\told with Brown hair beauty has a 34B\u00a0Petite figure is in Portland Oregon.
", "fingerprint": "-2016-22-3-34B-Brown-CHECK-DATE-Oregon-Penelope-Petite-Portland-Princess-This-Yrs-_self-a-align-asp-b-basetext-basetextwhite-beauty-center-class-colspan-escort-escorts-featured-figure-hair-has-href-in-is-listed-moment-of-old-services-since-strong-table-target-td-the-tr-who-with-yr"}, {"rows": [{"cells": [{"cell": "\n

By entering in to this website or clicking ANY link within in this domain you hereby agree to all of this site's Terms & Conditions

", "text": "By entering in to this website or clicking ANY link within in this domain you hereby agree to all of this site's Terms & Conditions"}]}, {"cells": [{"cell": "

\nI AGREE

", "text": "I AGREE"}]}], "features": {"ratio_of_href_tags_to_cells": 1.0, "avg_col_len": 138.0, "avg_cell_len": 69.0, "avg_col_len_dev": 62.0, "avg_row_len_dev": 0.0, "ratio_of_colspan_tags_to_cells": 0.0, "avg_row_len": 69.0, "ratio_of_img_tags_to_cells": 0.0, "max_cols_in_a_row": 1, "ratio_of_colons_to_cells": 0.0, "ratio_of_select_tags_to_cells": 0.0, "no_of_cells": 2, "no_of_cols_containing_num": 0, "ratio_of_input_tags_to_cells": 0.0, "no_of_cols_empty": 0, "no_of_rows": 2}, "context_after": "By entering in to this website or clicking ANY link within in this domain you hereby agree to all of this site's Terms & Conditions I AGREE A quality escort directory and Portland Oregon screening verification for escorts and clients in Portland Oregon area since 2002.", "context_before": " Portland Oregon Escorts and Adult Entertainers Portland Oregon Escorts and Adult Entertainers in Portland Oregon by DATE-CHECK", "html": "
\n

By entering in to this website or clicking ANY link within in this domain you hereby agree to all of this site's Terms & Conditions

\nI AGREE

", "fingerprint": "-4-49-AGREE-ANY-By-Conditions-I-Red12Bold-Terms-White10BoldItalic-_self-a-agree-align-all-amp-asp-center-check-class-clicking-com-date-domain-entering-escorts-font-height-hereby-href-htm-http-in-legal-link-of-or-p-s-site-size-table-target-td-this-to-tr-user_terms__conditions-website-within-www-you"}] diff --git a/etk/unit_tests/resources/extraction_config_table.json b/etk/unit_tests/resources/extraction_config_table.json deleted file mode 100644 index 279e2a5e..00000000 --- a/etk/unit_tests/resources/extraction_config_table.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "extraction_policy": "replace", - "error_handling": "raise_error", - "resources": { - "dictionaries": { - - }, - "landmark": [ - ], - "pickle": { - "table_classifier": "./etk/unit_tests/table_data_extraction/table_cl_model.bin", - "sem_labels": "./etk/unit_tests/table_data_extraction/HT-attribute-labels.json", - "sem_labels_mapping": "./etk/unit_tests/table_data_extraction/test_rules.jl" - } - }, - "content_extraction": { - "input_path": "raw_content", - "extractors": { - "table": { - "field_name": "table", - "config": { - "classify_tables": "yes", - "classification_model": "table_classifier", - "sem_types": "sem_labels" - }, - "extraction_policy": "keep_existing" - } - } - }, - "data_extraction": [ - { - "input_path": [ - "content_extraction.table[*]" - ], - "fields": { - "*" : { - "extractors": { - "table_data_extractor": { - "config": { - "method": "rule_based", - "model": "sem_labels_mapping", - "sem_types": "sem_labels" - }, - "extraction_policy": "replace" - } - } - } - } - } - ], - "kg_enhancement": [ - - ] -} \ No newline at end of file diff --git a/etk/unit_tests/test_extraction_guards.py b/etk/unit_tests/test_extraction_guards.py new file mode 100644 index 00000000..be59ac7f --- /dev/null +++ b/etk/unit_tests/test_extraction_guards.py @@ -0,0 +1,173 @@ +import unittest +import sys +import os +sys.path.append('../../') +from etk.core import Core +import json +import codecs + + +class TestNestedDocs(unittest.TestCase): + + def setUp(self): + self.e_config = { + "document_id": "doc_id", + "extraction_policy": "replace", + "error_handling": "raise_error", + "resources": { + "dictionaries": { + + }, + "landmark": [ + ], + "pickle": { + } + }, + "content_extraction": { + "input_path": "raw_content", + "extractors": { + "table": { + "field_name": "table", + "config": { + }, + "extraction_policy": "replace" + } + } + }, + "data_extraction": [ + { + "input_path": [ + "$.content_extraction.table_row.cells[*]" + ], + "guards": [ + { + "type": "doc", + "path": "$.url", + "regex": "xx.com" + }, + { + "type": "doc", + "path": "$.@type", + "regex": "table_row_doc" + } + ], + "fields": { + "event_date": { + "extractors": { + "extract_as_is": { + "config": { + "post_filter": "parse_date" + } + } + } + } + } + } + ], + "kg_enhancement": [ + + ] + } + self.doc1 = { + "@type":"table_row_doc", + "content_extraction":{ + "table_row":{ + "cells":[ + { + "text":"S/RES/2321 \n (2016)", + "cell":"S/RES/2321 \n (2016)" + }, + { + "text":"30 November 2016", + "cell":"30 November 2016" + }, + { + "text":"Non-proliferation/Democratic People Republic of Korea", + "cell":"Non-proliferation/Democratic People Republic of Korea" + } + ] + } + }, + "document_id":"1C3EE04533D60FDF32CAC9A49D4A1B040DDF9CD3F1A543F2DA15B3AA1A79AD3E", + "type":"test_table3", + "created_by":"etk", + "tld":"xx.com", + "doc_id":"1C3EE04533D60FDF32CAC9A49D4A1B040DDF9CD3F1A543F2DA15B3AA1A79AD3E", + "url":"xx.com", + "@timestamp":"2018-01-19T21:32:36.824Z", + "parent_doc_id":"xx", + "prefilter_filter_outcome":"no_action", + "@timestamp_created":"2018-01-19T21:32:09.124495", + "@version":"1", + "@execution_profile":{ + "@run_core_time":1.2515268325805664, + "@worker_id":0, + "@doc_sent_time":"2018-01-19T21:32:36.821271", + "@etk_process_time":1.2514488697052002, + "@doc_length":1324, + "@etk_start_time":"2018-01-19T21:32:35.569749", + "@doc_arrived_time":"2018-01-19T21:32:01.623305", + "@doc_wait_time":0.0, + "@etk_end_time":"2018-01-19T21:32:36.821198" + } + } + self.doc2 = { + "@type": "not_table_row_doc", + "content_extraction": { + "table_row": { + "cells": [ + { + "text": "S/RES/2321 \n (2016)", + "cell": "S/RES/2321 \n (2016)" + }, + { + "text": "30 November 2016", + "cell": "30 November 2016" + }, + { + "text": "Non-proliferation/Democratic People Republic of Korea", + "cell": "Non-proliferation/Democratic People Republic of Korea" + } + ] + } + }, + "document_id": "1C3EE04533D60FDF32CAC9A49D4A1B040DDF9CD3F1A543F2DA15B3AA1A79AD3E", + "type": "test_table3", + "created_by": "etk", + "tld": "xx.com", + "doc_id": "1C3EE04533D60FDF32CAC9A49D4A1B040DDF9CD3F1A543F2DA15B3AA1A79AD3E", + "url": "xx.com", + "@timestamp": "2018-01-19T21:32:36.824Z", + "parent_doc_id": "xx", + "prefilter_filter_outcome": "no_action", + "@timestamp_created": "2018-01-19T21:32:09.124495", + "@version": "1", + "@execution_profile": { + "@run_core_time": 1.2515268325805664, + "@worker_id": 0, + "@doc_sent_time": "2018-01-19T21:32:36.821271", + "@etk_process_time": 1.2514488697052002, + "@doc_length": 1324, + "@etk_start_time": "2018-01-19T21:32:35.569749", + "@doc_arrived_time": "2018-01-19T21:32:01.623305", + "@doc_wait_time": 0.0, + "@etk_end_time": "2018-01-19T21:32:36.821198" + } + } + file_path = os.path.join(os.path.dirname(__file__), "ground_truth/table.jl") + table_out = os.path.join(os.path.dirname(__file__), "ground_truth/table_out.jl") + no_table_file = os.path.join(os.path.dirname(__file__), "ground_truth/1_content_extracted.jl") + self.doc = json.load(codecs.open(file_path, "r", "utf-8")) + self.table_ex = json.load(codecs.open(table_out, "r", "utf-8")) + self.no_table = json.load(codecs.open(no_table_file, "r", "utf-8")) + + def test_guards(self): + c = Core(extraction_config=self.e_config) + r = c.process(self.doc1) + self.assertTrue("knowledge_graph" in r) + self.assertTrue("event_date" in r['knowledge_graph']) + r = c.process(self.doc2) + self.assertTrue("knowledge_graph" not in r or "event_date" not in r['knowledge_graph']) + +if __name__ == '__main__': + unittest.main() diff --git a/etk/unit_tests/test_extraction_nested_doc.py b/etk/unit_tests/test_extraction_nested_doc.py new file mode 100644 index 00000000..373d1606 --- /dev/null +++ b/etk/unit_tests/test_extraction_nested_doc.py @@ -0,0 +1,70 @@ +import unittest +import sys +import os +sys.path.append('../../') +from etk.core import Core +import json +import codecs + + +class TestNestedDocs(unittest.TestCase): + + def setUp(self): + self.e_config = { + "document_id": "doc_id", + "extraction_policy": "replace", + "error_handling": "raise_error", + "resources": { + "dictionaries": { + + }, + "landmark": [ + ], + "pickle": { + } + }, + "content_extraction": { + "input_path": "raw_content", + "extractors": { + "table": { + "field_name": "table", + "config": { + }, + "extraction_policy": "replace" + } + } + }, + "data_extraction": [ + { + "input_path": [ + "*.table.tables[*].rows[*]" + ], + "fields": { + "nested_test": { + "extractors": { + "create_kg_node_extractor": { + "config": { + "@type": "table_row_doc", + "segment_name": "table_row" + } + } + } + } + } + } + ], + "kg_enhancement": [ + + ] + } + file_path = os.path.join(os.path.dirname(__file__), "ground_truth/nested_doc.jl") + self.doc = json.load(codecs.open(file_path, "r", "utf-8")) + + def test_num_nested_docs(self): + c = Core(extraction_config=self.e_config) + r = c.process(self.doc) + self.assertTrue("nested_docs" in r) + self.assertEqual(len(r["nested_docs"]), 78) + +if __name__ == '__main__': + unittest.main()