From 96cc8ea9cfece81a1c2cb938f57b047ee96e8ddd Mon Sep 17 00:00:00 2001 From: emgeier Date: Sat, 6 Dec 2025 11:46:22 -0600 Subject: [PATCH 1/3] source only person query fix to reflect triple update and person facet searches event independence --- person/search.js | 44 ++++++++++++++++++++--------------------- resources/css/print.css | 5 ++--- 2 files changed, 24 insertions(+), 25 deletions(-) diff --git a/person/search.js b/person/search.js index 5892c61f5..4a93540de 100644 --- a/person/search.js +++ b/person/search.js @@ -15,8 +15,8 @@ export function buildMultiFilterQuery(state) { // Event Keyword filter // Add event participant//works if (state.selectedEventKeywords.size > 0) { blocks.push(` - ?event swdt:event-participant ?person . - ?event sp:event-keyword/sps:event-keyword ?eventKeyword . + ?keywordevent swdt:event-participant ?person . + ?keywordevent sp:event-keyword/sps:event-keyword ?eventKeyword . VALUES ?eventKeyword { ${Array.from(state.selectedEventKeywords).map(uri => `<${uri}>`).join(' ')} } `); } @@ -72,7 +72,7 @@ if (state.selectedPlaceKeywords.size > 0) { { ?person swdt:residence ?place . } UNION { - ?event swdt:event-place ?place ; + ?placeevent swdt:event-place ?place ; swdt:event-participant ?person . } } @@ -83,10 +83,11 @@ if (state.selectedPlaceKeywords.size > 0) { // Source filter if (state.selectedSourceKeywords.size > 0 && state.selectedSourceKeywords.size < 3) { blocks.push(` + ?person rdf:type schema:Person . + ?person ?p ?statementNode . ?statementNode spr:reference-URL ?factoid . ?factoid spr:part-of-series ?source . VALUES ?source { ${Array.from(state.selectedSourceKeywords).map(uri => `<${uri}>`).join(' ')} } - ?person ?p ?statementNode . `); } @@ -158,24 +159,23 @@ export async function fetchData(state) { console.log('Fetching persons with multi-type query:', query); // --- EARLY EXIT CONDITION: Source-only selection crashes Neptune--- - const onlySourceSelected = - state.selectedSourceKeywords.size > 0 && state.selectedSourceKeywords.size < 3 && - (!state.persons || state.persons.length === 0) && - state.selectedEventKeywords.size === 0 && - state.selectedRelationshipKeywords.size === 0 && - state.selectedOccupationKeywords.size === 0 && - state.selectedGenderKeywords.size === 0 && - state.selectedPlaceKeywords.size === 0; - - if (onlySourceSelected) { - console.warn("Source-only facet query prevented."); - return { - error: true, - message: "Source choice alone is insufficient for query. Please select at least one additional facet.", - rows: [] - }; - } - query.split('\n').forEach((line,i)=>console.log(String(i+1).padStart(3,' '), line)); + // const onlySourceSelected = + // state.selectedSourceKeywords.size > 0 && state.selectedSourceKeywords.size < 3 && + // (!state.persons || state.persons.length === 0) && + // state.selectedEventKeywords.size === 0 && + // state.selectedRelationshipKeywords.size === 0 && + // state.selectedOccupationKeywords.size === 0 && + // state.selectedGenderKeywords.size === 0 && + // state.selectedPlaceKeywords.size === 0; + + // if (onlySourceSelected) { + // console.warn("Source-only facet query prevented."); + // return { + // error: true, + // message: "Source choice alone is insufficient for query. Please select at least one additional facet.", + // rows: [] + // }; + // } const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); diff --git a/resources/css/print.css b/resources/css/print.css index 65a34cee7..e5d06cd6c 100644 --- a/resources/css/print.css +++ b/resources/css/print.css @@ -2,7 +2,7 @@ * { text-shadow: none !important; - color: #000 !important; // Black prints faster: h5bp.com/s + color: #000 !important; background: transparent !important; box-shadow: none !important; } @@ -20,7 +20,6 @@ content: " (" attr(title) ")"; } - // Don't show links for images, or javascript/internal links .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { @@ -34,7 +33,7 @@ } thead { - display: table-header-group; // h5bp.com/t + display: table-header-group; } tr, From b0c4cf1c7b4dcc2338db9a83e4bdcec7ba2810ef Mon Sep 17 00:00:00 2001 From: Erin Geier <115035002+emgeier@users.noreply.github.com> Date: Sat, 6 Dec 2025 15:47:57 -0600 Subject: [PATCH 2/3] Modify workflow trigger in all_code_to_s3.yml to push for all erin-dev code changes Comment out the paths section in the workflow trigger. --- .github/workflows/all_code_to_s3.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/all_code_to_s3.yml b/.github/workflows/all_code_to_s3.yml index 832d917ac..1f78dba23 100644 --- a/.github/workflows/all_code_to_s3.yml +++ b/.github/workflows/all_code_to_s3.yml @@ -4,8 +4,8 @@ on: push: branches: - 'erin-dev' - paths: - - '.github/workflows/all_code_to_s3.yml' + # paths: + # - '.github/workflows/all_code_to_s3.yml' permissions: id-token: write From d729bcc223596ede0c0a6eeb2a5b18e644b78b1c Mon Sep 17 00:00:00 2001 From: emgeier Date: Sun, 7 Dec 2025 20:33:33 -0600 Subject: [PATCH 3/3] no lazy loading of menu items --- event/README.md | 264 + event/all_facets_per_event.json | 147244 +++++++++++++++++++++++++++++ menu.js | 2 +- person/README.md | 228 + 4 files changed, 147737 insertions(+), 1 deletion(-) create mode 100644 event/README.md create mode 100644 event/all_facets_per_event.json create mode 100644 person/README.md diff --git a/event/README.md b/event/README.md new file mode 100644 index 000000000..d0095efec --- /dev/null +++ b/event/README.md @@ -0,0 +1,264 @@ +Below is a polished **README.md for the EVENT SEARCH system** in SPEAR. +This matches the structure and tone of the Person Search README, and covers: + +* Event-level facet logic +* Correct SPARQL patterns +* Working queries +* cURL diagnostics +* Integration details for the JS front-end + +If you want a combined *Search System Developer Guide* later, I can generate that too. + +--- + +# ๐Ÿ“˜ **README.md โ€” Event Search (SPEAR Prosopography)** + +# SPEAR Event Search + +Advanced multi-facet querying for Syriac **events**, including participants, places, keywords, occupations, relationships, and uncertainty markers. + +The Event Search system powers the SPEAR interface that returns **event factoids** associated with Syriac persons and places, enriched with descriptions, provenance, and taxonomy terms. + +--- + +# ๐Ÿ” Overview + +The SPEAR Event Search allows users to filter events by: + +* **Associated persons** +* **Event keywords** (taxonomy terms) +* **Places** +* **Occupations** (of persons within the event) +* **Relationship types** +* **Gender of participants** +* **Uncertainty flags** +* **Source provenance** + +Search is performed against the **Neptune SPARQL endpoint**: + +``` +https://sparql.vanderbilt.edu/sparql +``` + +Event metadata comes from: + +* `` โ€” event factoid triples, statement nodes, provenance +* `` โ€” person labels associated with events +* `` โ€” place labels + +--- + +# ๐ŸŽฏ Event Search Logic + +Event Search differs from Person Search in one major way: + +## **Each facet must apply to the *same event instance*.** + +Example: + +A user selects: + +* Keyword = *monasticism* +* Place = *2605* + +The query must return only events where: + +``` +(event has event-keyword monasticism) +AND +(event has event-place 2605) +``` + +Unlike Person Search, we do **not** intersect facets at the person level. +We intersect *inside the event*. + +--- + +# ๐Ÿงฉ Event Data Model (Simplified) + +### Direct triples (`swdt:`) + +```ttl +:event8559-121 swdt:event-place ; + swdt:event-participant ; + swdt:event-keyword . +``` + +### Provenance statement nodes (`sp:` โ†’ `sps:`) + +```ttl +:event8559-121 sp:event-participant :stmt1 . +:stmt1 sps:event-participant ; + spr:reference-URL . +``` + +Event Search should use **both**: + +* Direct facts (`swdt:`) +* Statement nodes (`sp:` / `sps:`) for provenance and qualifiers + +--- + +# โœ” Correct SPARQL Template for Event Search + +This is the default pattern used by the application when assembling the dynamic query. + +```sparql +PREFIX rdfs: +PREFIX schema: +PREFIX swdt: +PREFIX sp: +PREFIX sps: +PREFIX spr: + +SELECT DISTINCT ?event ?label ?place ?keyword ?person ?ref WHERE { + + GRAPH { + + ### EVENT facet: must match requested keyword(s) + FILTER EXISTS { + ?event sp:event-keyword/sps:event-keyword ?kw . + VALUES ?kw { } + } + + ### EVENT facet: must match requested place(s) + FILTER EXISTS { + ?event swdt:event-place ?pl . + VALUES ?pl { } + } + + ### List all participants + ?event swdt:event-participant ?person . + + OPTIONAL { ?event sp:event-participant ?stmt . + ?stmt spr:reference-URL ?ref } + + OPTIONAL { ?event rdfs:label ?label } + OPTIONAL { ?event swdt:event-place ?place } + OPTIONAL { ?event sp:event-keyword/sps:event-keyword ?keyword } + } +} +ORDER BY ?event +``` + +--- + +# ๐ŸŸฆ cURL Example โ€” Test Event Search Manually + +```bash +curl -G "https://sparql.vanderbilt.edu/sparql" \ +--data-urlencode 'query= +PREFIX rdfs: +PREFIX swdt: +PREFIX sp: +PREFIX sps: + +SELECT DISTINCT ?event ?label ?person ?place ?keyword WHERE { + GRAPH { + + VALUES ?kw { } + VALUES ?pl { } + + FILTER EXISTS { ?event sp:event-keyword/sps:event-keyword ?kw } + FILTER EXISTS { ?event swdt:event-place ?pl } + + ?event swdt:event-participant ?person . + OPTIONAL { ?event rdfs:label ?label } + OPTIONAL { ?event swdt:event-place ?place } + OPTIONAL { ?event sp:event-keyword/sps:event-keyword ?keyword } + } +} +ORDER BY ?event +' \ +-H "Accept: application/sparql-results+json" +``` + +This verifies whether the event(s) matching all facets exist. + +--- + +# ๐Ÿงช Diagnostic: Show All Facets per Event + +Useful when an event appears in one facet search but not in another. + +```bash +curl -G "https://sparql.vanderbilt.edu/sparql" \ +--data-urlencode 'query= +PREFIX swdt: +PREFIX sp: +PREFIX sps: + +SELECT DISTINCT ?event ?keyword ?place ?person WHERE { + GRAPH { + + ?event swdt:event-participant ?person . + OPTIONAL { ?event swdt:event-place ?place } + OPTIONAL { ?event sp:event-keyword/sps:event-keyword ?keyword } + } +} +ORDER BY ?event +' \ +-H "Accept: application/sparql-results+json" +``` + +This reveals how events are structured and helps validate facet logic. + +--- + +# ๐Ÿ”ง Front-End Integration Notes + +The Event Search UI generates dynamic SPARQL: + +* Based on selected filters +* Using `FILTER EXISTS` for facet intersection +* Using UI state objects (`selectedEventKeywords`, `selectedPlaceKeywords`, etc.) + +### Search Flow + +1. User selects facets +2. JS assembles SPARQL clauses for each facet +3. Clauses are inserted into the template query +4. Query is executed via fetch() +5. Results are enriched through: + + * Person metadata (labels, gender) + * Place metadata + * Provenance references + +### Important: + +โœ” Event facets must match *inside the same event*. This is because a user is shown cited factoids. +โœ” Person facets are used only to filter events containing a person with the selected characteriscs +โœ” Unlike Person Search, OR logic is rare; the Event Search defaults to AND semantics + +--- + +# ๐Ÿ“Œ Known Pitfalls and Fixes + +### โ— Problem: Event appears in a facet-only test but disappears when multiple facets are selected + +**Cause:** One facet applies to the event; another facet applies to the person +**Fix:** Ensure all event filters apply inside the `` graph and use `FILTER EXISTS` blocks. + +### โ— Problem: Statement nodes missing + +If `sp:` or `sps:` data is missing, keywords or provenance may not appear. +Use diagnostic queries to isolate gaps. + +--- + +# ๐Ÿ—‚ Summary + +Event Search enforces **event-level facet intersection**: + +| Facet | Applied At | Notes | +| ----------- | ------------------------------------- | ------------------------------------------------- | +| Keyword | Event | Must match same event | +| Place | Event | Birth/death/residence apply only to Person Search | +| Participant | Event | Multiple participants allowed | +| Gender | Person โ†’ filtered within event search | | +| Uncertainty | Statement node | | +| Source | Provenance nodes | | + +This strict but correct model ensures that search results represent **actual historical events**, not aggregated person properties. + diff --git a/event/all_facets_per_event.json b/event/all_facets_per_event.json new file mode 100644 index 000000000..56483226c --- /dev/null +++ b/event/all_facets_per_event.json @@ -0,0 +1,147244 @@ +{ + "head" : { + "vars" : [ "event", "keyword", "place", "person" ] + }, + "results" : { + "bindings" : [ { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3738" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3738" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3738" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3738" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2418" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2418" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2418" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2418" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3675" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3675" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-111" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2751" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3675" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-112" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2840" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3250" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-112" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2840" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3250" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-112" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3250" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-112" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3250" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-113" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3250" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-113" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3250" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-113" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3250" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-113" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-113" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-113" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-117" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-117" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-117" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-117" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-117" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-117" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-117" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-117" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-117" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-121" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1508" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-121" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1508" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-126" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-126" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-126" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3676" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-126" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3676" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-126" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-126" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-126" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3676" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-126" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3676" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-127" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3239" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-127" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-128" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3239" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-128" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3239" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-129" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/390" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3239" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-129" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/390" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-129" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3239" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-129" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3251" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2795" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3251" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2795" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3251" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-134" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3239" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-134" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3239" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-135" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-136" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-137" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-137" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-137" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3200" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-137" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3200" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-137" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-137" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-141" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3200" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-145" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3255" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-145" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3255" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-145" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3200" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-145" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3200" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3251" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-150" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3255" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-151" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3255" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-151" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3255" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-151" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-151" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-156" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-156" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-156" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-157" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-157" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-157" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-158" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-158" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-158" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-159" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-159" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3263" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-159" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-159" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3192" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-164" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-164" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-168" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-168" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-168" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-172" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-172" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2826" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2826" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2826" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2826" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2826" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2826" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2864" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2864" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2864" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2864" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2864" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-178" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2864" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-184" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-184" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-184" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-184" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-188" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2795" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-189" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3188" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-189" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3188" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-189" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-189" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-194" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3188" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-194" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3188" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-195" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3188" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-195" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3188" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-195" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3256" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-195" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3256" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-195" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3188" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-195" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3188" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-195" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3256" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-195" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3256" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-196" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3256" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-196" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/chastity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3256" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-196" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3256" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-196" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3256" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3192" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-202" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mission" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scribes" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1528" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1528" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scribes" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1528" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1528" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scribes" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1528" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1528" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scribes" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scribes" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scribes" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3217" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3217" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-58" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3217" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3217" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3217" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethnicity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3672" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethnicity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3672" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3671" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethnicity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3671" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3670" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethnicity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3670" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/embezzlement" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/embezzlement" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3251" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3185" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2273" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2824" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2824" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2273" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/358" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/358" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/358" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3674" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/358" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3674" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/358" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2273" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/358" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2273" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-95" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-95" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2849" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2849" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2849" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2849" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2849" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2849" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-98" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-99" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-99" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3187" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-99" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event10510-99" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3186" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3000-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3000-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3001-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2768" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3001-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2768" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3001-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2768" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3001-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3001-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3001-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3721" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3721" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3721" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3721" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3721" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3721" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2582" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2582" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2582" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2582" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2582" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2582" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3002-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3003-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2737" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3003-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2737" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3003-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2737" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3003-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3003-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3003-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3003-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3003-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3003-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-75" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3129" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3129" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2528" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2528" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-76" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-77" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/64" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1469" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2681" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/958" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/958" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/958" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/958" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/958" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/958" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2409" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2409" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2409" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-86" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-88" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3004-88" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3005-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3006-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3722" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3006-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sacraments" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3722" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3006-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3722" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3006-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3006-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sacraments" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3006-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3774" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3774" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3774" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2628" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2628" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2628" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3774" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3774" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3774" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2685" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2685" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2685" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3007-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3008-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3775" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3008-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3775" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3008-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3775" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3008-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2591" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3008-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2591" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3008-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2591" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3008-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3008-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3008-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2684" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1919" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3009-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1919" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2712" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2712" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2712" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2712" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2691" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2712" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3010-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2691" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2712" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3776" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3776" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3776" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3776" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2766" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2766" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2766" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3011-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2766" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2416" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2416" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2416" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2416" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2416" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2416" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2416" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2530" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2672" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2513" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellowship" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3012-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fellowship" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2767" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2767" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2767" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mercy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mercy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1983" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1983" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1983" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3013-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3014-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3014-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3014-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3014-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3014-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3014-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3014-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3014-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3015-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2727" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2727" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2733" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2733" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/680" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1091" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3016-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2612" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2612" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2612" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2687" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2687" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2687" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2636" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2636" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2636" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/chalcedonians" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2687" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2687" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2687" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2612" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2612" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2612" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3017-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2778" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2778" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2778" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3018-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trials" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trials" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3019-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2667" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2667" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2667" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2667" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2667" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2667" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3034" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3020-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2714" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oppression" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2714" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2714" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2714" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2648" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oppression" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2648" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2648" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2648" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oppression" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3021-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3022-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/confession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/confession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2691" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2691" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/confession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2691" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3023-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2691" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heaven" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heaven" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3789" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2560" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2561" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3024-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3025-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3026-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3027-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2628" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3027-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2628" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3027-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3027-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tradition" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tradition" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tradition" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2518" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2518" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2518" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2518" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2517" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2517" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2517" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2517" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2516" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2516" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2516" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2516" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/friendship-for" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/149" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2519" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2521" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2521" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2521" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2521" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2522" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2522" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2522" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2522" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2523" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2523" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2523" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2523" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3028-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/labor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/labor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/labor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3029-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3035" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2753" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2753" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2753" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2753" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2753" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3030-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2730" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2730" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2730" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2688" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2688" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2688" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2688" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2688" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2730" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3031-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2730" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3036" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3039" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3038" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2527" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3032-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2531" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3033-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2526" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3034-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2540" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/343" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2540" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2540" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2540" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2540" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2540" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3042" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/apostasy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3043" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3043" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3043" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3043" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2541" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2541" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2541" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2541" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2541" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3035-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2539" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dioceses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dioceses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dioceses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dioceses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dioceses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dioceses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dioceses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dioceses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2642" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2542" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2543" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3045" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3036-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3778" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3778" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3777" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3777" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3777" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2424" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3037-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2624" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2624" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2624" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2624" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2624" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2624" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3046" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3046" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3046" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3046" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3046" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3046" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3050" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3050" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3050" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3050" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3050" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3050" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2550" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2550" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2550" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2550" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2550" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2549" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2549" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2549" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2549" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2549" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3048" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3048" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3048" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3048" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3049" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3049" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3049" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3049" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3047" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3047" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3047" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3047" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2549" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2549" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2549" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2549" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3038-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2552" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2552" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2552" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2587" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2587" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2552" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2552" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/162" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/162" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/162" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/162" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/162" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/162" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2554" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2554" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2554" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2554" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3055" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3055" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3055" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3040-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/generals-roman" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/generals-roman" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/generals-roman" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/generals-roman" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/generals-roman" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/generals-roman" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3041-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2588" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2588" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2588" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2588" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2486" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3058" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3058" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3058" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3058" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3058" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3058" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3057" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3057" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3057" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3057" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3057" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3057" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3042-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3055" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2525" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/scholastics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2557" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2557" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2557" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2553" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3043-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2559" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3044-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3064" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3064" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3064" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3064" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3064" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3064" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3064" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3064" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3063" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3062" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3045-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/173" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dioceses" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2459" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3046-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3047-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2479" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3047-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2479" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3047-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greed" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2479" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3047-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2400" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3047-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2400" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3047-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greed" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2400" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3047-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3047-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3047-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greed" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2514" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3066" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3048-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2563" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2563" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2563" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2563" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2563" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2563" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slaves" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slaves" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slaves" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2708" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/27" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/91" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3070" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3068" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3072" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3049-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3726" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3726" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greed" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3726" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pride" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3726" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greed" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pride" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greed" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pride" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/usury" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3050-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/usury" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3060" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3060" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3060" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3060" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3051-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2686" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3052-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3071" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3071" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3071" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3071" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3071" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3071" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2565" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2564" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3053-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2703" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2703" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2703" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/countryside" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2703" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/countryside" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/countryside" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/countryside" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3073" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3054-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/99" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2417" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3074" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3074" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3074" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3074" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3074" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3055-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2458" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/122" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/122" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/122" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/122" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/122" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/122" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/122" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/122" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/122" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3075" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3075" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3075" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3075" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2661" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3056-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2575" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2571" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2571" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poetry" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2571" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poetics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2571" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2571" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2570" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2570" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poetry" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2570" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poetics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2570" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2570" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poetry" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poetics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2572" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poets" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3076" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/adultery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3076" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3076" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poetics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3076" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3076" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3076" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poets" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/adultery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poetics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poets" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/adultery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poetics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3057-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2576" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2576" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2576" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2576" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2576" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2576" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3078" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3078" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3078" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3078" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3078" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3078" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3077" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2577" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3079" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3058-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3053" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3053" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3053" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2631" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2631" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2631" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3053" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3053" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3053" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2649" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2649" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2649" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2719" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2644" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3061-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2617" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2617" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2617" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2617" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2617" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2678" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2678" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2617" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2617" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2568" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3063-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2701" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2778" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2778" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2778" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3064-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2760" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2760" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2760" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2760" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2700" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2700" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2700" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/11" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2692" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2692" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2692" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2692" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2677" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2692" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2692" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2692" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2692" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3782" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2760" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3067-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3074-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3074-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3074-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3074-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3773" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3074-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3074-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3074-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3074-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2638" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2638" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2638" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3075-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mercy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mercy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2614" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2425" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3076-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/biographies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/biographies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/biographies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2750" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2750" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2750" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/biographies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2750" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/biographies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3077-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/biographies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2600" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2600" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sacraments" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2600" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2600" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sacraments" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2600" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2600" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2600" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3078-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3736" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3735" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3735" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3735" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3735" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2556" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2410" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3079-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3080-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3080-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/antichrist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3081-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2418" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3081-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2418" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3081-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3081-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/635" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3081-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2418" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3081-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2418" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3081-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3081-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3082-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3739" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3082-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3739" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3082-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3739" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3082-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2622" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3082-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2622" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3082-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2622" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3082-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3082-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3082-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/governors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/governors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2420" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2420" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2420" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2420" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/governors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/governors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2420" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/governors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2420" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2420" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2420" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/governors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3083-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2630" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3741" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3741" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3741" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3741" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3741" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3741" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3741" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2422" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2422" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2422" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2422" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2423" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3085-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1471" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2726" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishop-over" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-nestorian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2535" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2535" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/crosses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2535" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/crosses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2532" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3086-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/crosses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2469" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-nicaea-325" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2469" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2469" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2469" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2726" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-laodicea-364" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2726" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2726" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2726" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2726" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2738" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-laodicea-364" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2738" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2738" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2738" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2738" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creeds" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creeds" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2687" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2508" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2584" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2599" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2507" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2471" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2471" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2471" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2471" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2498" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-carthage-251" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2498" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2498" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2456" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2456" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2634" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2634" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2456" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2456" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2456" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2634" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2634" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2634" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3088-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1826" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1826" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1826" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1826" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1826" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1826" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1826" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1826" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3089-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2439" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2439" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2439" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2439" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2439" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2439" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2439" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2439" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3783" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3090-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2520" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2660" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2660" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2660" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2660" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3091-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2706" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2706" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2706" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3790" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3790" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3790" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3093-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1464" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2702" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2537" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3101" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bringer-of-legal-charges-against" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3094-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/doubt" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/doubt" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/doubt" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2601" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2601" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/doubt" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2516" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2516" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/doubt" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3095-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3096-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3096-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3096-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3096-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3096-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3096-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3096-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3096-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3096-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3097-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2746" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3097-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2746" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3097-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2746" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3097-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3097-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3097-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3099-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3100-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3101-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3101-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3101-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3101-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/administration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3101-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3102-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/10" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3102-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/apostasy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/10" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3102-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/10" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3102-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/administration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/10" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3102-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3102-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/apostasy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3102-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3102-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/administration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3103-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2754" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2754" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2754" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2754" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2754" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3104-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3105-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3105-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3105-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mercy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1457" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/jews" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/jews" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/jews" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3105" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3105" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3105" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3746" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3746" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3746" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2441" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2431" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3745" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3745" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3107-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/apostasy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/56" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3106" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3732" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3732" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3732" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3733" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3733" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3733" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2468" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3732" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3732" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3732" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2447" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2447" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2446" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2446" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2444" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2444" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2450" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2445" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2445" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3108-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dreams" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2679" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2679" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2679" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dreams" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2436" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2602" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2602" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2602" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2602" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2602" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2602" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2602" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-21" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2659" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2456" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/354" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2456" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arianism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2752" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2752" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3109-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2752" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/451" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2607" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/astronomy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/astrology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/astronomy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/astrology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/astronomy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/astrology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2503" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3110-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3753" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3753" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3753" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3753" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3029" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3029" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3029" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2495" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2665" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2665" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2665" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2832" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2562" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2832" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3754" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3754" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3754" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3111-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3113-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3728" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3728" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3728" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3728" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fathers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3728" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fathers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3114-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fathers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3115" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3115" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3115" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3114" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3114" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3114" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2641" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2641" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2641" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2641" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2699" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2699" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2699" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2699" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/466" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/466" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/466" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/466" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/376" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divorce" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3115-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3116-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2462" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3116-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2462" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3116-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2462" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3116-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2462" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3116-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3116-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3116-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3116-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2758" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creeds" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2758" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2758" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2758" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2758" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2758" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2758" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2758" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creeds" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creeds" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creeds" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3749" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/faith" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3749" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3749" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3117-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3749" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3118-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3118-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3118-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3118-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3118-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3118-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3118-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3118-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3120-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2574" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3121-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3122-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3123-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3123-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3123-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3123-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3123-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3123-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3123-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3123-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2465" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2465" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2465" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2522" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2407" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3124-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2496" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3125-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2443" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2443" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2443" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2443" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2443" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2443" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3126-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/chastity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2596" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2596" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/chastity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2596" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2596" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2596" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/chastity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2596" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2596" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2596" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3119" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3119" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3119" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/time" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/time" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3127-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/thoughts" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inheritance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/thoughts" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inheritance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/thoughts" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inheritance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/thoughts" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inheritance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3128-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3129-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophets" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophets" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophets" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3131-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophets" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3132-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3246" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3132-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3246" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3132-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3246" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3132-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3132-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3132-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3133-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2470" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2470" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/catechesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demon-possession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/catechesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demon-possession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/catechesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demon-possession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2467" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3134-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2642" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2642" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2642" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2642" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2593" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2593" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2593" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2593" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3135-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2693" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2693" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2693" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/seals" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2693" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/511" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2693" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2693" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2693" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/seals" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2693" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3136-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/resurrection" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3759" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/resurrection" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3138-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/resurrection" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/57" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/57" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/57" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/57" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/falsification" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3139-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/grammar" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suicide" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/grammar" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suicide" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2654" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2654" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2675" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2682" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2708" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2708" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2708" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2637" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2637" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2637" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2618" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2618" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2618" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/400" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/400" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/400" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3141-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/worship" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/worship" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/worship" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/worship" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/worship" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/readers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2735" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2735" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3142-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3143-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2438" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3143-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2438" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3143-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2438" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3143-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3143-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3143-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3144-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3145-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3145-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3145-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2748" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3145-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3145-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3145-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3148-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3750" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3148-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3750" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3148-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3750" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3148-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3148-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3148-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3752" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3752" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3752" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3751" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2477" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2477" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3149-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2477" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3729" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3729" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3729" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3729" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3729" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3729" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3729" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/canon-law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3150-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3151-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3151-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3151-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3151-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3152-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3152-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3152-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3152-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3153-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2585" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3153-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2585" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3153-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3153-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3153-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2585" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3153-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2585" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3153-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3153-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3154-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3154-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3154-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3154-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3154-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3154-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3155-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3155-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3155-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3155-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3155-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3155-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3156-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3156-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3156-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3156-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3156-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3156-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3157-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3157-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2702" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3157-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3157-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3158-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3158-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3158-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3158-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3158-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3158-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3158-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3158-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3159-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3159-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3159-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3159-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3159-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3159-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3159-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3159-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3160-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3160-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3160-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3160-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3160-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3160-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3161-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3161-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3161-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3161-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3161-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3161-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3162-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3163-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3163-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3163-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3163-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3164-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3164-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2770" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3164-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3164-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3165-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3165-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3165-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2515" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3165-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3165-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3165-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3167-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3167-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3167-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3167-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3167-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3167-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3168-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3168-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3168-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3168-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3168-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3168-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3168-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3168-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3169-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2709" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2709" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2709" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2670" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2670" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/211" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2670" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2709" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2709" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2709" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2670" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2670" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3170-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/219" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2670" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3172-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/resurrection" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/215" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3172-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/215" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3172-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/215" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3172-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/215" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3172-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/215" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3172-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2444" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3172-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3172-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3173-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3173-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3173-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3173-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3173-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3173-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3173-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3173-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hell" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/resurrection" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hell" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/resurrection" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2428" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2765" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2765" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hell" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2765" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/resurrection" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2765" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hell" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3174-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/resurrection" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3175-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2747" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3176-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3177-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2724" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2724" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2724" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2724" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2724" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2724" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3178-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2472" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2673" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3179-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3180-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3180-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3180-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3180-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pastoral-care" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3180-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3180-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3180-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3180-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pastoral-care" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-nicaea-325" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-constantinople-i-381" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-nicaea-325" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-constantinople-i-381" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3181-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3182-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3182-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3182-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3182-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3786" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3786" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3786" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3786" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3786" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3786" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2427" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2442" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3183-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3184-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3184-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3184-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3184-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3184-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2690" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3185-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3185-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3185-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2460" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3185-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3185-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3185-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/792" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2598" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2598" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2598" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2474" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2474" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2474" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2470" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2470" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3186-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2470" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3187-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3187-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tradition" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3187-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3187-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tradition" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3188-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2776" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3188-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2776" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3188-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2776" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3188-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3188-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3188-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3188-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2776" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3188-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/480" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3189-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2637" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diptychs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/names" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2609" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2609" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2569" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2567" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2604" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2610" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2610" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2610" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2610" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3190-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3191-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3192-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3192-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3192-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2429" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3192-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2429" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3192-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3192-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3192-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2429" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3192-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2429" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3193-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3193-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3193-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3193-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3193-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3193-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3193-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3193-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3194-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3194-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3194-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3194-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2592" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2592" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2592" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2580" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3195-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2437" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3196-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blood" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blood" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sex" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blood" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sex" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blood" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3197-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3198-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3198-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3198-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hymnography" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3198-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3198-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3198-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hymnography" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3198-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3198-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hagiography" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2725" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2725" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2725" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hagiography" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hagiography" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hagiography" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2725" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3199-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hagiography" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2725" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3200-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3200-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3200-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3200-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3200-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3200-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3201-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3201-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3201-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3202-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2719" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3202-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2719" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3202-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2719" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3202-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2719" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3202-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3202-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3202-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3202-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3205-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3205-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orthodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3205-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pastoral-care" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3207-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fall" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3207-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sex" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3207-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3207-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3207-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fall" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3207-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sex" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3207-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3207-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3208-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/56" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3208-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incarnation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3209-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3210-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3210-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3210-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3210-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theodicy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3210-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3210-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3210-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3210-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theodicy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3211-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3211-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3211-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dualism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3211-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theodicy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2647" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3211-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3211-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3211-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dualism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3211-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theodicy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3212-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3212-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3212-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3212-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3212-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3212-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3212-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3212-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3213-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3213-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3213-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3213-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2597" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3213-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3213-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3213-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3213-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3214-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2639" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3214-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2639" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3214-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2639" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3214-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3214-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3214-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3215-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3215-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3215-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3215-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trinity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3216-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2433" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3216-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3787" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3217-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3218-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3218-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3218-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3218-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3218-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3218-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2595" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3219-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3220-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3220-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3220-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3220-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eschatology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3221-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3221-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sacrifices" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3221-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3221-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2681" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3221-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3221-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sacrifices" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3221-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/circumcision" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3221-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3222-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/free-will" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3222-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3222-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3222-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3222-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/free-will" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3222-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3222-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/law" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3222-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2594" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3223-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fall" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1731" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fall" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2740" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/men" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fall" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3224-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3225-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3225-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3225-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/angels" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3225-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3225-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3225-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/angels" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3226-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3226-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3226-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/angels" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3226-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3226-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3226-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/angels" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3226-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3226-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3227-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3228-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3228-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3228-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/idolatry" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3228-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3228-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3228-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3228-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/idolatry" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3228-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ethics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3229-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3229-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/redemption" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3229-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3229-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/redemption" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3230-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3230-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3230-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3230-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3230-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3230-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/altars" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3231-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/altars" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3232-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3232-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3232-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3232-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3232-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3232-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3233-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/57" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3233-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3233-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/57" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3233-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heresiology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/57" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3233-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/57" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3233-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3233-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heresiology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3233-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3234-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2645" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3234-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2645" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3234-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3234-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/soul" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/soul" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/soul" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2755" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/creation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3235-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/soul" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3236-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2775" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3236-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2775" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3236-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2775" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3236-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2775" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3236-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3236-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/allegory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3236-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3236-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3237-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3237-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3237-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3237-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3237-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3237-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2723" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divine-judgment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2723" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2723" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2723" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2723" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2723" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divine-judgment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3238-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2478" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3239-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heaven" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hell" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/afterlife" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2620" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heaven" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hell" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3241-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/afterlife" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2551" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/579" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/579" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/579" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2730" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-chalcedonian" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event3242-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2779" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3710" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/succession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/confession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3196" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bankers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3196" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3196" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3196" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3196" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bankers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/134" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/gardeners" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/artisans" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3763" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event793-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2778" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3640" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3640" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3639" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3639" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3634" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3642" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3641" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fame" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/641" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/641" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3193" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3193" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2860" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3193" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2860" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2860" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3645" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2860" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3193" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3646" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1459" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1459" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-71" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3212" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event794-71" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spiritual-or-ascetic-disciplines" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/358" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/358" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event795-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1320" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1546" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3626" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-dedication" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-dedication" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-dedication" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-dedication" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-dedication" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-dedication" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-dedication" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/child-dedication" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pride" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exorcism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3628" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3627" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/orphans" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/widows" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divine-judgment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divine-judgment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divine-judgment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divine-judgment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3630" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divine-judgment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3633" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divine-judgment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-61" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blindness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blindness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-62" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blindness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3632" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3633" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pride" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-65" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pride" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3629" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/visions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-68" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-70" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-70" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-70" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event796-71" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/students" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/students" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3687" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3687" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3687" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3698" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anti-judaism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/arson" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3686" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/affective-piety" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/affective-piety" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3688" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1885" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/imprisonment" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/imprisonment" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3184" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/imprisonment" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-45" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3689" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2836" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/imprisonment" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2836" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2836" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/imprisonment" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2836" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/imprisonment" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/imprisonment" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2867" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2837" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2837" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2837" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2837" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2837" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-conflict" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2837" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2837" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2837" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospitality" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/students" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3154" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/students" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event797-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2095" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2844" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2844" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/202" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/202" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/relics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/altars" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event798-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/relics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event799-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/redemption" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event799-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event799-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1555" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/apostasy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/apostasy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2776" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2776" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2776" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2776" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2776" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event800-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1116" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event801-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1866" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event801-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1866" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event801-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/imprisonment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1866" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event801-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1866" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event801-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3651" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event801-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1866" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event801-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/artisans" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1866" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event801-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1866" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-108" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3246" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-108" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-108" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3623" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/school-of-the-persians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/school-of-the-persians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2253" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/142" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2253" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2253" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-47" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2792" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mission" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2792" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3618" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3618" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3618" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3618" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-59" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-59" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3619" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diplomacy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diplomacy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-64" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diplomacy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-68" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-68" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-68" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/rhetoric" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2797" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/608" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2797" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2797" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2797" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2797" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2797" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/616" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/608" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/526" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/616" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/608" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/616" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/608" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/616" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-70" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/affective-piety" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-71" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/969" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/969" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2749" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2749" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/969" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2749" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/142" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3191" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3622" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/imprisonment" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-91" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-91" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-92" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-92" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-96" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-97" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3242" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-97" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diplomacy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3242" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-97" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-97" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diplomacy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-97" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event802-97" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diplomacy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/53" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inheritance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inheritance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3766" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3766" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3765" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3765" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2744" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2744" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2744" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2744" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2744" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3764" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3767" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3767" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3767" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event803-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2781" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2781" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3609" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2781" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2781" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3610" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3610" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3611" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3611" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3611" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3612" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3613" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-40" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3615" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3232" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-56" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1880" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event804-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3025" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1452" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-100" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-100" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-105" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-105" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-105" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-105" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-105" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-105" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-106" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-106" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-108" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-108" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-108" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-112" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-113" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-113" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-114" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-115" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/157" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-35" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/162" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/162" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/162" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2545" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3215" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-66" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-68" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-68" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3605" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-72" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-72" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-73" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3606" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3607" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-74" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2757" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2757" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-85" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3010" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2127" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event805-90" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/48" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2796" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2796" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event806-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/silence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1536" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/angels" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3761" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/angels" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/angels" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/women" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/624" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exorcism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2754" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2754" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1528" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event807-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1528" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1933" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-practices" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-practices" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-practices" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-practices" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3699" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-practices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2823" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2823" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mission" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/communion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2823" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3700" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3602" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3602" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3601" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3601" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-practices" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religious-practices" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event808-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/visions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2097" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/water" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sleep" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sleep" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1988" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sleep" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event809-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event810-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event810-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event810-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event810-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event810-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/incense" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event810-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/relics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event810-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event810-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1932" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3772" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commandments" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2153" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event811-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/commemoration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-1" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spiritual-or-ascetic-disciplines" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/confession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laughter" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/confession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3651" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3651" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3651" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/laughter" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3651" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3762" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event812-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/penitence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inheritance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/widows" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/widows" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fathers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christianity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/heterodoxy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/theology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2769" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bread" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bread" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3233" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-philosophy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-culture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-literature" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-philosophy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-culture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-literature" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-philosophy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-culture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-literature" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-philosophy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-culture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/greek-literature" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/46" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inheritance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3260" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inheritance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hell" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/worship" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event813-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2126" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1117" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1117" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1117" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dedication-of-church" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dedication-of-church" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1117" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrs" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1117" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1117" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/singing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1548" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/singing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1117" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event814-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1117" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/confession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/baptism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/inscriptions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bread" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cooks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event815-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2618" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2099" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/356" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/catechesis" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/teachers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/catechesis" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/285" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/285" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/teachers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/285" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/285" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/285" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/285" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/catechesis" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/teachers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/579" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/579" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/579" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/579" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/579" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/579" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1983" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1983" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/544" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event816-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/50" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2854" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1524" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nobles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2772" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/physicians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/altars" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/altars" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wisdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/evil" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mercy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/honour" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mercy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2746" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2746" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2746" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2811" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2811" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2811" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/196" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/love" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/love" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/love" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2739" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/53" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2857" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2855" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/eucharist" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2803" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/87" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/87" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/87" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/87" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/87" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/87" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2788" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2788" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2788" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1813" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2788" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2788" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event817-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2788" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3706" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/104" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3658" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/674" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/87" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3660" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/identity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3706" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3706" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3706" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/identity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3660" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3660" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3660" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-32" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3661" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-37" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-41" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hermitages" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2821" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2821" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2821" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hermitages" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2821" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2821" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-43" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2821" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3663" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-48" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2820" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hermitages" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-49" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hermitages" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hermitages" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hermitages" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hermitages" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-50" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hermitages" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hermitages" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3695" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-54" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-55" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-57" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/698" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-79" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3234" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3662" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-80" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3665" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-81" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-82" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3668" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-83" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3668" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-84" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3668" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3706" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event819-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2092" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/betrothal" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event820-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1881" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sleep" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sleep" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/vespers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/vespers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1560" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1560" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/silence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1560" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1560" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1560" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/silence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/silence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sleep" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/silence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sleep" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/vespers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/vespers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/silence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3183" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/silence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/silence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event821-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1862" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1704" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1704" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1704" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3697" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3697" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3697" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1704" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1704" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1704" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1704" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1704" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3697" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3697" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3697" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anathema" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event822-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/136" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/widows-of-the-church" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/widows-of-the-church" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/widows-of-the-church" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/children" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/merchants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/merchants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/merchants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/716" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/merchants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/merchants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/merchants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/merchants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/merchants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/merchants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2827" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2827" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2827" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2827" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2827" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2827" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2827" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2827" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2828" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2828" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2828" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2828" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2828" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2828" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2828" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2828" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2812" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2812" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2812" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2812" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2812" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2812" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2812" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2812" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3715" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2758" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/trade" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/coins" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/property" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/coins" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/economics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1705" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event823-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3140" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3716" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3716" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3716" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3716" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3651" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/books" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3651" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2766" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2766" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2810" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2738" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2819" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2821" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/redemption" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3717" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/redemption" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event824-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/material-culture" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospitality" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospitality" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/medicine" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cooks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wine" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sleep" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bible" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hours" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/discipleship" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/silence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/insults" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/water" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anointing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event825-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event826-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2098" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event826-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blindness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2098" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event826-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3685" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event826-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blindness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3685" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event826-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2098" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event826-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2098" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event826-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2098" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event826-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2098" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2783" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2783" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2850" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2850" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2851" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2851" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2850" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2850" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2850" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2851" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2851" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2851" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2818" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2818" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2818" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2818" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2818" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2818" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2818" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2818" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2839" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2839" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2839" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2839" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2839" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2839" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2839" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2839" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2775" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2775" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2775" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2775" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2775" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2775" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2775" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2775" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/94" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/94" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/94" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/94" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/94" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/94" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/94" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/94" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/builders" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2736" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/3057" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2800" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2858" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2858" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2858" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2858" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2858" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2796" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2796" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2796" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2796" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2796" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-2" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/healing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/matins" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/purity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hours" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/singing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/vespers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/stylites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bread" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2785" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2785" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2785" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2785" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2774" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2774" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2774" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2774" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2751" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2751" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2751" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2751" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2813" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2737" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architects" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/builders" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2834" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1934" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event827-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/students" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/students" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/labor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/labor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1980" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/kings" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bread" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/demonology" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/justice" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/suffering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/plagues" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event828-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event829-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event829-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event829-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event829-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event829-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1875" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event829-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event829-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/villages" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2866" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2866" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/villages" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2798" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pilgrimage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bodies" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event830-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1554" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/probation" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1554" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1554" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1554" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/probation" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/probation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3204" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3204" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3204" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/probation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3270" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3270" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3270" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mission" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3204" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mission" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3270" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mission" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1853" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mission" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1533" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mission" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1554" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3270" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event831-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3270" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event832-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2040" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event832-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1630" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event832-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event832-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/affective-piety" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1630" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event832-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/mourning" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1630" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event832-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/divine-revelation" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1630" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/idolatry" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/altars" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/temples" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/idolatry" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/altars" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/temples" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/idolatry" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/altars" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/temples" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/idolatry" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/altars" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/temples" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1664" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2069" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1547" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event834-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2816" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1625" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event835-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event835-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event835-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/celibacy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event835-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3155" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/families" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/migration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouses" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/children" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/migration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouses" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/children" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/migration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3692" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouses" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3692" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/children" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/67" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3692" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/migration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouses" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/children" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3690" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/migration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouses" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/children" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/migration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3692" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/spouses" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3692" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/children" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3692" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event836-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/nurses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1788" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/zeal" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2835" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2835" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2835" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2835" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2790" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/503" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/503" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/503" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/503" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/439" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/439" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/439" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/439" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/502" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/502" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/502" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/502" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/zeal" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2845" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2845" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2845" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-15" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deacons" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/labor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/chastity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/labor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/rebuke" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3649" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3649" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3649" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3649" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3649" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3652" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3653" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/affective-piety" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3653" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3653" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3653" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3653" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/salvation" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event837-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cities" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1977" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/miracles" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/buildings" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ecumenism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3771" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christology" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2793" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christianization" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2833" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2833" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2833" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2833" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2833" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2833" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christianization" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2764" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2764" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2764" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2764" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2764" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2764" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christianization" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2746" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2746" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2746" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2746" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2746" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2746" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christianization" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2811" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2811" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2811" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/churches" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2811" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2811" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event838-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2811" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1592" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1592" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1592" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3768" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3769" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1592" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/court" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/court" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2734" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1467" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/illness" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1467" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1467" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-30" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/579" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/polemics" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event839-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event840-5" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/373" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event840-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3258" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event840-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event840-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3258" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event840-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event840-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patronage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2722" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2809" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3207" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2809" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3207" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2809" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2809" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2809" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2809" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2809" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2809" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3222" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3222" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/61" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/61" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/71" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/71" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3223" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3223" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1463" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/72" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-33" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/72" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2735" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2735" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2735" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2735" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-34" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2735" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2735" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-36" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/784" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-38" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2666" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2666" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2666" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2666" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2666" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2666" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2666" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2666" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-39" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2719" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2719" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2719" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2719" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2719" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2719" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2719" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-42" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2719" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2829" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2829" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2829" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2829" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2829" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2829" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2829" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2829" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-44" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2856" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3243" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2856" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3243" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2856" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2856" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2856" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2856" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2856" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2856" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3243" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3243" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2741" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2741" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2741" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2741" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2741" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2741" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2741" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2741" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-51" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2732" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3228" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2732" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3228" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2732" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2732" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2732" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2732" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2732" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2732" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3228" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3228" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-53" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2791" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3266" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2791" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3266" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2791" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3214" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2791" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3214" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2791" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2791" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2791" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2791" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3266" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3266" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3214" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3214" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2799" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2747" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2763" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1534" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1533" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1533" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1533" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1533" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1533" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1533" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1533" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1533" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1533" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1532" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1532" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1532" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1532" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1532" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1532" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1532" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1532" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1532" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1531" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/55" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/576" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/486" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/714" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1478" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1478" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1478" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1478" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1478" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1478" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1478" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1478" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1478" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1525" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1525" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1525" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1525" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1525" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1525" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1525" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1525" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1525" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1472" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/priests" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event841-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/food" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3216" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-11" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2767" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2767" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2767" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2767" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2767" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2767" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2767" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2767" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1336" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/69" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2814" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/779" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christianity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/conversion" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/paganism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-29" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/christianity" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/1529" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2797" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2673" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2847" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/399" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event842-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wandering" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/641" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2032" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sex" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/misogyny" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/passions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sex" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/misogyny" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pearls" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sexuality" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/pearls" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sexuality" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/civil-servants" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/repentance" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/sin" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/horses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slaves" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/light" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/visions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/horses" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slaves" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/light" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/visions" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/chastity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/chastity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oracles" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/chastity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/virginity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/religion" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prayer" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/prophecy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blame" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/oaths" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/shame" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-22" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/love" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/love" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/love" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/715" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/love" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/love" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/blessing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/love" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emotions" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/memory" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-5" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/tears" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/actors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/actors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3021" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/actors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event843-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2121" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/coins" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/coins" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/coins" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-3" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-4" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/humility" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/cult-of-saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/insanity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3720" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/insanity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2024" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holiness" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poverty" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event844-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/insanity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monastic-heads" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/authority" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/fasting" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/misogyny" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/old-age" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/anchorites" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/misogyny" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2762" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2761" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event845-9" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasteries" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2761" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2621" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/dress" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/poor" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/foreknowledge" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/foreknowledge" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1820" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event846-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/marriage" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3020" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-10" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/74" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hours" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hours" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hours" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/liturgy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hours" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-17" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3656" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-19" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/letters" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3655" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-20" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/travel" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3654" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-23" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/ordination" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-24" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2777" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2718" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-7" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3014" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2011" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3693" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event847-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/473" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3693" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-13" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-14" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-25" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/slavery" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-26" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2841" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2558" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/wealth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-6" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/charity" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2108" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event848-8" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/asceticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-104" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/142" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/811" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-107" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2590" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2590" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2590" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-109" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-115" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-116" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2580" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2579" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/191" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-12" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-120" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monasticism" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1113" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-121" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1113" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-124" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2202" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-128" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2312" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-134" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2606" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2241" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-134" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2606" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-134" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2241" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-134" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2249" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-138" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2283" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-138" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2283" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-140" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2283" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-146" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2310" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-146" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2310" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-147" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2309" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-147" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2309" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-151" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/834" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-156" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/13" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-16" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-160" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-160" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-160" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2211" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-160" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2211" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-160" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-160" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2208" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-160" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2211" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-160" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2211" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-166" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2241" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-168" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-168" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2209" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-173" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-173" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/191" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2228" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-18" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2228" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-181" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2592" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1671" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-181" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2592" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1671" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-181" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2592" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-181" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2592" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-181" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2592" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2258" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-181" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2592" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2258" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-182" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/145" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2271" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-182" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/172" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2271" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-184" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-constantinople-i-381" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2212" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-184" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2212" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-184" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2212" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-186" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1718" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-192" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2593" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2123" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-195" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2271" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-198" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2266" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-199" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2271" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-201" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2224" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-203" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2251" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-208" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2304" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-208" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2304" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/191" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/191" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2229" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-21" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2229" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-212" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2304" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-216" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2294" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-216" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2294" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-221" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-221" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/573" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-225" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exegesis" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2345" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/780" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-235" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/armies" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2224" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-235" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/madrashe" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2224" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-235" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/armies" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/16" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-235" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/madrashe" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/16" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-243" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2262" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-243" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2262" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-244" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-244" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-244" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-244" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2262" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-244" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2262" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-244" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2262" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-246" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2294" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-251" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-251" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/430" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-256" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-256" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2596" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2595" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1711" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-260" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/synagogues" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-267" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/monks" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/482" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2231" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-27" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-270" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/persecution" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-270" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-277" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/891" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-277" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2607" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/891" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2584" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2584" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2583" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-28" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2583" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-282" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-286" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-286" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-287" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2597" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-287" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2597" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-290" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2301" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-290" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2301" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-294" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2123" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-294" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2204" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-298" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-298" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2620" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2432" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-31" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2572" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/195" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/65" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/216" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2257" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2280" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/847" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2306" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2282" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2264" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2314" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-315" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-ii-449" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/781" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-316" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-321" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-321" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-322" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2598" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-322" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2598" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-322" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-322" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-322" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-322" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-326" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-326" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2360" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2299" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-335" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/534" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-336" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-336" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2599" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1808" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2599" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1808" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2599" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1808" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2599" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2599" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2599" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1808" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1808" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1808" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-344" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-345" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2601" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-345" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2601" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-345" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2600" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-345" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2600" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-345" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-345" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/hospices" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1650" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1669" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/saints" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-346" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/martyrdom" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2602" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-347" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-348" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-349" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-350" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/administration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-350" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-354" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/744" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-357" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/145" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2270" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-357" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/109" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2270" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-358" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2608" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2270" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-360" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-364" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2253" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-364" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2253" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-372" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/usurpers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2287" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-372" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-rulers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2287" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-372" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/usurpers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2273" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-372" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-rulers" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2273" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-374" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/education" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-374" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/school-of-the-persians" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2225" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-377" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/administration" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2216" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-377" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/taxes" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2216" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-379" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2253" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-383" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2297" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-383" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2297" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-389" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2217" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-389" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2217" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2611" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2611" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2611" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2611" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2611" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2611" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2218" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-396" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2574" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2235" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-408" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-408" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2277" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-409" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-409" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2277" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-415" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-416" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-420" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-421" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2590" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-421" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2590" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-421" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2590" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-421" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2590" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-421" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-421" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1466" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-421" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-421" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2286" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-427" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2297" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-428" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-428" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-433" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2219" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-433" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2219" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-433" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2219" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-433" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/479" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-433" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/479" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-433" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/479" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-433" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-433" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-433" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-439" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-439" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2696" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-439" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-439" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-440" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/790" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-440" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2290" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/790" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-445" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/usurpers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2311" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-445" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-rulers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2311" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-445" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/usurpers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-445" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-rulers" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-447" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2265" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-451" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-451" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/writing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2285" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-46" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/writing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2313" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-460" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-460" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/44" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-460" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-460" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-460" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-460" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/51" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-464" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2591" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/174" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-465" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2281" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-466" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2573" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/decrees" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/deposition-of-clergy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-467" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-47" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/writing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2243" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-47" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/writing" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2239" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-471" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-471" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-475" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-475" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-475" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-475" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-475" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-475" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-475" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-475" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/exile" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2221" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-482" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2278" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-482" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-482" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2278" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-482" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-483" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-484" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-484" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-484" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-484" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-484" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-484" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-484" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-484" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-484" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/burial" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-490" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2278" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-490" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2278" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-490" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-490" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-490" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-490" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-491" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-493" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2296" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-497" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2205" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-497" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2205" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-nicaea-325" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/621" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-constantinople-i-381" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/621" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/621" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/621" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/621" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-nicaea-325" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-constantinople-i-381" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/622" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-nicaea-325" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-constantinople-i-381" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/623" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-nicaea-325" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-constantinople-i-381" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/church-councils" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-chalcedon" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-499" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/council-of-ephesus-i-431" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-504" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2278" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-504" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2278" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-510" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-510" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2610" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-510" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/patriarchs" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-510" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/8" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2274" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-512" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2292" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-512" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2240" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-512" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-512" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2594" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2205" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-517" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2203" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-517" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2203" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-519" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-519" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/caesars" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2238" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-52" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2238" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-522" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-522" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2284" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-525" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-529" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/generals-roman" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2226" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-529" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/generals-roman" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2259" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-531" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-531" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-531" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-531" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-531" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-531" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-531" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-531" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-531" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-533" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-533" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2227" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-533" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/huns" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2259" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-533" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/death" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/200" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2259" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-537" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diplomacy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2300" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-537" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/diplomacy" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2300" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-542" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-542" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/166" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-542" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-542" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/185" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-542" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-542" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/18" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-542" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-542" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/10" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-544" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-544" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/150" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2222" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-544" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2244" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-544" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2222" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-546" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2261" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-546" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2261" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-554" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-554" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-554" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/1529" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-554" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2267" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-554" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2267" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-554" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2267" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-554" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-554" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-554" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/26" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-555" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-555" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-555" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2268" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-555" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/emperors" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-555" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-555" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/natural-disasters" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2236" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-56" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2245" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2200" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-60" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/administration" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2586" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2200" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-63" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/apostasy" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/616" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-67" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/3" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-72" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2223" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-72" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2223" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-72" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2288" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-72" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2288" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-72" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/war" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2246" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-72" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/violence" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2246" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-73" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2587" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-73" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2201" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-78" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/birth" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/608" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-87" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-87" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-87" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-87" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2247" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-88" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2303" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-88" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2303" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-88" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2303" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-88" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/2303" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-94" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/accession" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/326" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-94" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/bishops" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2605" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/326" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-96" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2589" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/326" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-96" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2589" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/326" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-96" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/326" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-96" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/2588" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/326" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-96" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/holy-places" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/326" + } + }, { + "event" : { + "type" : "uri", + "value" : "http://syriaca.org/event8559-96" + }, + "keyword" : { + "type" : "uri", + "value" : "http://syriaca.org/taxonomy/architecture" + }, + "place" : { + "type" : "uri", + "value" : "http://syriaca.org/place/78" + }, + "person" : { + "type" : "uri", + "value" : "http://syriaca.org/person/326" + } + } ] + } +}% โžœ ~ diff --git a/menu.js b/menu.js index 282cf81ad..26bb33c72 100644 --- a/menu.js +++ b/menu.js @@ -139,7 +139,7 @@ export async function renderKeywordList(query, itemsId, listId, labelField = "la const container = document.getElementById(listId); if (!listEl || !container) return; - const pageSize = 50; + const pageSize = 10000; let offset = 0; let loading = false; let endReached = false; diff --git a/person/README.md b/person/README.md new file mode 100644 index 000000000..b19815bbd --- /dev/null +++ b/person/README.md @@ -0,0 +1,228 @@ +Here is a clean, well-structured **README.md** for your **Person Search** system in SPEAR. It explains: + +* How person-level facet filtering works +* The corrected SPARQL logic +* How to run diagnostics +* How to integrate it into the front-end + +You can drop this into your repo directly. +If you want a version tailored to Jekyll/VitePress/GitHub Pages, I can format it accordingly. + +--- + +# ๐Ÿ“˜ **README.md โ€” Person Search (SPEAR Prosopography)** + +# SPEAR Person Search + +Advanced facet-based querying across Syriac persons, events, and places. + +This document describes how the **Person Search** system works, including SPARQL logic, facet behavior, and cURL examples useful for debugging data. + +--- + +## ๐Ÿ” Overview + +The SPEAR **Person Search** engine allows users to filter persons based on multiple independent facets such as: + +* **Event keyword taxonomy** (e.g., `monasticism`) +* **Places** (birth, death, residence, or place of an associated event) +* **Gender, occupation, relationships** (optional facets) +* **Names / keyword text search** + +Search is executed against the **Neptune SPARQL endpoint**: + +``` +https://sparql.vanderbilt.edu/sparql +``` + +All person-level data is sourced from: + +* `` โ€“ event links, factoids, provenance +* `` โ€“ labels, descriptions, metadata + +--- + +## ๐ŸŽฏ Person-Level Facet Intersection (Key Concept) + +A person should be returned **if they match all selected facets**, but: + +### โ— Facets do *not* need to be satisfied by the same event. + +Example: + +* A person participates in **Event A**, which has keyword *monasticism* +* They also participate in **Event B**, which has place *2605* + +Even though A โ‰  B, this **should still match**, because both facets apply to the **same person node**. + +This was the main issue that caused `person/1113` not to appear in earlier queries. + +--- + +## โœ” Corrected SPARQL Logic + +Facet filters use **independent EXISTS blocks**, ensuring each facet can be satisfied by different event or person triples. + +```sparql +PREFIX rdfs: +PREFIX swdt: +PREFIX sp: +PREFIX sps: + +SELECT DISTINCT ?person WHERE { + GRAPH { + + VALUES ?taxonomy { } + VALUES ?place { } + + ### Person must match EVENT facet (keyword) + FILTER EXISTS { + ?event1 swdt:event-participant ?person . + ?event1 sp:event-keyword/sps:event-keyword ?taxonomy . + } + + ### Person must match PLACE facet + FILTER EXISTS { + { ?person swdt:birth-place ?place . } + UNION { ?person swdt:death-place ?place . } + UNION { ?person swdt:residence ?place . } + UNION { + ?event2 swdt:event-participant ?person ; + swdt:event-place ?place . + } + } + } +} +``` + +This version works for all valid person searches and returns person 1113 correctly. + +--- + +## ๐Ÿงช Running Diagnostic Queries via cURL + +Useful for debugging when a person fails to appear in results. + +### Diagnostic: Show all events, keywords, and places for a given person + +```bash +curl -G "https://sparql.vanderbilt.edu/sparql" \ +--data-urlencode 'query= +PREFIX rdfs: +PREFIX swdt: +PREFIX sp: +PREFIX sps: + +SELECT DISTINCT ?event ?eventLabel ?keyword ?place ?ref WHERE { + GRAPH { + VALUES ?person { } + + ?event swdt:event-participant ?person . + OPTIONAL { ?event rdfs:label ?eventLabel } + OPTIONAL { ?event sp:event-keyword/sps:event-keyword ?keyword } + OPTIONAL { ?event swdt:event-place ?place } + OPTIONAL { + ?event sp:event-participant ?stmt . + ?stmt sps:event-participant ?person ; + spr:reference-URL ?ref . + } + } +} +ORDER BY ?event +' \ +-H "Accept: application/sparql-results+json" +``` + +This reveals: + +* All events related to the person +* Keywords per event +* Places per event +* Reference URLs + +--- + +## ๐Ÿ“„ Full Person Search Query (Labels + Description + Facets) + +This expands the facet query to retrieve multilingual labels and descriptions. + +```sparql +PREFIX rdfs: +PREFIX schema: +PREFIX swdt: +PREFIX sp: +PREFIX sps: + +SELECT DISTINCT ?person ?label_en ?label_syr ?description WHERE { + + GRAPH { + VALUES ?taxonomy { } + VALUES ?place { } + + FILTER EXISTS { + ?event1 swdt:event-participant ?person . + ?event1 sp:event-keyword/sps:event-keyword ?taxonomy . + } + + FILTER EXISTS { + { ?person swdt:birth-place ?place . } + UNION { ?person swdt:death-place ?place . } + UNION { ?person swdt:residence ?place . } + UNION { + ?event2 swdt:event-participant ?person ; + swdt:event-place ?place . + } + } + } + + GRAPH { + OPTIONAL { ?person rdfs:label ?label_en_ FILTER(LANGMATCHES(LANG(?label_en_), "en")) } + OPTIONAL { ?person rdfs:label ?label_syr FILTER(LANGMATCHES(LANG(?label_syr), "syr")) } + OPTIONAL { ?person schema:description ?description } + } + + BIND(COALESCE(?label_en_, STRAFTER(STR(?person), "/person/")) AS ?label_en) +} +ORDER BY ?label_en +``` + +--- + +## ๐Ÿ”ง Integration Notes for the Front-End + +* Facet state is composed client-side (React) +* A SPARQL query is built dynamically based on selected facets +* Queries are cached to avoid unnecessary calls +* Place, Keyword, Gender, and Occupation facets are independent filters +* Results are always the **intersection of person sets**, not event sets +* Pagination is implemented client-side + +--- + +## ๐Ÿ—‚ Data Model Summary + +| Element | Source Graph | Description | +| -------------------- | ---------------- | ----------------------------- | +| `swdt:*` | spear-prosop.org | Direct factoid triples | +| `sp:*` / `sps:*` | spear-prosop.org | Statement nodes + provenance | +| `rdfs:label` | persons#graph | Multilingual labels (en, syr) | +| `schema:description` | persons#graph | Text descriptions | +| Event Taxonomy | taxonomy URIs | From syriaca.org | + +--- + +## ๐Ÿ“Œ Known Pitfalls to Avoid + +### โŒ Requiring facets to match the same event + +This incorrectly excludes many valid persons. + +### โŒ Putting VALUES outside GRAPH blocks + +Neptune interprets them differently. + +### โŒ Mixing person and event logic before resolving person identity + +Compute person URIs first, then enrich. + +---